* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    background: linear-gradient(to right, rgb(146, 210, 240), #da3989);
    height: 5rem ;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000   !important;
}
.bom{
  margin-top: 7rem;
  margin-bottom: 3rem;
}
.navbar .logo {
    width: 160px;
    color: white;
    margin-left: 2rem;
}

nav.anav a {
    margin-left: 15px;

}

.logo1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50px;
}

.menu-icon {
    width: 35px;
    height: 35px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    z-index: 1001;
}

#sideMenu {
    position: fixed;
    top: 0;
    right: -150px;
    width: 150px;
    height: 100vh;
    background: white;
    color: black;
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: -2px 0 5px rgba(22, 21, 21, 0.3);
}

#sideMenu a {
    color: black;
    text-decoration: none;
    font-size: 18px;
}

#sideMenu .close-btn {
    font-size: 30px;
    cursor: pointer;
    align-self: flex-end;
}
.body1{
    margin-top: 1rem;
    display: flex;
    align-items: center;
     background: linear-gradient(to right, rgb(146, 210, 240), #da3989);
    padding: 2rem;
    
}
.mktb{
    width: 350px;
    margin-left: 2rem;
}
.mktbb{
    margin-left: 2rem;
    margin-top: 5rem;
    font-size: 25px;
    width: 600px;
    margin-left: 7rem;
    color: whitesmoke;
}
@media (max-width: 768px) {
  .body1 {
    flex-direction: column; /* يجعل العناصر تحت بعض */
    text-align: center;
    padding: 1rem;
  }

  .mktb {
    width: 80%; /* تصغير الصورة أو العنصر */
    margin: 0 auto;
  }

  .mktbb {
    width: 90%;
    margin: 1rem auto 0 auto; /* توسيط النص */
    font-size: 18px; /* تصغير حجم الخط ليلائم الشاشة */
  }
}
.scroll-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: #fff;
  padding: 10px 0;
}

.scroll-content {
  display: inline-flex;
  gap: 15px;
  animation: scroll-left 20s linear infinite;
}

.scroll-content img {
  height: 250px;
  border-radius: 10px;
  flex-shrink: 0;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.body2{
    margin-top: 3rem;
    display: flex;
    align-items: center;
    padding: 2rem;
    
}
@media (max-width: 768px) {
  .scroll-content img {
     max-height: 180px; /* تصغير الصور على الموبايل مع الحفاظ على كامل الصورة */
  }

  .b2 {
    font-size: 1.2rem; /* تصغير حجم الخط */
    padding: 0 10px;   /* ترك مساحة من الأطراف */
    width: 80%; /* جعل العرض نسبي */
  }

  .body2 {
    padding: 1rem;
  }
}
.body9{
    margin-top: 3rem;
   background-color: rgb(146, 210, 240);
   padding: 1rem;
   padding-bottom: 0;
   
    
}
.body9 img{
    height: 500px;
    border-radius: 10px;
    margin-top: 2rem;
    float: right;
}
.body9::after {
  content: "";
  display: table;
  clear: both;
}
.body9 h2{
    font-size: 25px;
    color: white;
    margin-top: 13rem;
    margin-left: 2rem;
}


.body9 img{
    height: 500px;
    border-radius: 10px;
    margin-top: 2rem;
    float: right;
    max-width: 100%;
}

.body9::after {
  content: "";
  display: table;
  clear: both;
}

.body9 h2{
    font-size: 25px;
    color: white;
    margin-left: 2rem;
}

/* ريسبونسف للموبايل */


/* From Uiverse.io by himanshu9682 */
.type--A {
  --line_color: #555555;
  --back_color: #ffecf6;
}

.type--B {
  --line_color: #1b1919;
  --back_color: #551414;
}

.type--C {
  --line_color: #000000;
  --back_color: #db04b7;
}

.button {
  position: relative;
  z-index: 0;
  width: 240px;
  height: 56px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: var(--line_color);
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.button__text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.button::before,
.button::after,
.button__text::before,
.button__text::after {
  content: "";
  position: absolute;
  height: 3px;
  border-radius: 2px;
  background: var(--line_color);
  transition: all 0.5s ease;
}

.button::before {
  top: 0;
  left: 54px;
  width: calc(100% - 56px * 2 - 16px);
}

.button::after {
  top: 0;
  right: 54px;
  width: 8px;
}

.button__text::before {
  bottom: 0;
  right: 54px;
  width: calc(100% - 56px * 2 - 16px);
}

.button__text::after {
  bottom: 0;
  left: 54px;
  width: 8px;
}

.button__line {
  position: absolute;
  top: 0;
  width: 56px;
  height: 100%;
  overflow: hidden;
}

.button__line::before {
  content: "";
  position: absolute;
  top: 0;
  width: 150%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 300px;
  border: solid 3px var(--line_color);
}

.button__line:nth-child(1),
.button__line:nth-child(1)::before {
  left: 0;
}

.button__line:nth-child(2),
.button__line:nth-child(2)::before {
  right: 0;
}

.button:hover {
  letter-spacing: 6px;
}

.button:hover::before,
.button:hover .button__text::before {
  width: 8px;
}

.button:hover::after,
.button:hover .button__text::after {
  width: calc(100% - 56px * 2 - 16px);
}

.button__drow1,
.button__drow2 {
  position: absolute;
  z-index: -1;
  border-radius: 16px;
  transform-origin: 16px 16px;
}

.button__drow1 {
  top: -16px;
  left: 40px;
  width: 32px;
  height: 0;
  transform: rotate(30deg);
}

.button__drow2 {
  top: 44px;
  left: 77px;
  width: 32px;
  height: 0;
  transform: rotate(-127deg);
}

.button__drow1::before,
.button__drow1::after,
.button__drow2::before,
.button__drow2::after {
  content: "";
  position: absolute;
}

.button__drow1::before {
  bottom: 0;
  left: 0;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-60deg);
}

.button__drow1::after {
  top: -10px;
  left: 45px;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(69deg);
}

.button__drow2::before {
  bottom: 0;
  left: 0;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-146deg);
}

