@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");


html {
    scroll-behavior: smooth;
}

:root {
    --main-color: #53a951;
    --second-color: #1e1f1e;
    --accent-color: #3fb865;
    --bg-dark: #0e0f0f;
    --bg-light: #151616;
    --bg-item: #1c1e1d;
    --text-color: #e8e8e8;
    --radius: 16px;
    --hover-color: #4a9147;
    --light-bg: #ffffff;
}
.text-main {
    color: var(--main-color) !important;
}

[disabled] {
    pointer-events: none;
    cursor: not-allowed;
}

.over-hidden {
    overflow: hidden !important;
}

::-webkit-scrollbar {
    width: 7px;
    background: var(--second-color);
}

::-webkit-scrollbar-thumb {
    width: 7px;
    background: var(--main-color);
    border-radius: 5px;
}

.d-none {
    display: none !important;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  direction: rtl;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}


/* loader */

.loader-container {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neon-loader-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top: 4px solid #53a951;
    animation: neon-spin 1s linear infinite;
}

.neon-loader-ring::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top: 4px solid #53a951;
    filter: blur(5px);
    opacity: 0.7;
    animation: neon-glow 1.5s ease-in-out infinite;
}

.loader-container img {
    width: 130px;
    height: auto;
    z-index: 2;
}

@keyframes neon-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes neon-glow {
    0%,
    100% {
        filter: blur(5px);
        opacity: 0.7;
    }
    50% {
        filter: blur(10px);
        opacity: 1;
    }
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#loader img {
    width: 160px;
    height: auto;
    animation: img 1.5s infinite;
    border-radius: 50%;
}

