/*! ================== our-services Section ================== */
/* *************************** */
/* .our-services,
.projects,
.news,
.about-us,
.oppinion {
    padding-block: 65px;
    margin-top: 80px;
} */


.our-services,
.news {
    background-color: var(--bg-section);
    position: relative;
}

.our-services .row {
    gap: 35px 0;
}

.our-services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: var(--main-color);
    /* border-radius: 0 0 100%; */
    /* corner-shape: scoop; */
}
.bg::before {
    display: none;
}
.our-services {
    overflow: hidden;
}

.our-services *,
.main-title * {
    z-index: 9;
    position: relative;
}

.our-services::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background-color: var(--bg-section);
    border-radius: 50%;
    /* corner-shape: scoop; */
    z-index: 0;
}

.service-card figure {
    border-radius: 25px;
    background-color: var(--white-color);
    padding: 15px;
    height: 250px;
    position: relative;
    transition: 0.4s;
}
.service-card figure img {
    border-radius: 25px;
    object-fit: cover;
}
.service-card figure figcaption,
.service-card figure .layerCard{
    background-color: var(--white-color);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 25px;
    padding-bottom: 0;
    color: var(--main-color);
    font-weight: 700;
    font-size: 18px;
    border-radius: 20px 20px 0 0;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}
.service-card figure .layerCard {
    background-color: rgba(255,255,255,0.9);
    text-decoration: none;
    bottom: 120%;
    opacity: 0;
    pointer-events: none;
}

.projects .service-card figure figcaption,
.our-services .service-card figure figcaption {
    pointer-events: none;
}

.service-card .title {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(90deg, #262626 -14.34%, #008AAA 111.7%);
    z-index: 9;
}

/* ================= VIDEO ================= */
.service-card .video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.2);
    z-index: 2;
}
.service-card .play-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: red;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}
.service-card .video-box {
    position: absolute;
    inset: 0;
    display: none;
    z-index: 5;
}
.service-card .video-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 25px;
}

/* ===== HOVER ===== */
.service-card:hover figure {
    overflow: hidden;
}
.service-card:hover figure figcaption {
    bottom: 120%;
    opacity: 0;
}
.service-card:hover figure .layerCard {
    bottom: 100%;
    opacity: 1;
    pointer-events: visible;
    bottom: 0;
    left: 0;
    transform: translateX(0);
    width: 100%;
    height: 100%;
    border-radius: 25px;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.8);
}

.our-services .btn-mobile,
.projects .btn-mobile,
.news .btn-mobile {
    display: none;
    margin-top: 20px;
    margin-inline: auto;
}


/* ================= MODAL Image ================= */
.image-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s ease;

    /* الخلفية Blure */
    /* background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); */
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.image-modal .modalImage {
    width: 50%;
    height: 70%;
    position: relative;

    transform: scale(0.8);
    transition: 0.3s ease;
}
.image-modal .modalImage img {
    border-radius: 25px;
    background-color: var(--white-color);
    padding: 15px;
    object-fit: cover;
}
.image-modal.active .modalImage {
    transform: scale(1);
}
.image-modal .close-btn {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 16px;
    cursor: pointer;
    background-color: var(--white-color);
    color: var(--main-color);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: .3s;
}
.image-modal .close-btn:hover {
    background-color: var(--main-color);
    color: var(--white-color);
}

/*! ================== Services Deatails ================== */
.services-deatails .head-title {
    padding-bottom: 30px;
}
.services-deatails .content,
.services-deatails .services-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.services-deatails .image {
    border-radius: 25px;
    background-color: var(--white-color);
    padding: 15px;
    height: 500px;
}
.services-deatails .image img {
    border-radius: 25px;
    object-fit: cover;
}
.services-deatails .desc,
.services-deatails .services-box {
    border-radius: 25px;
    background-color: var(--white-color);
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.services-deatails .desc .list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 20px;
}
.services-deatails h4 {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 700;
}
.services-deatails .desc .list p {
    font-size: clamp(12px, 3vw, 16px);
    font-weight: 400;
    position: relative;
}

.services-deatails .desc .list p::before {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--black-color);
    border-radius: 50%;
}

