/* about us */


.about-us .title {
    margin-bottom: 20px;
}

.about-us-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    width: 90%;
}

.about-us-content h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--black-text-color);
    font-family: "font-bold";
}

.about-us-content h3 span {
    color: var(--main-color);
}

.about-us-content p {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 500;
    color: var(--black-text-color);
    font-family: "font-SemiBold";
    line-height: 1.7;
}

.about-us-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-commints-container {
    width: 70%;
}



.about-us .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.about-us .statistics {
    display: flex;
    gap: 30px;
}

.about-us .statistics .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
}

.about-us .statistics .item::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 80%;
    background: linear-gradient(to bottom, #004B22, #007E39, #53753E, #FFFFFF);
    background-position: center;
    background-repeat: no-repeat;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
}

.about-us .statistics .item:last-child::before {
    display: none;
}

.about-us .statistics .item h4 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    color: var(--dark-green-color);
    font-family: "font-bold";
}

.about-us .statistics .item p {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 500;
    color: var(--text-color);
}

.about-us-image .about-commints {
    position: absolute;
    top: 20px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    background-color: #fff;
    padding: 8px;
    border-radius: 30px;
    border: 1px solid var(--main-color);

}

.about-us-image .about-commints .item {
    position: absolute;
    transform: translateX(clamp(20px, 2vw, 30px));
}


.about-us-image .about-commints:nth-child(2) {
    top: 80px;
    right: 0;
}

.about-us-image .about-commints:nth-child(3) {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: auto;
}

.about-us-image .about-commints:nth-child(4) {
    bottom: 12%;
    top: auto;
    right: 0;
    left: auto;
}



.about-commints-content {
    flex-direction: column;
    display: flex;
    gap: 5px;
    padding-right: 25px;
}

.about-commints-content h4 {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 700;
    color: var(--dark-green-color);
    font-family: "font-bold";
}

.about-commints-content p {
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 500;
    color: var(--text-color);
}

.about-commints img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    animation: tada 1s ease-in-out infinite;
}


/*! ============================= Offers ============================= */

.offers {
    background-image: url("../assets/images/bg-page.webp");
    background-position: center;
    background-size: cover;
}

.product-card {
    position: relative;
    height: 250px;
    border-radius: 40px;
    margin-top: 70px;
    transition: all .4s ease;
}

.product-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: 0;
    width: 115px;
    height: 210px;
    background-image: url("../assets/images/img-before.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    z-index: 10;
    pointer-events: none;
    transform-origin: center;
    transition: all .4s ease;
}

.offers .row {
    margin-top: 80px;
}

.card-bg-imgs {
    position: relative;
    width: 100%;
    height: 100%;
    margin: auto;
}

.card-bg-imgs img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

.card-bg-imgs .img1 {
    top: -45px;
    opacity: 0.3;
    z-index: 1;
}

.card-bg-imgs .img2 {
    top: -30px;
    opacity: 0.5;
    z-index: 2;
}

.card-bg-imgs .img3 {
    top: -15px;
    opacity: 0.8;
    z-index: 3;
}

.card-bg-imgs .img4 {
    z-index: 4;
    pointer-events: none;
}

.overlay {
    position: absolute;
    inset: 0;
    background: #3c4e2a66;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    border-radius: 40px;
}