@keyframes img {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.GlowingBackdrop_glowingBackdrop__aM_VW {
    top: calc(var(--spacing, 0.25rem) * 105);
    left: calc(var(--spacing, 0.25rem) * 0);
    z-index: 1;
    width: 100%;
    position: relative;
}

.GlowingBackdrop_glowingBackdrop__aM_VW svg {
    inset: calc(var(--spacing, 0.25rem) * 0);
    aspect-ratio: 1.67;
    object-fit: cover;
    max-width: 1004px;
    color: var(--color-neutral-300, #d9e1e4);
    margin: auto;
    position: absolute;
    opacity: 0.1;
}

.GlowingBackdrop_glowingBackdrop__aM_VW:after {
    inset: calc(var(--spacing, 0.25rem) * 0);
    aspect-ratio: 1;
    background-color: var(--color-green-700, #2c682c);
    --tw-blur: blur(120px);
    width: 300px;
    filter: var(--tw-blur);
    --tw-content: "";
    content: var(--tw-content);
    border-radius: 3.40282e38px;
    margin: auto;
    position: absolute;
}


/* home */

.slide {
    position: relative;
    width: 100%;
    height: 100vh;
    background: var(--second-color);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.slide>img {
    width: 270px;
}

.animathion-logo {
    animation: animathion-logo 2s forwards;
}

.carousel-inner {
    border-radius: 40px;
}

.w-100 {
    height: 737px;
}

.text-container,
.slide>img {
    z-index: 2;
}

.text-container>.name {
    padding: 0 20px;
}

.typing-container {
    width: 100%;
    font-size: 30px;
    overflow: hidden;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    color: #fff;
    margin-bottom: 90px;
    height: fit-content;
    flex-wrap: nowrap;
}

button#down {
    border: none;
    outline: none;
    position: absolute;
    bottom: 170px;
    background: var(--main-color);
    color: #fff;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    cursor: pointer;
    animation: down 3s infinite;
    z-index: 2;
}

a.down {
    position: absolute;
    bottom: 0px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes down {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0);
    }
}

.typing-container>span.company-name {
    color: var(--main-color);
    font-weight: bold;
    margin-bottom: 10px;
}

@media (max-width: 1150px) {
    .slide {
        gap: 5rem !important;
    }
}

@keyframes typing-spacing {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes typing {
    from {
        width: 0;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

@media (max-width: 882px) {
    .slide>img {
        display: none;
    }
}


/* waves */

svg:not(:root) {
    overflow: hidden;
}

.waves,
.wave {
    position: absolute;
    width: 100%;
    height: 122px;
    bottom: 0;
    min-height: 100px;
    max-height: 150px;
}

.wave {
    position: absolute;
    z-index: -9;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}


/* home */

.app {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: fit-content;
    background: var(--main-color);
    padding: 3.5rem;
}

.app>h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    color: #fff;
    font-weight: 700;
    margin-bottom: 3rem;
    font-size: 20px;
}

.app>h2::before {
    content: "";
    width: 100px;
    height: 5px;
    background: #fff;
    margin-top: 15px;
    border-radius: 5px;
}

.app>.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    width: 100%;
    margin-top: -2rem;
}

.app>.about>.app-text {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.app>.about>.app-text>.company-name-app {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.app>.about>.app-text>.company-name-app>p {
    font-size: 25px;
    color: #fff;
}

.app>.about>.app-text>.app-description {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 1150px) {
    .app>.about>.app-text>.app-description {
        width: 355px !important;
    }
    .app>.about>.app-text>.app-description>p {
        width: 350px !important;
    }
}

.app>.about>.app-text>.app-description>p {
    font-size: 15px;
    color: #fff;
    text-align: right;
    font-weight: 700;
    width: 530px;
}

.app>.about>.app-text>.app-description>.qr-code>p {
    font-size: 18px;
    color: var(--second-color);
    text-align: center;
    font-weight: 700;
    text-shadow: -2px 2px #fff;
    border-bottom: 2px var(--second-color);
}

.app>.about>.app-text>.app-description>.qr-code>.a_scan-qr {
    margin: 0 auto;
    background: #fff;
    height: 140px;
    width: 140px;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 1px #000;
}

.app>.about>.app-text>.app-description>.qr-code>.scan-qr {
    margin: 0 auto;
    background: #fff;
    height: 140px;
    width: 140px;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 1px #000;
}

.qr-code-img {
    width: 130px;
    padding-top: 8px;
}

.app>.about>.app-text>.app-description>.qr-code>span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}

.app>.about>.app-text>.app-stores {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    gap: 15px;
}
@media (max-width: 380px){
    .app>.about>.app-text>.app-stores{
        flex-direction: column;
    }
}
.app>.about>.app-text>.app-stores img {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 180px;
    margin: 10px auto;
    border-radius: 11px;
    height: 60px;
}

.a_btn-download {
    margin: 0 auto;
}

.comic-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: var(--main-color);
    background-color: var(--second-color);
    border: 2px solid #000;
    border-radius: 10px;
    box-shadow: 5px 5px 0px #000;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
    outline: none;
}

.comic-button:hover {
    background-color: var(--main-color);
    color: var(--second-color);
    border: 2px solid var(--second-color);
    box-shadow: 5px 5px 0px var(--second-color);
}

.app>.about>div:nth-child(1)>.comic-button a {
    text-decoration: none;
    color: var(--main-color);
    font-weight: 700;
}

.app>.about>div:nth-child(1)>.comic-button:hover a {
    text-decoration: none;
    color: var(--second-color);
    outline: none;
}

.comic-button:active {
    box-shadow: none;
    transform: translateY(4px);
}

.app>.about>div:nth-child(2)>img {
    width: 490px;
}

@media (max-width: 1150px) {
    .app #about {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 3rem !important;
        width: 100% !important;
        flex-wrap: wrap !important;
    }
    .app>.about>.app-image>img {
        width: 360px !important;
        padding-top: 30px !important;
    }
    .google-play,
    .app-gallary {
        margin: 0 auto !important;
    }
}

@media (max-width: 1020px) {
    .app>.about {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
}


/* about company */

#cards {
    width: 100%;
    padding: 140px 0;
    display: flex;
    justify-content: center;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

#cards::before,
#cards::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background-color: #ddffdc;
    filter: blur(160px);
    z-index: 1;
    animation: floatGlow 9s infinite ease-in-out alternate;
}

#cards::before {
    top: -180px;
    right: -120px;
}

#cards::after {
    bottom: -180px;
    left: -120px;
}

@keyframes floatGlow {
    from { transform: translateY(0px); }
    to { transform: translateY(55px); }
}

.cards {
    width: 92%;
    max-width: 1600px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 28px;
    z-index: 10;
}