.services-deatails .services-box .services-tags {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.services-deatails .services-box .services-tags .services-tag {
    font-size: clamp(12px, 3vw, 16px);
    font-weight: 700;
    background-image: linear-gradient(to right, rgba(213, 243, 251, 1), rgba(166, 210, 224, 1));
    padding: 10px 20px;
    border-radius: 30px;
}

.services-deatails .more-deatails {
    margin-top: 30px;
    margin-inline: auto;
}

/*! ================== Projects Section ================== */
.projects {
    background-image: linear-gradient(to left, var(--main-color), rgba(0, 55, 68, 1));
    color: var(--white-color);
}

.projects .head-title .main-title h2 img {
    filter: brightness(0) invert(1);
}

/* Card */
.projects .service-card,
.news .service-card {
    border-radius: 25px;
    background-color: #fff;
    padding: 15px;
    height: 250px;
    position: relative;
}
/* .projects .service-card {
    cursor: pointer;
} */

.projects .service-card .image,
.news .service-card .image {
    height: 100%;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}
.projects .service-card .image {
    cursor: pointer;
}
.projects .service-card .image img,
.news .service-card .image img {
    border-radius: 25px;
    object-fit: cover;
}

.projects .service-card .layer {
    position: absolute;
    background-color: rgba(0, 138, 170, 0.4);
    border-radius: 25px;
    font-size: 24px;
    font-weight: 700;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);

    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transform-origin: center;
    transition: 0.5s ease;
    z-index: 9;
}

.projects .service-card .layer span {
    transform: translateX(100px);
    opacity: 0;
    transition: 0.4s ease 0.4s;
}

/* Hover Layer */
.projects .service-card:hover .layer {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.projects .service-card:hover .layer span {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.4s;
}

/* لما الماوس يخرج */
.projects .service-card .layer span {
    transition-delay: 0s;
}

.projects .service-card:not(:hover) .layer {
    transition-delay: 0.4s;
}
/*! ================== Projects Page  ================== */
.projectsPage,
.our-Projects {
    background: var(--bg-section);
}
.projectsPage .head-title .main-title h2 img,
.our-Projects .head-title .main-title h2 img {
    filter: none;
}
.projectsPage .main-title,
.our-Projects .main-title {
    color: var(--black-color);
}
.our-Projects .head-title .select-group {
    width: 165px;
}
.our-Projects .head-title select {
    font-size: 14px;
    font-weight: 600;
    background-color: transparent;
    border-radius: 20px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}
.select-box select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 8px 12px 8px 12px;
    font-size: 14px;
    font-family: inherit;
    direction: rtl;
}
.select-box select:focus {
    border-color: var(--main-color);
}
.our-Projects .select-box .arrow {
    color: var(--main-color);
}

/*! ================== Modal (طلب خدمة) & Modal (تواصل معنا) ================== */
#service-request .modal-content,
#contactUs .modal-content {
    border-radius: 30px;
}


#service-request .modal-body,
#contactUs .modal-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
}
#service-request .title,
#contactUs .title {
    display: flex;
    justify-content: space-between;
}
#service-request .title .text,
#contactUs .title .text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 80%;
}
#service-request .title .text h4,
#contactUs .title .text h4 {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
}
#service-request .title .text p,
#contactUs .title .text p {
    font-size: clamp(12px, 3vw, 16px);
    font-weight: 400;
}
#service-request .input-group,
#contactUs .input-group,
.select-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#service-request .input-group label,
#contactUs .input-group label,
.select-group label {
    font-size: clamp(12px, 3vw, 15px);
    color: rgba(38, 38, 38, 1);
}
#service-request input,
#service-request textarea,
#contactUs input,
#contactUs textarea,
select {
    border: 1px solid rgba(237, 237, 237, 1);
    border-radius: 20px;
    width: 100%;
    padding: 7px 15px;
    height: 40px;
    transition: .3s;
}
#service-request input:focus,
#service-request textarea:focus,
#contactUs input:focus,
#contactUs textarea:focus,
select:focus {
    border: 1px solid var(--main-color);
    box-shadow: 0 0 5px #008aaa99;
}
/* شكل الـ options */
.select-box select option {
    background: #fff;
    color: #333;
    padding: 10px;
}
#service-request input::placeholder,
#service-request textarea::placeholder,
#contactUs input::placeholder,
#contactUs textarea::placeholder,
select {
    font-size: clamp(10px, 3vw, 12px);
    color: #938c8c;
}
input[type="tel"] {
    text-align: end;
}
#service-request textarea,
#contactUs textarea {
    resize: none;
    height: 120px;
}
.select-box {
    position: relative;
}
select {
    appearance: none;
}
.select-box .arrow {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}
#service-request .sendForm,
#contactUs .sendForm {
    width: 100%;
    margin-top: 20px;
}
#service-request .modal-body .closeModal,
#contactUs .modal-body .closeModal {
    color: var(--main-color);
    width: 30px;
    height: 30px;
    background-color: var(--bg-color);
    font-size: 18px;
    transition: .5s;
    border-radius: 50%;
}
#service-request .modal-body .closeModal:hover,
#contactUs .modal-body .closeModal:hover {
    color: #34b3d0;
}
input,
select.selected {
    color: var(--black-color);
    font-size: 15px;
}