.button__drow2::after {
  bottom: 26px;
  left: -40px;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-262deg);
}

.button__drow1,
.button__drow1::before,
.button__drow1::after,
.button__drow2,
.button__drow2::before,
.button__drow2::after {
  background: var(--back_color);
}

.button:hover .button__drow1 {
  animation: drow1 ease-in 0.06s;
  animation-fill-mode: forwards;
}

.button:hover .button__drow1::before {
  animation: drow2 linear 0.08s 0.06s;
  animation-fill-mode: forwards;
}

.button:hover .button__drow1::after {
  animation: drow3 linear 0.03s 0.14s;
  animation-fill-mode: forwards;
}

.button:hover .button__drow2 {
  animation: drow4 linear 0.06s 0.2s;
  animation-fill-mode: forwards;
}

.button:hover .button__drow2::before {
  animation: drow3 linear 0.03s 0.26s;
  animation-fill-mode: forwards;
}

.button:hover .button__drow2::after {
  animation: drow5 linear 0.06s 0.32s;
  animation-fill-mode: forwards;
}

@keyframes drow1 {
  0% {
    height: 0;
  }

  100% {
    height: 100px;
  }
}

@keyframes drow2 {
  0% {
    width: 0;
    opacity: 0;
  }

  10% {
    opacity: 0;
  }

  11% {
    opacity: 1;
  }

  100% {
    width: 120px;
  }
}

@keyframes drow3 {
  0% {
    width: 0;
  }

  100% {
    width: 80px;
  }
}

@keyframes drow4 {
  0% {
    height: 0;
  }

  100% {
    height: 120px;
  }
}

@keyframes drow5 {
  0% {
    width: 0;
  }

  100% {
    width: 124px;
  }
}

.container {
  width: 100%;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
position: relative;
bottom: 10rem;
left: -230px;
}