.card_about {
    padding: 40px 35px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    box-shadow:
        0px 10px 30px rgba(0,0,0,0.06),
        0px 20px 50px rgba(0,0,0,0.04);
    transition: all .45s cubic-bezier(.16,.84,.44,1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUpSuper 0.9s forwards ease-out;
}

.hover-circle {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    pointer-events: none;
    background: rgb(80 151 101 / 86%);
    filter: blur(50px);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}


.card_about:hover .hover-circle {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

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

/* .card_about::after {
    content: "";
    position: absolute;
    width: 180%;
    height: 180%;
    top: -40%;
    left: -40%;
    background: linear-gradient(
        135deg,
        transparent,
        rgba(83, 169, 81, 0.09),
        transparent
    );
    opacity: 0;
    transform: rotate(25deg);
    transition: .6s ease;
} */

.card-header {
    text-align: center;
    margin-bottom: 22px;
}

.card-header h2 {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(90deg, #53a951, #2b7e32);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 0.8px;
    transition: .4s ease;
}

.card-body p {
    color: #2b2b2b;
    line-height: 2;
    font-size: 16px;
    text-align: center;
    opacity: 0.75;
    font-weight: 500;
    transition: .35s ease;
}

.card_about:hover {
    transform: translateY(-18px) scale(1.025);
    box-shadow:
        0px 12px 35px rgba(0,0,0,0.08),
        0px 28px 70px rgba(0,0,0,0.13);
    border-color: #53a951;
}

/* .card_about:hover::after {
    opacity: 1;
    transform: rotate(25deg) translate(45px, -45px);
} */

.card_about:hover h2 {
    letter-spacing: 1.8px;
    opacity: 1;
}

.card_about:hover p {
    opacity: 1;
}


@media (max-width: 991px) {
    .cards {
        width: 95%;
        grid-template-columns: 1fr;
    }
}

/* our_team */

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    min-height: 69.8vh;
    line-height: 1.5em;
    height: calc(100vh - 75px);
    align-items: center;
}

@media (max-width: 1200px) {
  .container {
    min-height: auto;
    padding: 160px 10px 40px !important;
  }
}

.item {
  width: 330px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  animation: cardFloat 0.8s ease forwards;
}

.item.show { height: fit-content; }

.item .layer {
  width: 100%;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 26px;
  overflow: hidden;
  border: 2px solid rgba(83, 169, 81, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.45s ease;
  transform: translateY(0);
  height: 485px;
}

.item .layer:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 
    0 22px 55px rgba(83, 169, 81, 0.45),
    inset 0 0 25px rgba(83, 169, 81, 0.22);
  border-color: #53a951;
}

@keyframes cardFloat {
  from { opacity: 0; transform: translateY(25px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: grayscale(25%) brightness(0.9);
  transition: 0.45s ease;
}

.item:hover .team-img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.07);
}

.info {
  text-align: center;
  padding: 22px 10px 14px;
}

.info p:first-child {
  font-size: 23px;
  font-weight: 900;
  color: #1c1c1c;
}


.social-icons.icons_center_our_team {
    padding: 15px;
}

/* services */

.typing-services {
    padding-top: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typing-services p {
    font-size: 18px;
    color: var(--main-color);
    font-weight: bold;
    border-radius: 10px;
    width: 100%;
    padding: 20px;
    text-align: center;
}

.sections {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
    height: calc(100vh - 100%);
}

.section_1,
.section_2 {
    width: 100%;
    height: 100%;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 22px 22px 336px 22px;
    animation: fadeIn 2s ease-in-out;
}

.service {
    width: 270px;
    height: 420px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    cursor: pointer;
}

.service:hover {
    transform: rotateY(180deg);
}

.card_service_programming {
  width: 280px;
  height: 306px;
  background: #fff;
  transition: all 0.45s ease;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  font-size: 30px;
  font-weight: 900;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(4px);
}

.card_service_programming::before {
  content: "";
  position: absolute;
  top: -80%;
  left: -80%;
  width: 250%;
  height: 250%;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(45deg);
  transition: 0.6s;
}

.card_service_programming:hover::before {
  top: -10%;
  left: -10%;
}

.card_service_programming:hover {
  transform: scale(1.01) translateY(-8px);
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
  background: #fff;
}

.first-content,
.second-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.45s ease;
}

.card_service_programming img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: pointer;
}

.card_service_programming.payment_img img {
    width: 50%;
    height: 145px;
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: pointer;
}

.card_service_programming p {
    color: #777;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
}

.first-content {
  opacity: 1;
  transform: translateY(0);
}

.card_service_programming:hover .first-content {
  opacity: 0;
  transform: translateY(-40px);
}

.second-content {
  opacity: 0;
  transform: translateY(40px);
  font-size: 0px;
}

.card_service_programming:hover .second-content {
  opacity: 1;
  font-size: 1.4rem;
  transform: translateY(0);
}

/* partners
.partners {
    height: calc(100vh - 75px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

.partners-section {
    background: linear-gradient(135deg, #f0f4f8, #e0e7ef);
    text-align: center;
}

.partners {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.partner-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-tooltip {
    position: absolute;
    top: -80px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 17px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(10px);
    white-space: nowrap;
    font-weight: 600;
}

.partner-wrapper:hover .partner-tooltip {
    opacity: 1;
    transform: translateY(-15px) rotate(3deg) scale(1.05);
}

.partner-tooltip::after {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 27%;
    transform: translateX(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.85) transparent transparent transparent;
}

.partner-card {
    width: 300px;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.partner-card img {
    width: 240px;
    height: auto;
    transition: transform 0.6s ease;
}

.partner-card:hover {
    transform: translateY(-15px) rotate(3deg) scale(1.05);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
}

.partner-card:hover img {
    transform: scale(1.1);
}


@media (max-width: 1375px) {
    .partners {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .partner-card {
        width: 230px;
        height: 170px;
    }

    .partner-card img {
        width: 180px;
    }


    .partner-tooltip {
        top: -55px;
        font-size: 15px;
    }

    .partners-section {
        padding-top: 120px;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 220px 0 110px 0;
    }

    .partner-card {
        width: 210px;
        height: 160px;
    }

    .partner-card img {
        width: 160px;
    }

    .partner-tooltip {
        top: -50px;
        font-size: 14px;
        padding: 5px 12px;
    }
}

@media (max-width: 360px) {
    .partner-card {
        width: 190px;
        height: 150px;
    }

    .partner-tooltip {
        font-size: 13px;
        top: -45px;
    }
} */
 /* =========================================
   ULTRA PREMIUM PARTNERS SECTION
   Fixed Card Size – Perfect Alignment
========================================= */

.partners-section {
    position: relative;
    background: radial-gradient(circle at 20% 20%, #eef4ff, #e6edf7 60%);
    overflow: hidden;
    height: 63vh;
    padding: 278px 0 0 0;
}

/* خلفية احترافية متحركة */
.partners-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.15), transparent 70%);
    top: -250px;
    right: -200px;
    animation: floatBg 12s ease-in-out infinite alternate;
}