/*! ================== News Section ================== */
.news {
    position: relative;
    overflow: hidden;
}
.about-us.section-not-mt .head-title {
    padding-bottom: 0;
}
.news *,
.news .btn-mobile {
    position: relative;
    z-index: 9;
}

.news::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-color: var(--main-color);
    display:  block !important;
    /* border-radius: 105% 0 0; */
    /* corner-shape: scoop; */
}
.news.section::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: var(--bg-section);
}
.news.section-not-mt::before,
.news.section-not-mt::after {
    display: none !important;
}
.news .service-card::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 104px;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 50%;
    z-index: 9;
    box-shadow: -15px -15px var(--white-color);
}
.news .service-card::after {
    content: "";
    position: absolute;
    top: 75px;
    left: 15px;
    width: 25px;
    height: 25px;
    background-color: transparent;
    border-radius: 50%;
    z-index: 9;
    box-shadow: -15px -12px var(--white-color);
}
.news .service-card .icon-box {
    width: 105px;
    height: 75px;
    background-color: var(--bg-section);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 0 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 15px solid var(--white-color);
    border-left: 0;
    border-top: 0;
}
.news .service-card .icon-box .circle {
    position: absolute;
    background-color: transparent;
    border-radius: 50%;
}
.news .service-card .icon-box .circle {
    position: absolute;
    background-color: transparent;
    border-radius: 50%;
    z-index: 9;
}
.news .service-card .icon-box .circle.circle-1 {
    width: 35px;
    height: 35px;
    top: 0px;
    right: -34px;
    box-shadow: -15px -10px var(--bg-section);
}
.news .service-card .icon-box .circle.circle-2 {
    width: 20px;
    height: 20px;
    bottom: -18px;
    left: 1px;
    box-shadow: -15px -10px var(--bg-section);
}
.news .service-card .icon-box .main-btn {
    background-color: var(--main-color);
    color: #fff;
    width: 45px;
    height: 45px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    font-size: 20px;
}
.news .service-card .icon-box span i {
    transform: rotate(45deg);
}
.news .service-card .layer {
    position: absolute;
    background-color: var(--main-color);
    color: var(--white-color);
    padding: 20px;
    /* padding-top: 40px; */
    width: 80%;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    bottom: -150px;
    right: 10px;
    transition: .5s;
}
.news .service-card:hover .layer {
    bottom: 10px;
}

/*! ================== Map Section ================== */
.mapSection .map {
    position: relative;
}
.mapSection .map iframe {
    border-radius: 20px;
}
.mapSection .map .map-info {
    position: absolute;
    background-color: #E7F3F7;
    top: 30px;
    right: 20px;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
}
.mapSection .map .map-info .info-item {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}


/** ============================ Nour Style ============================*/
.stats-container {
    position: relative;
    margin-top: 70px;
}

.stats-grid {
    background: var(--white-color);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 10px;
    position: absolute;
    left: 0;
    top: -65px;
    border-radius: 0 0 50px;
    /* clip-path: inset(0.5px round 8px 0); */

}

.stats-grid::before {
    content: "";
    position: absolute;
    top: 100%;
    right: 97%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    z-index: 1;
    box-shadow: -10px -5px #fff;
}

.stats-grid::after {
    content: "";
    position: absolute;
    top: 64px;
    left: 100%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    z-index: 1;
    box-shadow: -10px -5px #fff;
}

.stat-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 140px;
    height: 150px;
    background: var(--grdiant-color-1);
    border-radius: 32px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    z-index: 11;
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.1;
    background: var(--white-color);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
}

.stats-container .img-container {
    /* position: relative; */
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.stats-container .img-container img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 48px;
    object-fit: cover;
    /* clip-path: path("M 0,200 L 490,200 L 490,155 L 580,80 L 700,80 L 700,0 L 1390,0 Q 1400,0 1400,10 L 1400,500 L 0,500 Z"); */
}