.button:not(:last-child) {
  margin-bottom: 64px;
}
/* ريسبونسف للجوال */
@media (max-width: 768px) {
  .body9 {
    padding: 3rem;
    text-align: center; /* يخلي النص في الوسط */
  }

  .body9 img {
    float: none;
    display: block;
    margin: 1rem auto;
    height: auto;
    max-width: 90%;
  }

  .body9 h2 {
    margin: 1rem 0;
    font-size: 20px;
  }

  .container {
    position: static; /* يخليها ترجع مكانها الطبيعي */
    left: 0;
    bottom: 0;
    width: 700%;
    height: auto;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .button {
    width: 80%;
    height: 50px;
    font-size: 12px;
    letter-spacing: 1px;
  }

  .button:not(:last-child) {
    margin-bottom: 1rem;
  }
}

.khlsna{width: 400px;
  height: 650px;
  margin-right: 3rem;
  
float: right;}
.body4{background-color: rgb(146, 210, 240);
padding: 2rem;
margin-top: 2rem;
margin-bottom: 2rem;
  overflow: hidden;
  display: flex ;
  align-items: center;

}
.body4 h2{color: white;
  text-align: center;
  width: 50%;
  margin-left: 8rem;
}
.khlsna {
  width: 350px;
  height: 600px;
  margin-right: 3rem;
  flex-shrink: 0;
}

.body4 {
  background-color:#da3989;
  padding: 2rem;
  margin: 2rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-radius: 10px;
}

.body4 h2 {
  color: white;
  text-align: center;
  width: 50%;
  margin: 0;
  margin-left: 8rem;
}

/* --- Responsive لموبايل --- */
@media (max-width: 768px) {
  .body4 {
    flex-direction: column; /* يجعل الفيديو والنص تحت بعض */
    padding: 1.5rem;
    gap: 1rem;
    text-align: center;
  }

  .khlsna {
    width: 80%; /* الفيديو ياخذ كامل العرض */
    height: auto;
    margin-right: 0;
  }

  .body4 h2 {
    width: 100%;
    margin-left: 0;
    font-size: 1.2rem;
  }
}


.body3 {
  background-color: rgb(146, 210, 240);
  width: 100%;
  height: auto;
  margin-top: 8rem;
}

/* From Uiverse.io by himanshu9682 */
.type--A {
  --line_color: #555555;
  --back_color: #ffecf6;
}

.type--B {
  --line_color: #1b1919;
  --back_color: #551414;
}

.type--C {
  --line_color: #000000;
  --back_color: #db04b7;
}

.button {
  position: relative;
  z-index: 0;
  width: 240px;
  height: 56px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: var(--line_color);
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.button__text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.button::before,
.button::after,
.button__text::before,
.button__text::after {
  content: "";
  position: absolute;
  height: 3px;
  border-radius: 2px;
  background: var(--line_color);
  transition: all 0.5s ease;
}

.button::before {
  top: 0;
  left: 54px;
  width: calc(100% - 56px * 2 - 16px);
}

.button::after {
  top: 0;
  right: 54px;
  width: 8px;
}

.button__text::before {
  bottom: 0;
  right: 54px;
  width: calc(100% - 56px * 2 - 16px);
}

.button__text::after {
  bottom: 0;
  left: 54px;
  width: 8px;
}

.button__line {
  position: absolute;
  top: 0;
  width: 56px;
  height: 100%;
  overflow: hidden;
}

.button__line::before {
  content: "";
  position: absolute;
  top: 0;
  width: 150%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 300px;
  border: solid 3px var(--line_color);
}

.button__line:nth-child(1),
.button__line:nth-child(1)::before {
  left: 0;
}

.button__line:nth-child(2),
.button__line:nth-child(2)::before {
  right: 0;
}

.button:hover {
  letter-spacing: 6px;
}

.button:hover::before,
.button:hover .button__text::before {
  width: 8px;
}

.button:hover::after,
.button:hover .button__text::after {
  width: calc(100% - 56px * 2 - 16px);
}

.button__drow1,
.button__drow2 {
  position: absolute;
  z-index: -1;
  border-radius: 16px;
  transform-origin: 16px 16px;
}

.button__drow1 {
  top: -16px;
  left: 40px;
  width: 32px;
  height: 0;
  transform: rotate(30deg);
}

.button__drow2 {
  top: 44px;
  left: 77px;
  width: 32px;
  height: 0;
  transform: rotate(-127deg);
}

.button__drow1::before,
.button__drow1::after,
.button__drow2::before,
.button__drow2::after {
  content: "";
  position: absolute;
}

.button__drow1::before {
  bottom: 0;
  left: 0;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-60deg);
}

.button__drow1::after {
  top: -10px;
  left: 45px;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(69deg);
}

.button__drow2::before {
  bottom: 0;
  left: 0;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-146deg);
}