@keyframes floatBg {
    from { transform: translateY(0px); }
    to { transform: translateY(40px); }
}

/* ================= GRID ================= */

.partners {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* ================= WRAPPER ================= */

.partner-wrapper {
    position: relative;
    width: 295px;
    height: 220px;
}

/* ================= CARD ================= */

.partner-card {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.08),
        inset 0 0 0 1px rgba(255,255,255,0.6);
    transition: all .4s cubic-bezier(.23,1,.32,1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

/* Shine Effect */
.partner-card::after {
    content: "";
    position: absolute;
    width: 160%;
    height: 160%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.6),
        transparent 70%
    );
    transform: rotate(25deg) translateX(-120%);
    transition: 0.8s;
}

.partner-card:hover::after {
    transform: rotate(25deg) translateX(120%);
}

/* Hover Glow */
.partner-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow:
        0 30px 60px rgba(0, 123, 255, 0.2);
}

/* ================= IMAGE ================= */

.partner-card img {
    width: 65%;
    height: auto;
    object-fit: contain;
    transition: all .5s ease;
    filter: grayscale(30%);
}

.partner-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* ================= TOOLTIP ================= */

.partner-tooltip {
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #111;
    color: white;
    padding: 8px 18px;
    border-radius: 14px;
    font-size: 14px;
    opacity: 0;
    transition: all .4s ease;
    white-space: nowrap;
    pointer-events: none;
}

.partner-wrapper:hover .partner-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

.partner-tooltip::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #111 transparent transparent transparent;
}

/* ================= RESPONSIVE ================= */

/* تابلت */
@media (max-width: 992px) {
    .partners {
        gap: 40px;
    }
}

/* موبايل */
@media (max-width: 768px) {
    .partners-section {
        padding: 150px 0 750px 0;
    }

    .partners {
        grid-template-columns: repeat(auto-fit, minmax(240px, 240px));
    }
}

/* موبايل صغير */
@media (max-width: 480px) {
    .partners {
        grid-template-columns: 1fr;
    }
}

.info p:last-child {
  font-size: 15px;
  font-weight: 700;
  color: #53a951;
  opacity: 0.9;
  letter-spacing: 0.3px;
  margin-top: 15px;
}
/* contact_us */

.contact-section {
    padding: 60px 20px;
    background-color: #ffffff;
    padding-top: 140px;
}

.contact-container {
    max-width: 1060px;
    margin: auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.display {
    padding: 0 22px 0 22px;
    border-bottom: 1px solid #eee;
}

.contact-info {
    text-align: right;
    padding-bottom: 30px;
}

.contact-info h2 {
    font-size: 25px;
    color: #003566;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: center;
    font-weight: 700;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
}

.contact-info ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    font-size: 15px;
    font-weight: 700;
}

.text-main {
    font-weight: bold;
}

.img-icon {
    flex: 1;
    text-align: center;
}