/* النص الوصفي */
.stat-label {
    font-size: clamp(12px, 3vw, 16px);
    font-weight: 600;
    color: var(--white-color);
    letter-spacing: 0.5px;
    word-break: keep-all;
}

.company-tagline {
    background: var(--white-color);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 10px;
    position: absolute;
    right: 0;
    bottom: 0px;
    border-radius: 50px 0 0;
}

.company-tagline::before {
    content: "";
    position: absolute;
    top: 79%;
    right: 100%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    z-index: 1;
    box-shadow: 10px 10px var(--white-color);
}

.company-tagline::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 101%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    z-index: 1;
    box-shadow: -10px -5px #fff;
}

.tagline-text {
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 700;
    background: var(--black-color);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--black-color);
    letter-spacing: -0.3px;
    text-align: start;
}

/* oppinion */
.oppinion {
    position: relative;
    margin: 100px 0;
}

.oppinion::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 110px;
    height: 90px;
    background-image: url("../assets/images/comment.webp");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.oppinion::before {
    content: "";
    position: absolute;
    bottom: 0px;
    top: 100%;
    width: 110px;
    height: 90px;
    background-image: url("../assets/images/comment.webp");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}


.slider-back {
    direction: ltr;
    margin-top: 50px;
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 420px;
    min-height: 230px;
    background: linear-gradient(89.52deg, #D5F3FB -4.72%, #A6D2E0 110.78%);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

/* النص فوق */
.slide-content .client-opinion p {
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 700;
    color: var(--black-color);
    letter-spacing: 0.5px;
    text-align: right;
    word-break: keep-all;
    padding: 20px 20px 30px 20px;
    /* text-align: justify; */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slide-content .client-image {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row-reverse;
}

.slide-content .client-image img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.slide-content .client-image p {
    font-size: 14px;
    font-weight: 700;
    color: var(--black-color);
}

.client-image {
    width: 200px;
    height: 65px;
    position: absolute;
    background: var(--white-color);
    bottom: 0;
    left: 0;
    padding: 20px;
    border-radius: 0 20px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.slider-back .client-image {
    flex-direction: row-reverse;
}

.client-image::before {
    content: "";
    position: absolute;
    top: 100%;
    right: -13px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white-color);
    z-index: 1;
    box-shadow: -10px -5px var(--white-color);
}

.client-image::after {
    content: "";
    position: absolute;
    top: -3px;
    left: -13px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    z-index: 1;
    box-shadow: -10px -5px #fff;
}

.client-image p {
    font-size: clamp(12px, 3vw, 16px);
    font-weight: 600;
    color: var(--black-color);
    letter-spacing: 0.5px;
    word-break: keep-all;
    white-space: nowrap;
}

.client-image img {
    width: 50px !important;
    height: 50px;
    border-radius: 15px;
    object-fit: contain;
}

/* oppinion end */

/* ===== TAG Media Loader ===== */
#page-loader {
    position: fixed;
    inset: 0;
    background: #41bbe0a9;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 3s ease-in-out;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    width: 72px;
    height: 72px;
    position: relative;
}

.loader-ring svg {
    width: 100%;
    height: 100%;
}

.ring-outer {
    animation: spin 1.4s linear infinite;
    transform-origin: center;
}

.ring-inner {
    animation: spin 1s linear infinite reverse;
    transform-origin: center;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-brand {
    width: 150px;
    font-size: 26px;
    font-weight: 800;
    color: #008AAA;
    letter-spacing: 5px;
}

.loader-tagline {
    font-size: 13px;
    color: #888;
    direction: rtl;
}

.loader-bar-wrap {
    width: 160px;
    height: 3px;
    background: #e0f4f7;
    border-radius: 99px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    background: #008AAA;
    border-radius: 99px;
    animation: loadProg 2.2s ease-in-out forwards;
}

@keyframes loadProg {
    0% {
        width: 0%;
    }

    60% {
        width: 75%;
    }

    85% {
        width: 90%;
    }

    100% {
        width: 100%;
    }
}

.loader-dots {
    display: flex;
    gap: 6px;
}

.loader-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #008AAA;
    animation: dots 1.2s ease-in-out infinite;
}

.loader-dots span:nth-child(2) {
    animation-delay: .2s;
}

.loader-dots span:nth-child(3) {
    animation-delay: .4s;
}

@keyframes dots {

    0%,
    100% {
        transform: scale(1);
        opacity: .4;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
    }
}


.our-messages {
    padding-block: 65px;
}

.our-messages .col-md-6:nth-child(1) .message-card,
.our-messages .col-md-6:nth-child(4) .message-card {
    background: linear-gradient(180deg, #008AAA -14.34%, #262626 111.7%);
}

.our-messages .col-md-6:nth-child(2) .message-card,
.our-messages .col-md-6:nth-child(3) .message-card {
    background: linear-gradient(89.52deg, #D5F3FB -4.72%, #A6D2E0 110.78%);
    color: #262626;
}

.our-messages .message-card {
    min-height: 200px;
    height: auto;
    border-radius: 25px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-layer h2 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 5px;
    text-align: right;
}

.our-messages .col-md-6:nth-child(1) .message-card .card-layer h2,
.our-messages .col-md-6:nth-child(1) .message-card .card-layer p,
.our-messages .col-md-6:nth-child(1) .message-card .card-layer li,
.our-messages .col-md-6:nth-child(4) .message-card .card-layer h2,
.our-messages .col-md-6:nth-child(4) .message-card .card-layer p,
.our-messages .col-md-6:nth-child(4) .message-card .card-layer li {
    color: var(--white-color);
}

.our-messages .col-md-6:nth-child(2) .message-card .card-layer h2,
.our-messages .col-md-6:nth-child(2) .message-card .card-layer p,
.our-messages .col-md-6:nth-child(2) .message-card .card-layer li {
    color: var(--black-color);
}

.card-layer p {
    margin-top: 5px;
    font-weight: 400;
    font-size: 15px;
    padding: 0px;
    text-align: right;
}

.card-layer ul {
    padding: 0;
    margin: 0;
    text-align: right;
}

.card-layer li {
    font-weight: 400;
    font-size: 15px;
    padding: 5px 0px;
    margin-right: 20px;
    list-style: disc;
}

.our-messages .message-card .icon-box::before {
    content: "";
    position: absolute;
    top: 117%;
    right: -17px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white-color);
    z-index: 1;
    box-shadow: -10px -5px var(--white-color);
}

.our-messages .message-card .icon-box::after {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    z-index: 1;
    box-shadow: -10px -5px #fff;
}

.our-messages .message-card .icon-box {
    width: 90px;
    height: 60px;
    background-color: var(--white-color);
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 35% 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 15px solid var(--white-color);
    border-left: 0;
    border-top: 0;
}

.content-serves {
    display: flex;
    justify-content: center;
}

/* .content-serves .service-card{
    position: relative;
} */
.content-serves .image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    border-radius: 25px;
    object-fit: cover;
}

.content-serves .image img {
    width: 97%;
    height: 97%;
    border-radius: 20px;
}

.content-serves .layer {
    position: absolute;
}

.content-serves .layer span {
    position: absolute;
    background: linear-gradient(90deg, #262626 -14.34%, #008AAA 111.7%);
    padding: 10px 16px;
    border-radius: 20px;
    color: var(--white-color);
    white-space: nowrap;
}

.content-serves .layer span:nth-child(1) {
    left: 150px;
    bottom: 170px;
}

.content-serves .layer span:nth-child(2) {
    right: 150px;
    bottom: 150px;
}

.content-serves .layer span:nth-child(3) {
    left: 150px;
    top: 170px;
}

.content-serves .layer span:nth-child(4) {
    right: 50px;
    top: 150px;
    transform: translateX(-50%);
}

.content-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: rtl;
    padding: 20px 0;
}

.content-icons .date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--main-color);
    font-size: 12px;
}

.content-icons .date img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.content-icons .social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-icons .social .social-icon {
    width: 44px;
    height: 44px;
    background-color: var(--white-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 14px;
}
.content-icons .social .social-icon a img{
    transition: all 0.4s ease;
}
.content-icons .social .social-icon a:hover img {
    transform: rotate(360deg);
}
.content-news {
    width: 100%;
    height: 100%;
}

.news-card {
    border-radius: 25px;
    background-color: #fff;
    padding: 15px;
    margin: 20px 0;
    height: clamp(250px, 70vh, 500px);
    position: relative;
}

.news-card .image {
    height: 100%;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.news-card .image img {
    border-radius: 25px;
    object-fit: cover;
}

.news-card p {
    font-weight: 400;
    font-size: clamp(14px, 3vw, 18px);
    text-align: right;
    margin-bottom: 20px;
}

.news.section::before{
    display: none;
}