.button__drow2::after {
  bottom: 26px;
  left: -40px;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-262deg);
}

.button__drow1,
.button__drow1::before,
.button__drow1::after,
.button__drow2,
.button__drow2::before,
.button__drow2::after {
  background: var(--back_color);
}

.button:hover .button__drow1 {
  animation: drow1 ease-in 0.06s;
  animation-fill-mode: forwards;
}

.button:hover .button__drow1::before {
  animation: drow2 linear 0.08s 0.06s;
  animation-fill-mode: forwards;
}

.button:hover .button__drow1::after {
  animation: drow3 linear 0.03s 0.14s;
  animation-fill-mode: forwards;
}

.button:hover .button__drow2 {
  animation: drow4 linear 0.06s 0.2s;
  animation-fill-mode: forwards;
}

.button:hover .button__drow2::before {
  animation: drow3 linear 0.03s 0.26s;
  animation-fill-mode: forwards;
}

.button:hover .button__drow2::after {
  animation: drow5 linear 0.06s 0.32s;
  animation-fill-mode: forwards;
}

@keyframes drow1 {
  0% {
    height: 0;
  }

  100% {
    height: 100px;
  }
}

@keyframes drow2 {
  0% {
    width: 0;
    opacity: 0;
  }

  10% {
    opacity: 0;
  }

  11% {
    opacity: 1;
  }

  100% {
    width: 120px;
  }
}

@keyframes drow3 {
  0% {
    width: 0;
  }

  100% {
    width: 80px;
  }
}

@keyframes drow4 {
  0% {
    height: 0;
  }

  100% {
    height: 120px;
  }
}

@keyframes drow5 {
  0% {
    width: 0;
  }

  100% {
    width: 124px;
  }
}

.mmm {
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.button:not(:last-child) {
  margin-bottom: 64px;
}

.h13 {
  text-align: center;
  color: #defffa;
  text-transform: capitalize;
}

.body3 {
  background-color: rgb(146, 210, 240);
  width: 100%;
  height: auto;
  padding: 40px 0;
  margin-top: 2rem;
}

.social-login-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  -webkit-box-reflect: below 5px linear-gradient(transparent, #00000055);
}

.social-login-icons svg {
  width: 40px;
}

.social-icon-1,
.social-icon-1-1,
.social-icon-2,
.social-icon-2-2,
.social-icon-3,
.social-icon-3-3,
.social-icon-4,
.social-icon-4-4 {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin: 20px 0 0px 0;
}

.icon svg {
  fill: #111;
}

.socialcontainer {
  height: 80px;
  overflow: hidden;
}

.social-icon-1 {
  transition-duration: 0.4s;
  background-color: rgb(0, 0, 0);
  transition-timing-function: cubic-bezier(0.46, -0.78, 0.5, 1.56);
}

.social-icon-1 svg,
.social-icon-2 svg,
.social-icon-3 svg,
.social-icon-4 svg {
  opacity: 0;
  transition-duration: 0.5s;
  transition-delay: 0.2s;
}

.social-icon-1-1 {
  transition-duration: 0.4s;
  background-color: rgb(0, 0, 0, 0);
}

.socialcontainer:hover .social-icon-1 {
  transform: translateY(-70px);
}

.socialcontainer:hover .social-icon-1 svg,
.socialcontainer:hover .social-icon-2 svg,
.socialcontainer:hover .social-icon-3 svg,
.socialcontainer:hover .social-icon-4 svg {
  opacity: 1;
}

.social-icon-2 {
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.46, -0.78, 0.5, 1.56);
  background: linear-gradient(72.44deg,
      #ff7a00 11.92%,
      #ff0169 51.56%,
      #d300c5 85.69%);
}

.socialcontainer:hover .social-icon-2 {
  transform: translateY(-70px);
}

.social-icon-3 {
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.46, -0.78, 0.5, 1.56);
  background: #316ff6;
}

.socialcontainer:hover .social-icon-3 {
  transform: translateY(-70px);
}