.img-icon img {
    max-width: 300px;
}
.text_contact_us {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.contact-form form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 15px;
    transition: 0.3s;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

@media (max-width: 390px) {
    .contact-form input,
    .contact-form textarea {
        width: 260px !important;
    }
}

@media (max-width: 430px) {
    .contact-form input,
    .contact-form textarea {
        width: 310px;
    }
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #53a951;
    outline: none;
}
.display_inputs_contact_us{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 30px;
}
@media(max-width: 620px){
    .display_inputs_contact_us{
        flex-direction: column;
        gap: 0px;
    }
}
@media(max-width: 840px){
    .text_contact_us{
        flex-direction: column;
    }
}
.contact_us-input:focus+.floating-label,
.contact_us-input:not(:placeholder-shown)+.floating-label {
    top: -20px;
    font-size: 13px;
    color: #53a951;
}

.btns {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    width: 100%;
}

.submit {
    width: 100%;
    height: 48px;
    background: linear-gradient(135deg, #57ac57, #3d8c43);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    font-family: "Cairo", sans-serif;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(87, 172, 87, 0.3);
}

.submit::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.submit:hover::after {
    left: 100%;
}

.submit:hover {
    background: linear-gradient(135deg, #3d8c43, #2f6f35);
    box-shadow: 0 6px 14px rgba(87, 172, 87, 0.35);
    color: #fff;
}

.submit-chat {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    font-family: "Cairo", sans-serif;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(87, 172, 87, 0.3);
}

.submit-chat::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.submit-chat:hover::after {
    left: 100%;
}

.submit-chat:hover {
    box-shadow: 0 6px 14px rgba(87, 172, 87, 0.35);
    color: #fff;
}

.reset {
    background-color: #ff0000;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    flex: 1;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
    font-family: "Cairo";
}

.reset:hover {
    background-color: #b10000;
}

@media (max-width: 768px) {
    .display {
        flex-direction: column;
        text-align: center;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1150px) {
    .display {
        gap: 0;
        display: list-item;
    }
}

iframe {
    width: 98.2%;
    height: 450px;
    border: none;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

@media (max-width: 730px) {
    iframe {
        width: 94% !important;
    }
}


/* ---- ratings ---- */

.review-container {
    width: 77%;
    max-width: 1000px;
    margin: 120px auto;
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
}

.review-input {
    width: 97%;
    padding: 14px 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: "Cairo", sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: transparent;
}

.review-input:focus {
    border-color: #53a951;
    box-shadow: 0 0 10px rgba(83, 169, 81, 0.25);
}

.floating-label {
  position: absolute;
  top: 5%;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 8px;
  color: #000;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
  border-radius: 15px;
  font-weight: 700;
}

.lang-ar .floating-label {
  right: 1px !important;
  left: auto !important;
}

.lang-en .floating-label {
  left: 1px !important;
  right: auto !important;
}


.review-stars {
    display: flex;
    gap: 10px;
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s ease;
    user-select: none;
}

.review-stars span.active {
    color: #FFD700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.review-input:focus+.floating-label,
.review-input:not(:placeholder-shown)+.floating-label {
    top: 0px;
    font-size: 13px;
    color: #53a951;
}

.review-textarea {
    width: 97%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: 0.3s;
    font-family: "Cairo", sans-serif;
}

.review-textarea:focus {
    border-color: var(--main-color);
    outline: none;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 40px;
    color: #ccc;
    cursor: pointer;
}

.review-btn {
    background: var(--main-color);
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
    font-family: "Cairo", sans-serif;
}

@media (max-width: 600px) {
    .review-input,
    .review-textarea {
        width: 92%;
    }
}

i.fa-solid.fa-headset {
    color: #fff;
    font-size: 25px;
}

.button {
    height: 75px;
    width: 215px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #1e1f1e;
    box-shadow: 5px 5px 0px #000;
}
.button:active {
    box-shadow: none;
    transform: translateY(4px);
}

.type1::after {
  content: "QR Code";
    height: 75px;
    width: 215px;
  background-color: #53a951;
  color: #1e1f1e;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translateY(75px);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}

.type1::before {
  content: "إضغط لعرض QR Code";
    height: 75px;
    width: 215px;
  background-color: #1e1f1e;
  color: #53a951;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translateY(0px) scale(1.2);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}

.type1:hover::after {
  transform: translateY(0) scale(1.2);
}

.type1:hover::before {
  transform: translateY(-50px) scale(0) rotate(120deg);
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-content {
  background-color: #fff;
  padding: 30px 0;
  border-radius: 15px;
  position: relative;
  max-width: 350px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  transform: scale(0.7);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-overlay.show {
  display: flex;
  opacity: 1;
}

.modal-overlay.show .modal-content {
  transform: scale(1);
  opacity: 1;
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 15px;
    cursor: pointer;
    color: #ff0000;
    transition: color 0.3s ease;
    background: rgb(0 0 0 / 10%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
}

.modal-close:hover {
  color: #ff0000;
}

.qr-code p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.qr-code img {
  width: 180px;
  height: 180px;
  transition: transform 0.3s ease;
}

.qr-code span {
  display: block;
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  font-weight: 500;
}

.copy-link-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

.copy-link-container input {
  flex: 1;
  padding: 8px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  outline: none;
  transition: border 0.3s ease;
  width: 235px;
}

.copy-link-container input:focus {
  border-color: #53a951;
}

.copy-link-container button {
  padding: 8px 12px;
  background-color: #53a951;
  color: #fff;
  border: none;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
    height: 44px;
}

.copy-link-container button:hover {
  background-color: #3e8738;
}

#copyMsg {
  margin: 20px 0 0 10px;
  color: #53a951;
  font-size: 14px;
  display: none;
  transition: opacity 0.3s ease;
}
.header-menu {
    display: flex;
    align-items: center;
    justify-content: left;
}

.header-menu>a {
    text-decoration: none;
    color: var(--main-color);
    font-size: 19px;
}

.close-btn {
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}

/* ----------- Menu Base ----------- */
.menu {
    position: fixed;
    top: 0;
    right: -350px;
    height: 100vh;
    width: 310px;
    background-color: var(--second-color);
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    z-index: 99999;
    overflow: auto;
    transition: right 0.6s ease;
}

#menu.open {
    right: 0;
}

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    top: 0;
    left: 0;
}

#menu.open + .overlay,
.overlay.open {
    display: block;
}

/* باقي التنسيقات كما هي */
.menu-header { text-align: center; }
.menu-header img { width: 180px; height: 180px; margin-bottom: 10px; border-radius: 15px; }
span.innovation { text-align: center; letter-spacing: 1.6px; color: #fff; margin-bottom: 30px; }
.menu ul { list-style: none; margin: 0; padding: 0; }
.menu ul li { margin-bottom: 20px; }
.menu ul li a { display: flex; padding: 12px 20px; background-color: rgba(255,255,255,0.05); border-radius: 10px; color: #fff; text-decoration: none; font-size: 16px; font-weight: bold; justify-content: space-between; align-items: center; transition: all 0.3s ease; }
.menu ul li a:hover { background-color: var(--main-color); transform: translateX(-5px); }

.submenu { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.submenu.show { max-height: 140px; margin: 15px 0; }
.submenu li { list-style: none; }
.submenu-link { padding: 10px 20px; display: block; text-decoration: none; color: #fff; transition: all 0.3s ease; position: relative; }
.submenu-link:hover { background: linear-gradient(135deg,#61ad47,#4e8e38); border-radius: 8px; }
ul.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* لما نضيف class "open" هتفتح */
ul.submenu.open {
    max-height: 128px; /* اعلى قيمة متوقعة للقائمة، ممكن تزود حسب المحتوى */
}
.menu-arrow { transition: transform 0.3s ease; }
.menu-arrow.rotate { transform: rotate(-90deg); }
/* ----------- Active Links ----------- */

.ul_menu_website a.active {
    background: #53a951; /* اللون الجديد */
    border-radius: 10px;
    transform: translateX(-5px);
}

.ul_menu_website a.active i:first-child {
    color: #fff; /* أيقونة تبقى بيضا للوضوح */
}

/* Submenu link active */
.submenu-link.active {
    background: #53a951; /* اللون الجديد */
    border-radius: 8px;
    color: #fff;
}
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");


* {
    margin: 0;
    padding: 0;
    font-family: 'Cairo', sans-serif;
}

/* ===== Header ===== */
header {
    position: fixed;
    width: calc(100% - 122px);
    margin: 20px;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--second-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    z-index: 999;
    animation: slideDown 0.6s ease forwards;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%) translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
}

/* ===== Logo & Language ===== */
.logo-roaya {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-roaya img {
    height: 55px;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.logo-roaya img:hover {
    transform: scale(1.1) rotate(-15deg);
}

.logo-roaya .lang-switch {
    text-decoration: none;
    color: var(--main-color);
    font-weight: 700;
    font-size: 16px;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.logo-roaya .lang-switch:hover {
    background: var(--main-color);
    color: var(--second-color);
}

/* ===== Menu ===== */
header > ul {
    display: flex;
    list-style: none;
    gap: 10px;
}

span.nav-icon {
    position: absolute;
    top: -72px;
    border-radius: 50%;
    background-color: #2a2b2a; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    opacity: 0;
    transform: translateY(12px) scale(0.8);
    transition: 0.35s ease;
}

header > ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 100px;
    cursor: pointer;
    transition: 0.35s ease;
}
header > ul li:hover .link_pages_header{
    position: absolute;
    top: 15px;
}

header > ul li a {
    text-decoration: none;
    color: var(--main-color);
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
}


header > ul li .icon_span_li_header_active {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    font-size: 22px;
    color: #fff;
    opacity: 0;
    transform: translateY(12px) scale(0.8);
    transition: 0.35s ease;
}


header > ul li:hover .icon_span_li_header_active {
    opacity: 0.35;
    transform: translateY(0) scale(0.92);
    background: rgba(255,255,255,0.12);
}


header > ul li.active .icon_span_li_header_active {
    opacity: 1;
    transform: translateY(0) scale(1);
    background: var(--main-color);
    color: #fff;
    box-shadow: 0 4px 22px rgba(0, 255, 0, 0.25);
    animation: iconPop 0.35s ease;
}


header > ul li:hover .nav-icon,
header > ul li.active .nav-icon {
    opacity: 1;
}


@keyframes iconPop {
    0% { transform: scale(0.3); opacity: 0; }
    60% { transform: scale(1.25); opacity: 1; }
    100% { transform: scale(1); }
}


header > ul li.active .link_pages_header {
    color: var(--hover-color);
    position: absolute;
    top: 15px;
}

/* Mobile */
.btn-open-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

@media (max-width: 1185px) {
    header > ul { display: none; }
    .logo-roaya .lang-switch { display: none; }
    .btn-open-menu { display: block; }
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: var(--second-color);
    color: #fff;
    padding: 20px 50px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: transform 0.2s ease;
    text-decoration: none;
    /* color: #53a951; */
    /* font-size: 18px; */
    /* transition: color 0.3s; */
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons .whatsapp {
    background-color: #25D366;
}

.social-icons .github {
    background-color: #000;
}

.social-icons .facebook {
    background-color: #1877F2;
}

.social-icons .linkedin {
    background-color: #0A66C2;
}

.social-icons .email {
    background-color: #FF5722;
}

.text-footer>span,
footer>.text-footer>span a {
    color: var(--main-color);
    font-weight: 900;
}

@media(max-width: 865px) {
    footer {
        flex-direction: column;
        gap: 20px;
    }
}
.faq_container {
  width: 80%;
  margin: 0 auto;
  padding: 150px 0 110px;
  display: flex;
  justify-content: center;
  animation: fadeIn 1.2s ease;
}

.faq {
  width: 100%;
  background: linear-gradient(160deg, #0b0c0c, #161717);
  padding: 3rem 2.6rem;
  border-radius: 22px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.faq details {
  background: var(--bg-item);
  border-radius: var(--radius);
  margin-bottom: 1.3rem;
  border: 1px solid transparent;
  overflow: hidden;
  transition: 0.4s ease-in-out;
  position: relative;
  padding-top: 0.4rem;
}

.faq details:hover {
  border-color: var(--accent-color);
  box-shadow: 0 0 28px rgba(76, 203, 113, 0.22);
  transform: translateY(-2px);
}

.faq details summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  color: var(--main-color);
  padding: 1.1rem 1.3rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.faq details summary::-webkit-details-marker {
  display: none;
}

.faq details summary .arrow {
  color: var(--main-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: 0.4s ease;
  transform: rotate(0deg);
}

.faq details[open] summary .arrow {
  transform: rotate(-90deg) scale(1.12);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--main-color);
  box-shadow: 0 0 14px rgba(76, 203, 113, 0.35);
}

.faq details p {
  padding: 0 1.3rem 1.2rem;
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-color);
  opacity: 0;
  max-height: 0;
  transform: translateY(6px);
  transition: all 0.45s ease;
}

.faq details[open] p {
  opacity: 1;
  max-height: 500px;
  transform: translateY(0);
}

.faq details[open] {
  background: #202221;
  border-color: var(--main-color);
  box-shadow: 0 0 32px rgba(76, 203, 113, 0.28);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .faq_container {
    width: 92%;
  }

  .faq {
    padding: 2rem 1.4rem;
  }

  .faq details summary {
    font-size: 15px;
  }

  .faq details p {
    font-size: 14px;
  }
}

#dropdown {
    position: relative;
}

.dropdown-menu {
    width: 240px;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.4s ease;
    position: absolute;
    right: 0;
    background-color: white;
    list-style: none;
    padding: 0;
    margin: 178px 0 0 0;
    border: 1px solid #ccc;
    border-radius: 12px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    padding: 10px;
}

#dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.dropdown-menu li a {
    transform: translateX(0);
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    background-color: transparent;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
}

.dropdown-menu li a:hover::before {
    width: 100%;
    right: 0;
    left: auto;
}
#dropdown .dropdown-menu li::after {
    content: none !important;
}

.dropdown:hover .dropdown-menu li {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-menu li:nth-child(1) {
    transition-delay: 0.1s;
}

.dropdown-menu li:nth-child(2) {
    transition-delay: 0.2s;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.cards-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.card-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 13px 2px rgba(0, 0, 0, 0.295);
    width: 260px;
    text-align: center;
    padding: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 13px 5px rgba(0, 0, 0, 0.180);
}

.card img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: pointer;
}

.card h3 {
    font-size: 20px;
    margin: 0 0 5px 0;
    color: #333;
}

.card p {
    color: #777;
    margin-bottom: 15px;
    font-size: 14px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
@media (max-width: 1610px) {
    .card-container {
        padding-top: 120px !important;
    }
}
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1e1f1e;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    animation: floatUpDown 2.5s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.chat-button svg {
    font-size: 25px;
    color: #fff;
}

.chat-button:hover {
    background-color: #1e1f1e;
}

/* الصندوق */
.chat-box {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 320px;
    max-width: 90%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    z-index: 998;
    transition: opacity 0.5s ease, transform 0.5s ease;
    cursor: move;
}

/* الحالة المفتوحة */
.chat-box.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chat-header {
    background-color: #1e1f1e;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-around;
    clip-path: polygon(0% 0%, 100% 0%, 100% 78%, 76% 85%, 25% 100%, 0 81%);
}

.chat-header img {
    width: 70px;
}

.chat-header p {
    color: #61af44;
}

.chat-body {
    padding: 15px;
}

.chat-body input,
.chat-body textarea {
    width: 92%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    font-size: 14px;
}

.chat-body button {
    width: 100%;
    padding: 10px;
    border: none;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* ---- All ---- */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.hide {
  opacity: 0;
  transform: translateY(60px);
}
.basata{
    width: 100% !important;
}
ul.ul_menu_website {
    margin: 0 0 70px 0;
}



.privacy-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
    padding: 150px 0;
}

/* ===== Header ===== */
.privacy-hero {
    background: linear-gradient(135deg,#53a951,#3c8d3a);
    color: white;
    padding: 70px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    margin-bottom: 60px;
}

.privacy-hero h1 {
    font-size: 38px;
    margin: 0;
    font-weight: 800;
}

.privacy-hero p {
    margin-top: 15px;
    font-size: 18px;
    opacity: .95;
}

/* ===== Grid Layout ===== */
.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-left: 10px;
    margin-right: 10px;
}


/* ===== Card ===== */
.privacy-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: .4s ease;
    border: 1px solid rgba(83,169,81,.08);
    margin-left: 10px;
    margin-right: 10px;
}

.privacy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.privacy-card h2 {
    color: #53a951;
    font-size: 22px;
    margin-bottom: 15px;
}

.privacy-card p {
    color: #555;
    line-height: 1.9;
    font-size: 15px;
}

.privacy-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.privacy-card ul li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-right: 25px;
}

.privacy-card ul li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #53a951;
    font-weight: bold;
}

/* ===== Contact Box ===== */
.privacy-contact {
    margin-top: 70px;
    background: #ffffff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    text-align: center;
}

.privacy-contact h2 {
    color: #53a951;
    margin-bottom: 20px;
}

.privacy-contact a {
    display: inline-block;
    margin: 10px;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    background: #53a951;
    transition: .3s;
    font-weight: 600;
}

.privacy-contact a:hover {
    background: #3f8d3e;
}

/* ===== Responsive ===== */
@media(max-width: 992px){
    .privacy-grid{
        grid-template-columns: 1fr;
        margin-left: 5px;
        margin-right: 5px;
    }

    .privacy-card{
        margin-left: 5px;
        margin-right: 5px;
    }
}

@media(max-width: 600px){

    .privacy-hero{
        padding: 50px 20px;
        border-radius: 18px;
    }

    .privacy-hero h1{
        font-size: 26px;
    }

    .privacy-card{
        padding: 25px;
        border-radius: 18px;
    }

    .privacy-contact{
        padding: 30px 20px;
    }

}