.overlay h2 {
    position: absolute;
    z-index: 6;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.card-btn {
    position: absolute;
    bottom: 0px;
    right: -6px;

    width: 71px;
    height: 71px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 19px 19px 20px 20px;
    gap: 10px;

    border: 4px solid #75a771;
    border-radius: 50%;

    background: #49733e;
    cursor: pointer;

    box-shadow: 0 0 0 5px #fff;

    transition: all 0.4s ease;
    z-index: 20;
}

.card-btn i {
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-content: center;
    color: white;
    transform: rotate(125deg);
    transition: 0.3s ease;
}

.card-btn:hover {
    transform: scale(1.08);
    background: #5b8a4d;
}

.card-btn:hover i {
    transform: rotate(90deg);
}


/*! ============================= Offers ============================= */




/*! ============================= Stages ============================= */
.stages {
    background-image: url("../assets/images/bg-section.webp");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.stages .stages-card {
    border-radius: 30px;
    text-align: center;
    border: 3px solid transparent;
    height: 100%;
    background:
        linear-gradient(var(--white-color), var(--white-color)) padding-box,
        linear-gradient(90deg,
            #004B22 0%,
            #007E39 40%,
            #53753E 70%,
            #ffffff 100%) border-box;
    padding-inline: 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: cardEnter 0.7s ease forwards;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stages .stages-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(99, 129, 69, 0.2), 0 8px 20px rgba(166, 108, 66, 0.1);
}

@keyframes cardEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stages .stages-card .num {
    position: relative;
    width: 70px;
    height: 70px;
    background-image: url("../assets/images/bg-iconNum.webp");
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
    top: -30px;
    transition: .5s;
}

.stages .stages-card:hover .num {
    transform: scale(1.15) rotate(5deg);
}

.stages .stages-card .num span {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    color: var(--main-color);
    background-color: var(--white-color);
    border-radius: 50%;
    transition: .5s;
}

.stages .stages-card:hover .num span {
    transform: rotate(360deg);
}

.stages .stages-card figure {
    max-width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
    z-index: 99;
    bottom: -20px;
    transition: transform 0.4s ease;
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {

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

    50% {
        transform: translateY(-10px);
    }
}

.stages .stages-card:hover figure {
    transform: translateY(-6px) scale(1.03);
}

.stages .stages-card .stage-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.stages .stages-card .stage-content h4 {
    font-size: clamp(20px, 1vw, 30px);
    font-weight: 700;
    color: var(--main-color);
    transition: color 0.3s ease;
    height: 50px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stages .stages-card:hover .stage-content h4 {
    color: #A66C42;
}

.stages .stages-card .stage-content p {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 500;
}

.stages .stages-card .stage-content p span {
    color: var(--main-color);
}

.stages .stages-card .stage-content .line {
    width: 100%;
    height: 20px;
    position: relative;
}

.stages .stages-card .stage-content .line::before {
    content: "";
    position: absolute;
    width: 45%;
    background-image: linear-gradient(to right, #A66C42, #638145, #FFFFFF);
    height: 1px;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
    animation: line 1.5s ease-in-out infinite alternate;
}

@keyframes line {
    0% {
        opacity: 0.3;
        width: 30%;
    }

    100% {
        opacity: 1;
        width: 45%;
    }
}

.stages .stages-card .stage-content .line::after {
    content: "";
    position: absolute;
    width: 45%;
    background-image: linear-gradient(to left, #A66C42, #638145, #FFFFFF);
    height: 1px;
    left: 0;
    top: 55%;
    transform: translateY(-50%);
    animation: line 1.5s ease-in-out infinite alternate;
}

.stages .stages-card .stage-content .line .dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--main-color);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%);
    box-shadow: 0 5px 10px var(--main-color);

    animation: dotPulse 2s ease-in-out infinite;
    transition: background-color 0.3s ease;
}

.stages .stages-card:hover .stage-content .line .dot {
    background-color: #A66C42;
    box-shadow: 0 0 12px #A66C42;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 6px #638145;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        box-shadow: 0 0 14px #638145, 0 0 24px rgba(99, 129, 69, 0.3);
    }
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/*! ============================= Opinion ============================= */

.opinions {
    background-image: url("../assets/images/oppinion-bg.webp");
    background-position: center;
    background-size: cover;
}

.opinions .row {
    margin-top: 50px;
}

.opinion-card {
    position: relative;
    padding: 28px 24px 24px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    z-index: 1;
    border-radius: 30px;
    border: 3px solid transparent;
    height: 100%;
    background:
        linear-gradient(var(--white-color), var(--white-color)) padding-box,
        linear-gradient(90deg, #004b22 0%, #007e39 40%, #53753e 70%, #ffffff 100%) border-box;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.opinion-wrapper {
    position: relative;
    margin: 70px 0;
}

.opinion-wrapper::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: -6px;
    left: -6px;
    background: #49733e;
    border-radius: 0 30px;
    z-index: 0;
}

.opinion-avatar {
    position: absolute;
    top: -50px;
    right: 14px;
    z-index: 3;
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid var(--main-color);
    overflow: hidden;
}

.opinion-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-opinion {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-end;
}

.logo-opinion img {
    width: 50px !important;
    height: 50px;
}

.opinion-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tc-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 2px;
}

.tc-city {
    font-weight: 400;
    font-size: 16px;
    color: #262626cc;
    margin-bottom: 12px;
}

.tc-text {
    font-size: 16px;
    color: #262626;
    line-height: 1.8;
    margin-bottom: 12px;
}

.tc-stars {
    display: flex;
    gap: 4px;
    position: relative;
    z-index: 2;
}

.tc-star {
    color: #e8b800;
    font-size: 24px;
}

.tc-star.empty {
    color: #ddd;
}

.opinions-slider .owl-stage {
    display: flex;
}

.opinions-slider .owl-item {
    display: flex;
}

.opinions-slider.owl-rtl .owl-item {
    margin-left: 23px !important;
}

/*! ============================= Opinion ============================= */





/*! ============================= Latest-Events ============================= */
.LatestEvents {
    background-image: url("../assets/images/bg-section2.webp");
    background-position: center;
    background-size: cover;
}

.LatestEvents .events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.LatestEvents .events-header .title-head {
    align-items: start;
}

.LatestEvents .my-card {
    border-radius: 30px;
    border: 3px solid transparent;
    height: 100%;

    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    transition: all 0.4s ease;

    position: relative;
    height: 100%;
    overflow: hidden;
}


.latestEventsSec .my-card::before {
    content: "";
    position: absolute;
    inset: -200%;
    background: conic-gradient(#004B22,
            #007E39,
            #53753E,
            #ffffff,
            #004B22);
    animation: spin 4s linear infinite;
}

.latestEventsSec .my-card::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: white;
    border-radius: 27px;
}

.latestEventsSec .my-card>* {
    position: relative;
    z-index: 1;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

















.LatestEvents .my-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0, 75, 34, 0.15);
}

.LatestEvents .my-card .slide-item {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.LatestEvents .my-card .slide-item img {
    transition: transform 0.6s ease;
    object-fit: cover;
}

.LatestEvents .my-card:hover .slide-item img {
    transform: scale(1.08);
}

.LatestEvents .my-card .slide-item .date {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--main-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    color: #EFE2D5;
}

.LatestEvents .my-card .slide-item img {
    border-radius: 30px;
}

.LatestEvents .my-card .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.LatestEvents .my-card .text h4 {
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 700;
    color: var(--main-color);
    transition: color 0.3s ease;
}

.LatestEvents .my-card:hover .text h4 {
    color: #007E39;
}

.LatestEvents .my-card .text p {
    /* font-size: 16px; */
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.7;
}

.LatestEvents .my-card .read-more i {
    transition: transform 0.3s ease;
}

.LatestEvents .my-card:hover .read-more i {
    transform: rotate(45deg);
}

/* Slider */
.LatestEvents .owl-theme .owl-dots {
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.LatestEvents .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background-color: #EFE2D5;
    display: block;
    border-radius: 50%;
    transition: 0.3s;
}

.LatestEvents .owl-theme .owl-dots .owl-dot.active span {
    transform: scale(1.2);
    width: 30px;
    border-radius: 10px;
}

/*! ============================= Event Details Page ============================= */
.event-details .card-event-details {
    background: none;
    gap: 10px;
}

.event-details .card-event-details:hover {
    transform: translateY(0);
    box-shadow: none;
}

.event-details .card-event-details .slide-item {
    height: 450px;
}

.event-details .desc {
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 15px;
    padding: 20px 10px;
    min-height: 130px;
}

.event-details .sub-title h2 {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 700;
    padding-bottom: 20px;
}

.event-details .card-details {
    flex-direction: row;
    /* border-width: 1px; */
    /* background: linear-gradient(#D9D9D9, #D9D9D9) padding-box, linear-gradient(90deg, #004B22 0%, #007E39 40%, #53753E 70%, #ffffff 100%) border-box; */
    color: var(--white-color);
    padding: 10px 15px;
}

.event-details .card-details::before {
    content: "";
    position: absolute;
    inset: -200%;
    background: conic-gradient(#004B22,
            #007E39,
            #53753E,
            #D9D9D9,
            #004B22);
    animation: spin 4s linear infinite;
}

.event-details .card-details::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: #D9D9D9;
    border-radius: 27px;
}

.event-details .card-details>* {
    position: relative;
    z-index: 1;
}


.event-details .card-details .content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-details .card-details .content .text {
    gap: 10px;
}

.event-details .card-details figure {
    height: 160px;
    width: 300px;
}

.event-details .card-details figure img {
    border-radius: 30px;
    object-fit: cover;
}

.LatestEvents .card-details .date {
    background-color: var(--main-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    color: #EFE2D5;
    width: fit-content;
}

.event-details .card-details .text p {
    color: var(--black-color);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-details .card-details .content .read-more {
    margin-right: auto;
}

.event-details .my-card:hover .slide-item img {
    transform: scale(1);
}


.event-details .all-events .row {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 82vh;
    margin-top: 1px;
    scrollbar-width: thin;
    /* scrollbar-color: rgba(99, 129, 69, 0.6) transparent; */
    scrollbar-color: var(--main-color) transparent;
}

.event-details .all-events .row::-webkit-scrollbar {
    width: 0;
    transition: .3s;
}
.event-details .all-events .row:hover::-webkit-scrollbar {
    width: 6px;
}
.event-details .all-events .row::-webkit-scrollbar-thumb {
    border-radius: 50px;
}

.modal-content {
    border-radius: 30px;
    padding: 20px 0;
}

.modal-content::before {
    content: "";
    position: absolute;
    width: 25%;
    height: 100%;
    top: 0px;
    left: -6px;
    background: #49733E;
    border-radius: 30px 0 0 30px;
    z-index: 0;
}

.map-box {
    position: relative;
    height: 550px;
    z-index: 2;
    width: 100%;
    border: 3px solid transparent;
    background: linear-gradient(var(--white-color), var(--white-color)) padding-box, linear-gradient(90deg, #004B22 0%, #007E39 40%, #53753E 70%, #ffffff 100%) border-box;
}

.map-box iframe {
    height: 100%;
}

.map-btn {
    display: none;
}

.contact-title {
    display: inline-block;
    padding: 6px 35px;
    color: var(--main-color);
    font-weight: 700;
}

.form-control {
    background: #004B221A;
    border: none;
    border-radius: 0;
    height: 50px;
}

textarea.form-control {
    height: 140px;
}

.form-btn {
    width: 100% !important;
}

.form-btn img {
    width: 20px;
    height: auto;
}

.form-btn:hover img {
    filter: invert(1);
}

.contact-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-form .share-contact {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.contact-form .share-contact img {
    width: 28px;
    height: 28px;
}

.contact-form .share-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-form .share-contact p {
    font-size: 13px;
    font-weight: 400;
    color: var(--black-color);
}

.contact-form .share-contact a {
    font-size: 13px;
    font-weight: 400;
    color: #004B22;
}


/* page about-us */
.aboutSec .main-container {
    /* border: 3px solid transparent; */
    border-radius: 40px;

    background: url("../assets/images/bg-section.webp");
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
}


.aboutSec .main-container::before {
    content: "";
    position: absolute;
    inset: -200%;
    background: conic-gradient(#004B22,
            #007E39,
            #53753E,
            #ffffff,
            #004B22);
    animation: spin 3S linear infinite;
}

.aboutSec .main-container::after {
    content: "";
    position: absolute;
    inset: 3px;
    /* سمك البوردر */
    border-radius: 37px;
    background: url("../assets/images/bg-section.webp") center/cover no-repeat;
}

.aboutSec .main-container>* {
    position: relative;
    z-index: 2;
}


.aboutSec .image {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.aboutSec .text {
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aboutSec .text h2 {
    font-size: clamp(20px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.5;
}

.aboutSec .text h2 span {
    color: var(--main-color);
}

.aboutSec .text p {
    font-size: clamp(17px, 2vw, 24px);
}

.aboutSec .main-btn {
    margin-top: 20px;
}

/* end */