.social-icon-4 {
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.46, -0.78, 0.5, 1.56);

  background: linear-gradient(180deg,
      rgba(129, 34, 144, 1) 0%,
      rgba(77, 34, 124, 1) 91%);
}

.socialcontainer:hover .social-icon-4 {
  transform: translateY(-70px);
}

ul {
  list-style: none;
}

.example-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.example-2 .icon-content {
  margin: 0 10px;
  position: relative;
}

.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
}

.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}

.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}

.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}

.example-2 .icon-content a:hover {
  color: white;
}

.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover .filled {
  height: 100%;
}

.example-2 .icon-content a[data-social="whatsapp"] .filled,
.example-2 .icon-content a[data-social="whatsapp"]~.tooltip {
  background-color: #128c7e;
}

.example-2 .icon-content a[data-social="facebook"] .filled,
.example-2 .icon-content a[data-social="facebook"]~.tooltip {
  background-color: #3b5998;
}

.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"]~.tooltip {
  background: linear-gradient(45deg,
      #405de6,
      #5b51db,
      #b33ab4,
      #c135b4,
      #e1306c,
      #fd1f1f);
}

.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"]~.tooltip {
  background-color: #ff0000;
}

.h13 {
  margin-top: 4rem;
}



@media (max-width: 768px) {


  .my h3 {
    width: 90%;
    margin-top: 2rem;
    font-size: 1rem;
  }

  .example-2 {
    margin-right: 2rem;
  }
}

.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"]~.tooltip {
  background-color: #ff0000;
}

.example-2 .icon-content a[data-social="tiktok"] .filled,
.example-2 .icon-content a[data-social="tiktok"]~.tooltip {
  background: black
}

.example-2 .icon-content a[data-social="tiktok"]:hover .filled {
  background: black;
}

.example-2 .icon-content a[data-social="tiktok"] img {
  transition: transform 0.3s ease;
}

.example-2 .icon-content a[data-social="tiktok"]:hover .filled {
  background: white;
  transition: background 0.3s ease;
}

.example-2 .icon-content a[data-social="tiktok"] img {
  transition: transform 0.3s ease;
}

.example-2 .icon-content a[data-social="tiktok"]:hover img {
  transform: scale(1.2);
}

.example-2 .icon-content a[data-social="tiktok"]:hover img {
  transform: scale(3.2);
}

.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"]~.tooltip {
  background-color: #ec3f3f;
}

.example-2 .icon-content a[data-social="youtube"] img {
  transform: scale(1.2);
}

.example-2 .icon-content a[data-social="tiktok"] img {
  transform: scale(1.2);
  /* تكبير دائم */
  transition: transform 0.3s ease;
}

.example-2 .icon-content a[data-social="tiktok"]:hover img {
  transform: scale(1.2);
  /* لا تغيير عند Hover */
}

.example-2 .icon-content a[data-social="tiktok"]:hover .filled {
  background: silver;
  /* خلفية سوداء عند Hover */
}

.final {
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
  gap: 2rem;
  color: #defffa;
  margin-top: 3rem;

}

.location-btn img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.location-btn img:hover {
  transform: scale(1.1);
}

.example-2 {
  margin-top: 0rem;
}

.container {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .final {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .location-btn img {
    width: 30px;
    height: 30px;
  }

  .example-2 {
    margin-top: 1rem;
  }

  .container {
    margin-bottom: 0;
  }
}

.body6 {
  display: flex;
  justify-content: center; /* يوسّط أفقي */
  align-items: center;     /* يوسّط عمودي */
  margin: 0;
  margin-top: 1rem;
    background: linear-gradient(to right, #da3989 ,  rgb(255, 255, 255));
  
}

.body6 .wfr {
  max-width: 90%;   /* علشان الصورة ما تطلعش برا الشاشة */
  max-height: 90%; 
  margin-left: 15rem; /* علشان تظل متناسبة */
}
@media (max-width: 768px) {
  .body6 {
    flex-direction: column; /* يخلي المحتوى تحت بعض */
    padding: 0.5rem;
    margin-top: 1rem;
    padding: 3rem;
  }

  .body6 .wfr {
    max-width: 100%;  /* ياخد عرض الشاشة كله */
    margin-left: 0;   /* إلغاء إزاحة الصورة */
  }
}

.wfr{
    width: 450px;
}
