.navbar {
  background: linear-gradient(to right, rgb(146, 210, 240), #da3989);
  height: 5rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar .logo {
  width: 160px;
  color: white;
  margin-left: 2rem;
}

nav.anav a {
  margin-left: 15px;
}

.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;
}


#carouselExample {
  margin-top: 5rem;

}

#carouselExample .carousel-item img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
}

@media (max-width: 768px) {
  #carouselExample .carousel-item img {
    max-height: 250px;
  }
}


.body2 {
  margin-top: 1rem;
}


.c11,
.c22,
.c33 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 1rem 0;
}

.c11 .c1,
.c22 .c1,
.c33 .c1 {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bolder;
  color: #fff;
  font-size: 50px;
}

.c11 .c1 {
  background-color: #da3989;
  margin-left: 3rem;
}

.c22 .c1 {
  background-color: rgb(146, 210, 240);
  margin-left: 5rem;
}

.c33 .c1 {
  background-color: #da3989;
  margin-left: 3rem;
}

.c11 .h22,
.c22 .h22,
.c33 .h22 {
  margin-left: 1rem;
  font-size: 18px;
  line-height: 1.4;
}

.h12 {
  text-align: center;
  color: #da3989;
}

.c22 {
  margin-left: 20rem;
}

.c33 .c1 {
  background-color: rgb(228, 228, 80);
}


@media (max-width: 768px) {

  .c11,
  .c22,
  .c33 {

    text-align: center;
    margin: 2rem 0;
  }

  .c11 .c1,
  .c22 .c1,
  .c33 .c1 {
    width: 120px;
    height: 120px;
    font-size: 40px;
    margin-left: 0;
  }

  .c11 .h22,
  .c22 .h22,
  .c33 .h22 {
    margin-left: 0;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {

  .c11 .c1,
  .c22 .c1,
  .c33 .c1 {
    width: 100px;
    height: 100px;
    font-size: 30px;
  }

  .c11 .h22,
  .c22 .h22,
  .c33 .h22 {
    font-size: 14px;
  }

  .c33 h1 {
    width: 50%;
  }
}


@media (max-width: 768px) {
  .y2 {
    content: url("slideifrute.jpg");

  }

  .y1 {
    content: url("slide2.jpg");

  }

  .h12 {
    margin-left: 3rem;


  }
}

.body3 {
  background-color: rgb(146, 210, 240);
  width: 100%;
  height: auto;
}

/* 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: 300px;
  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;
}

.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;
}

.img6 {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding: 0 90px;
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-columns: repeat(2.150px);
}

@media (max-width: 768px) {
  .img6 {
    padding: 0 20px;
    gap: 14px;
    grid-template-columns: 1fr;
    /* موبايل: فوق بعض */
    margin-top: 2rem;
  }
}

.img6 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;




}

.container {
  margin: 0;
}

.body9 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 80vh;
  background: linear-gradient(to right, rgb(146, 210, 240), #da3989);
  column-gap: 4rem;
}

.body9 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(to right, rgb(146, 210, 240), #da3989);
  padding: 3rem;
}

.body9 .card {
  width: 18rem;
  height: auto;
  margin-bottom: 6rem;
}

@media (max-width: 768px) {
  .body9 .img {
    width: 90%;
    padding: 0 2rem 0 0;
  }

  .body9 {
    height: 80rem;
  }

  .body9 h1 {
    color: white;
  }
}

.body4 h1 {
  margin-top: 4rem;
}

.body9 img {
  width: 300px;
}

.body8 {
  width: 100%;
  height: 100vh;
  background: rgb(146, 210, 240);
  margin-top: 3rem;
  padding: 4.5rem;
}

.body8 h1 {
  color: white;
  border: white 5px solid;
  width: 40%;
  padding: 6px;
  text-align: center;
  margin-left: 23rem;
}

.body8 img {
  width: 300px;
  height: auto;
  margin: 3rem auto 0 auto;
}

.my {
  display: flex;
}

.my h3 {
  margin-top: 8rem;
  width: 50%;
  color: white;
}

@media (max-width: 768px) {
  .body8 {
    padding: 2rem;
    height: auto;
  }

  .body8 h1 {
    width: 90%;
    margin-left: 0;
    font-size: 1.5rem;
    margin: 0 auto;
  }

  .body8 img {
    width: 200px;
    margin: 2rem auto 0 auto;
  }

  .my {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .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 {
  height: 150px;
}

@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;
  }
}