@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--secondary);
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Lato", sans-serif;
  background-color: #fff5f8;
}
.contenar {
  width: 90%;
  margin: auto;
}
:root {
  /* الألوان */
  --primary: #e84665;
  --secondary: #2e1642;
  --accent: #dbdadc;
  --dark: #030303;
  --light: #fff;
  /* أحجام الخطوط */
  --size-hero: 72px;
  --size-section-title: 36px;
  --size-text: 18px;
  --size-small-text: 14px;
  --size-fancy: 40px;
  --size-logo: 42px;
}
@media (max-width: 768px) {
  :root {
    --size-hero: 48px;
    --size-section-title: 28px;
    --size-text: 16px;
    --size-small-text: 12px;
    --size-fancy: 32px;
    --size-logo: 36px;
  }
}

/* ************************************************************ */
/* Navbar */
/* Navbar Base */
.main-navbar {
  position: fixed; /* يجعلها ثابتة مع الشاشة */
  top: 0;
  width: 100%;
  padding: 10px 0px;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}
/* عند التمرير */
.main-navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.6); /* نصف شفاف */
  backdrop-filter: blur(10px); /* تأثير blur على الخلفية */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo img {
  height: 40px; /* اضبط حسب حجم اللوغو المطلوب */
  cursor: pointer;
  transition: transform 0.3s;
}
.navbar .logo img:hover {
  transform: scale(1.05); /* تأثير بسيط عند المرور */
}
.navbar .menu {
  display: flex;
  list-style: none;
  gap: 30px;
}
/* نفس إعدادات الروابط والـ pseudo-elements */
.navbar .menu li a {
  position: relative;
  text-decoration: none;
  color: var(--secondary);
  font-size: 16px;
  font-weight: 700;
  transition: color 0.3s ease;
  padding: 5px 0;
}
.navbar .menu li a::before,
.navbar .menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.navbar .menu li a::before {
  top: 0;
  transform-origin: left;
}
.navbar .menu li a::after {
  bottom: 0;
  transform-origin: right;
}
/* Hover effect */
.navbar .menu li a:hover {
  color: var(--primary);
}
.navbar .menu li a:hover::before,
.navbar .menu li a:hover::after {
  transform: scaleX(1);
}
/* Active link */
.navbar .menu li a.active {
  color: var(--primary); /* لون الرابط النشط */
}
.navbar .menu li a.active::before,
.navbar .menu li a.active::after {
  transform: scaleX(1); /* يظهر البوردر أعلى وأسفل بشكل دائم */
}
.data-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn {
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary);
  font-size: 16px;
  font-weight: 700;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  text-decoration: none; /* مهم للـ <a> */
  color: var(--light); /* يمكن تغييره حسب التصميم */
  transition: all 1s;
}
.btn::after,
.btn::before {
  content: " ";
  width: 10px;
  height: 10px;
  position: absolute;
  transition: all 1s;
}
.btn::after {
  top: -1px;
  left: -1px;
  border-top: 5px solid var(--secondary);
  border-left: 5px solid var(--secondary);
}
.btn::before {
  bottom: -1px;
  right: -1px;
  border-bottom: 5px solid var(--secondary);
  border-right: 5px solid var(--secondary);
}
.btn:hover {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  background-color: var(--secondary);
}
.btn:hover::after,
.btn:hover::before {
  width: 100%;
  height: 100%;
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--dark);
  border-radius: 3px;
}
/* Mobile Menu Fullscreen - Slide Down */
.mobile-menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6); /* نصف شفاف */
  backdrop-filter: blur(8px); /* تأثير blur على الخلفية */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: top 0.5s ease-in-out;
  z-index: 9999; /* فوق أي شيء */
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
.mobile-menu ul li {
  margin: 20px 0;
}
.mobile-menu ul li a {
  font-size: 3rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--dark);
}
.mobile-menu ul li a.btn-primary {
  padding: 15px 30px;
  font-size: 1.5rem;
  border-radius: 10px;
}
/* Close Button */
.mobile-menu .close-menu {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  cursor: pointer;
  color: var(--dark);
  font-weight: bold;
}
/* Responsive */
@media (max-width: 768px) {
  .navbar .menu,
  .navbar .data-container {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .navbar .logo img {
    height: 30px;
  }
  .main-navbar {
    padding: 15px 0px;
  }
}
/* End Navbar */
/* ************************************************************ */
/* Hero Section */
.hero-section {
  display: flex;
  justify-content: center; /* مركزي أفقيًا */
  align-items: center; /* مركزي عموديًا */
  padding: 80px 0;
  background-color: #fff5f8;
}
.hero-container {
  background-color: var(--light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center; /* يجعل العنوان في الوسط */
  gap: 40px;
  padding: 25px 0;
}
/* العنوان */
.hero-title {
  font-size: 110px;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: -120px;
}
.gradient-text {
  background: linear-gradient(90deg, #e84665, #ff7eb3, #2e1642);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
/* محتوى النص والصورة */
.hero-content {
  display: flex;
  justify-content: space-between; /* مركزي العناصر */
  align-items: center;
  gap: 50px;
  padding: 0 25px 0 50px;
}
/* النص على اليسار */
.hero-text {
  width: 45%;
  text-align: start;
  color: var(--secondary);
  padding-top: 80px;
}
.hero-text h2 {
  font-size: 80px;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 30px;
}
.hero-text p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 60px;
}

/* الأساس — نفس ستايل الزر في الناف بار */
.btn-outline {
  cursor: pointer;
  position: relative;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 900;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: all 0.8s;
  display: inline-block;
  color: var(--secondary);
  text-decoration: none;
}
/* الخطوط المتحركة */
.btn-outline::after,
.btn-outline::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  transition: all 0.8s;
  border: 0px solid #000;
}
.btn-outline::after {
  top: -1px;
  left: -1px;
  border-top: 4px solid var(--secondary);
  border-left: 4px solid var(--secondary);
}
.btn-outline::before {
  bottom: -1px;
  right: -1px;
  border-bottom: 4px solid var(--secondary);
  border-right: 4px solid var(--secondary);
}
/* انيميشن الهوفر */
.btn-outline:hover {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.btn-outline:hover::before,
.btn-outline:hover::after {
  width: 100%;
  height: 100%;
}
/* تخصيص الخلفيات */
.btn-one {
  /* الزر الأول */
  background: #fff;
  margin-left: 30px;
}
.btn-two {
  /* الزر الثاني */
  background: var(--primary);
  color: var(--light);
}
.btn-two::after {
  border-top-color: var(--secondary);
  border-left-color: var(--secondary);
}
.btn-two::before {
  border-bottom-color: var(--secondary);
  border-right-color: var(--secondary);
}
/* عند الهوفر للزر الثاني نغير لون الخلفية */
.btn-two:hover {
  background: var(--secondary);
}
.hero-image {
  width: 55%;
}
/* الصورة على اليمين */
.hero-image img {
  width: 100%;
  transition: 0.3s;
  position: relative;
  z-index: 9;
}
.glitch {
  animation: glitch 0.4s steps(2, end);
}

@keyframes glitch {
  0% {
    transform: translate(0);
    filter: hue-rotate(0deg);
  }
  20% {
    transform: translate(-6px, 4px);
    filter: hue-rotate(50deg);
  }
  40% {
    transform: translate(6px, -4px);
    filter: hue-rotate(-50deg);
  }
  60% {
    transform: translate(-4px, 2px);
    filter: hue-rotate(30deg);
  }
  80% {
    transform: translate(4px, -2px);
    filter: hue-rotate(-30deg);
  }
  100% {
    transform: translate(0);
    filter: hue-rotate(0deg);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 0 0;
  }
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-title {
    font-size: 25px;
    margin-bottom: -50px;
  }
  .hero-content {
    gap: 50px;
    padding: 0 10px;
    flex-direction: column-reverse;
  }
  .hero-text {
    width: 100%;
    text-align: center;
    padding-top: 0px;
  }
  .hero-text h2 {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .hero-text p {
    font-size: 14px;
    margin-bottom: 55px;
  }
  .hero-image {
    width: 100%;
  }
}
/* End Hero Section */
/* ************************************************************ */
/* About */
.about-section {
  padding: 0 0 60px 0;
  background-color: #fff5f8;
}
.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.about-text {
  width: 55%;
  color: var(--secondary);
}
.about-title {
  font-size: 80px;
  font-weight: 900;
  margin-bottom: 25px;
  margin-top: -60px;
  color: var(--secondary);
}
.about-text p {
  font-size: 18px;
  line-height: 1.7;
}
.about-image {
  width: 45%;
  position: relative;
  display: inline-block;
  text-align: center;
}
.about-image img {
  width: 90%;
  text-align: end;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 4px 6px rgba(0, 0, 0, 0.2);
}
.circle-badge {
  position: absolute;
  top: 200px;
  left: 0;
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  /* إضافة شادو */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 4px 6px rgba(0, 0, 0, 0.2);
}
.circle-badge .icon {
  font-size: 40px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.circle-text {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  animation: rotateText 9s linear infinite;
  text-align: center;
  pointer-events: none;
}
/* عشان يخلي النص يلف بشكل دائري */
.circle-text span {
  position: absolute;
  transform-origin: 0 60px;
}
/* الحركة */
@keyframes rotateText {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 768px) {
  .about-section {
    padding: 50px 0 0 0;
  }
  .about-content {
    flex-direction: column-reverse;
    gap: 10px;
    margin-top: -50px;
  }
  .about-text {
    width: 100%;
  }
  .about-title {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .about-text p {
    font-size: 14px;
  }
  .about-image {
    width: 100%;
  }
  .about-image img {
    width: 100%;
  }
  .circle-badge {
    top: 100px;
    left: -25px;
  }
}
/* End About */
/* ************************************************************ */
/* Services */
.services-section {
  padding: 80px 0;
  background: #fff5f8;
  overflow-x: hidden;
}
/* Layout */
.services-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.services-left {
  width: 80%;
  margin: auto;
  text-align: center;
}
/* Title */
.services-left h2 {
  font-size: 80px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--secondary);
}
.services-left p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 70px;
  color: var(--secondary);
}
/* Slider */
.slider {
  overflow: hidden;
  position: relative;
  user-select: none;
  margin-top: -100px;
}
/* تأثير الغبار يمين ويسار */
.slider::before,
.slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 130px; /* لو عايز التأثير أوسع زوّد الرقم */
  height: 100%;
  z-index: 5;
  pointer-events: none;
}
.slider::before {
  left: 0;
  background: linear-gradient(
    to right,
    #fff5f8 0%,
    rgba(255, 245, 248, 0.4) 50%,
    rgba(255, 245, 248, 0) 100%
  );
}
.slider::after {
  right: 0;
  background: linear-gradient(
    to left,
    #fff5f8 0%,
    rgba(255, 245, 248, 0.4) 50%,
    rgba(255, 245, 248, 0) 100%
  );
}
.slide-track {
  display: flex;
  gap: 10px;
  align-items: center;
  will-change: transform;
  transform: translateX(0);
}
.slide {
  flex: 0 0 calc(30.333% - 40px);
  margin: 0 10px;
  text-align: center;
}
.slide img {
  width: 100%;
  display: block;
}
.slide h4 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-300px * 6));
  }
}
@media (max-width: 768px) {
  .services-section {
    padding: 50px 0;
  }
  .services-wrapper {
    flex-direction: column;
  }
  .services-left {
    width: 100%;
  }
  .services-left h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .services-left p {
    font-size: 14px;
    margin-bottom: 0px;
  }
  .services-right {
    width: 100%;
  }
  .slider {
    margin-top: 0px;
  }
  .slide {
    flex: 0 0 calc(70.333% - 40px);
  }
  .slide h4 {
    font-size: 18px;
  }
}
/* End Services */
/* ************************************************************ */
/* Categories */
.categories-section {
  padding: 80px 0;
  background: #fff5f8;
}
.category-slider {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  padding: 50px 0;
  background-color: var(--secondary); /* اللون فقط */
  overflow: hidden;
}
/* الخلفية صورة ثابتة */
.category-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/img/bk.png");
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: right bottom;
  opacity: 0.3;
  z-index: 0; /* تحت المحتوى */
  border-radius: inherit;
}
/* محتوى السلايدر فوق الصورة واللون */
.category-slider > * {
  position: relative;
  z-index: 1;
}
.category-slide {
  display: none;
  /* align-items: center; */
  gap: 50px;
}
.category-slide.active {
  display: flex;
}
.cat-image {
  width: 50%;
  padding-left: 60px;
}
/* الصورة الأصلية */
.cat-image img {
  width: 100%;
  transform: scale(1); /* الحالة الأصلية */
  border-radius: 60px;
  transition: transform 0.8s ease, opacity 0.9s ease;
  opacity: 0; /* نضيف البداية شفاف */
}
/* عند تغيير السلايد وإضافة الكلاس show-img */
.cat-image img.show-img {
  transform: scale(1); /* زوم إن سلس */
  opacity: 1; /* ظهور تدريجي */
}
.cat-info {
  width: 50%;
}
/* النص */
.cat-title {
  font-size: 80px;
  font-weight: 900;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.6s;
  color: var(--light);
}
.cat-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--accent);
  max-width: 500px;
  margin-bottom: 35px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s;
}
/* الزر */
.cat-btn {
  display: inline-block;
  padding: 14px 34px;
  background: var(--primary);
  color: white;
  font-weight: 700;
  border-radius: 12px;
  font-size: 18px;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.7s;
  margin-right: 15px;
}
.btn22 {
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary);
  font-size: 16px;
  font-weight: 700;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  text-decoration: none; /* مهم للـ <a> */
  color: var(--light); /* يمكن تغييره حسب التصميم */
  transition: all 1s;
}
.btn22::after,
.btn22::before {
  content: " ";
  width: 10px;
  height: 10px;
  position: absolute;
  transition: all 1s;
}
.btn22::after {
  top: -1px;
  left: -1px;
  border-top: 5px solid var(--light);
  border-left: 5px solid var(--light);
}
.btn22::before {
  bottom: -1px;
  right: -1px;
  border-bottom: 5px solid var(--light);
  border-right: 5px solid var(--light);
}
.btn22:hover {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  background-color: var(--secondary);
}
.btn22:hover::after,
.btn22:hover::before {
  width: 100%;
  height: 100%;
}
.cat-btn2 {
  display: inline-block;
  padding: 14px 34px;
  background: var(--primary);
  color: white;
  font-weight: 700;
  border-radius: 12px;
  font-size: 18px;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.7s;
}
.show-btn2 {
  opacity: 1;
  transform: translateY(0);
}

.btn222 {
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background: var(--secondary);
  font-size: 16px;
  font-weight: 700;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  text-decoration: none; /* مهم للـ <a> */
  color: var(--light); /* يمكن تغييره حسب التصميم */
  transition: all 1s;
}
.btn222::after,
.btn222::before {
  content: " ";
  width: 10px;
  height: 10px;
  position: absolute;
  transition: all 1s;
}
.btn222::after {
  top: -1px;
  left: -1px;
  border-top: 5px solid var(--light);
  border-left: 5px solid var(--light);
}
.btn222::before {
  bottom: -1px;
  right: -1px;
  border-bottom: 5px solid var(--light);
  border-right: 5px solid var(--light);
}
.btn222:hover {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  background-color: var(--secondary);
}
.btn222:hover::after,
.btn222:hover::before {
  width: 100%;
  height: 100%;
}

/* 📌 Indicators (شرطة + نقط + نقط + نقط) */
.cat-dots {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 20;
}
.cat-dots .dot {
  width: 12px;
  height: 4px;
  background: #c7c7c7;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.4s ease;
}
.cat-dots .dot.active {
  width: 40px;
  background: var(--primary);
}
/* ✨ أنيميشن عند ظهور السلايد */
.show-img {
  transform: scale(1.12);
}
.show-title {
  opacity: 1;
  transform: translateY(0);
}
.show-text {
  opacity: 1;
  transform: translateY(0);
}
.show-btn {
  opacity: 1;
  transform: scale(1);
}
/* Responsive */
@media (max-width: 768px) {
  .categories-section {
    padding: 10px 0;
  }
  .category-slider {
    border-radius: 60px;
    padding: 25px;
  }
  .category-slide {
    flex-direction: column;
    text-align: center;
  }
  .category-slider::before {
    background-size: 70%;
    opacity: 0.2;
  }
  .cat-image {
    width: 100%;
    padding-left: 0px;
  }
  .cat-image img {
    border-radius: 40px;
  }
  .cat-info {
    width: 100%;
  }
  .cat-title {
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 15px;
  }
  .cat-text {
    font-size: 14px;
  }
  .cat-dots .dot.active {
    width: 25px;
  }
}
/* End Categories */
/* ************************************************************ */
/* Menu */
.menu-section {
  padding: 80px 0;
  background: #fff5f8;
}
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.menu-title {
  font-size: 80px;
  font-weight: 900;
  color: var(--secondary);
}
.menu-action {
  display: flex;
  align-items: center;
  gap: 20px;
}
.menu-action .line {
  width: 50px;
  height: 2px;
  background: var(--primary);
}
/* تنسيق البوب أب */
.submenu-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.281);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.submenu-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  max-height: 80%;
  overflow-y: auto;
  position: relative;
}
.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
}
/* قائمة المنيو */
.submenu-items p {
  display: flex;
  justify-content: space-between; /* الاسم على الشمال والسعر على اليمين */
  align-items: center;
  margin: 10px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd; /* خط فاصل */
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.submenu-items span.price {
  font-weight: bold;
}
.btn33 {
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary);
  font-size: 16px;
  font-weight: 700;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  text-decoration: none; /* مهم للـ <a> */
  color: var(--light); /* يمكن تغييره حسب التصميم */
  transition: all 1s;
}
.btn33::after,
.btn33::before {
  content: " ";
  width: 10px;
  height: 10px;
  position: absolute;
  transition: all 1s;
}
.btn33::after {
  top: -1px;
  left: -1px;
  border-top: 5px solid var(--secondary);
  border-left: 5px solid var(--secondary);
}
.btn33::before {
  bottom: -1px;
  right: -1px;
  border-bottom: 5px solid var(--secondary);
  border-right: 5px solid var(--secondary);
}
.btn33:hover {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  background-color: var(--secondary);
}
.btn33:hover::after,
.btn33:hover::before {
  width: 100%;
  height: 100%;
}
.menu-main {
  display: flex;
  gap: 40px;
}
.menu-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.menu-item img {
  width: 200px;
}
.menu-info {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  flex: 1;
}
.menu-info h3 {
  font-size: 24px;
  color: var(--secondary);
  font-weight: 800;
}
.menu-info p {
  font-size: 16px;
  margin: 10px 0;
}
.open-submenu {
  padding: 8px 20px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  font-weight: 700;
}
/* Pop-up */
.submenu-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.submenu-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  width: 80%;
  max-width: 900px;
  position: relative;
}
.close-popup {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .menu-section {
    padding: 50px 0;
  }
  .menu-header {
    flex-direction: column;
  }
  .menu-title {
    font-size: 25px;
    margin-bottom: 30px;
  }
  .menu-main {
    flex-direction: column;
  }
  .menu-item img {
    width: 120px;
  }
  .menu-info h3 {
    font-size: 18px;
  }
  .menu-info p {
    font-size: 14px;
    margin: 15px 0;
  }
}
/* End Menu */
/* ************************************************************ */
/* Contact */
.contact-section {
  padding: 80px 0;
  background: #fff5f8;
}
.contact-title {
  text-align: center;
  font-size: 80px;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 80px;
}
.contact-boxes {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
.contact-box {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 25px 30px;
  width: 32%;
  text-align: center;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  display: block;
  text-decoration: none; /* يشيل خط اللينك */
  color: inherit;
}
.contact-box:hover {
  transform: translateY(-8px);
  box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.15);
}
.contact-box .icon {
  width: 85px;
  height: 85px;
  background: #e84665; /* لو حابب تخليه primary color قول */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
  color: #fff;
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
}
.contact-box h3 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
}
.contact-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}
.map {
  margin-top: 70px;
  border-radius: 20px;
  overflow: hidden;
}
/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 0;
  }
  .contact-title {
    font-size: 25px;
  }
  .contact-boxes {
    flex-direction: column;
    gap: 65px;
  }
  .contact-box {
    border-radius: 20px;
    width: 100%;
  }
  .contact-box h3 {
    font-size: 18px;
  }
  .contact-box p {
    font-size: 14px;
  }
  .map {
    margin-top: 50px;
  }
}
/* End Contact */
/* ************************************************************ */
/* Footer */
.site-footer {
  padding: 0px 0px 40px 0px;
  background: #fff5f8;
  color: #fff;
}
.footer-inner {
  background-color: var(--primary);
  padding: 15px 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-left {
  width: 40%;
}
/* left (copyright) */
.footer-left p {
  margin: 0;
  font-size: 15px;
  opacity: 0.95;
}
/* center (logo) */
.footer-center {
  width: 20%;
  text-align: center;
}
.footer-logo {
  height: 65px;
  object-fit: contain;
  display: inline-block;
}
/* right (follow + icons) */
.footer-right {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 14px;
}
.follow-text {
  font-weight: 700;
  margin-right: 6px;
}
/* social icons - white border circles */
.social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.social-link {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff; /* white border */
  color: #fff;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}
.social-link i {
  font-size: 16px;
}
/* hover effect */
.social-link:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .site-footer {
    padding: 0px 0px 20px 0px;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 15px 0;
  }
  .footer-right {
    width: 100%;
    justify-content: center;
  }
  .footer-left p {
    font-size: 14px;
  }
  .footer-left {
    width: 40%;
    width: 100%;
  }
  .footer-center {
    width: 100%;
    text-align: center;
  }
}
/* End Footer */
/* *********************************************************** */
/* MAIN SLIDER */
.scroll-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
/* SLIDE */
.scroll-slide {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: grayscale(20%);
}
.scroll-slide.show {
  opacity: 1;
  animation: waveMove 1.2s ease-in-out;
}
.scroll-slide.hide {
  opacity: 0;
}
/* SLIDE ANIMATION */
@keyframes waveMove {
  0% {
    filter: blur(16px) brightness(0.6);
    transform: scale(1.12);
  }
  50% {
    filter: blur(8px) brightness(0.9);
    transform: scale(1.06);
  }
  100% {
    filter: blur(0) brightness(1);
    transform: scale(1);
  }
}
/* IMAGE 2 (UNDER MAIN IMAGE) */
.scroll-slide::before {
  content: "";
  width: 300px;
  height: 200px;
  background-image: var(--img2);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 41%;
  top: 50%;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 1.1s ease-in-out, opacity 1.1s;
  position: absolute;
  z-index: 1;
  filter: opacity(60%);
}
.scroll-slide.show::before {
  transform: translateY(150px);
  opacity: 1;
}
.scroll-slide.hide::before {
  transform: translateY(120%);
  opacity: 0;
}
/* ---- MAIN IMAGE CAN (قابل للتخصيص عبر CSS variables) ---- */
.scroll-slide::after {
  content: "";
  position: absolute; /* مهم: لجعل left/top تعمل */
  left: var(--img-left, 70%); /* تحكم أفقي (قيمة افتراضية 70%) */
  top: var(--img-top, 50%); /* تحكم رأسي (قيمة افتراضية 50%) */
  width: var(--img-width, 420px);
  height: var(--img-height, 420px);
  background-image: var(--img);
  background-size: var(--img-fit, contain); /* contain / cover / auto */
  background-repeat: no-repeat;
  background-position: var(--img-position, center); /* داخل العنصر */
  z-index: 2;

  /* الحركة: نستخدم translate(-50%,-50%) لمركزة العنصر على left/top
     ثم نضيف translateX متغيرة لحركة الدخول/الخروج */
  transform: translate(-50%, -50%) translateX(var(--img-anim, 120%));
  opacity: 0;
  transition: transform 1.1s ease-in-out, opacity 1.1s;
}

/* عند الظهور نضبط المتغير المسؤول عن الحركة إلى 0 */
.scroll-slide.show::after {
  --img-anim: 0; /* يدخل للمكان المحدد */
  opacity: 1;
}

/* عند الاختفاء نقدر نستخدم قيمة سالبة للخروج لليسار (أو غيرها) */
.scroll-slide.hide::after {
  --img-anim: -120%;
  opacity: 0;
}
.scroll-slide.slide-1 {
  --img: url("assets/tr (3).png");
  --img-width: 400px;
  --img-height: 400px;
  --img-left: 50%;
  --img-top: 50%;
  --img-position: center;
  --img-fit: contain;
}

/* Slide 2: صورة أقرب للمنتصف */
.scroll-slide.slide-2 {
  --img: url("assets/tr (2).png");
  --img-width: 400px;
  --img-height: 400px;
  --img-left: 50%;
  --img-top: 50%;
}

/* Slide 3: صورة أكثر يمينًا وأعلى شوية */
.scroll-slide.slide-3 {
  --img: url("assets/tr (1).png");
  --img-width: 400px;
  --img-height: 400px;
  --img-left: 50%;
  --img-top: 50%;
}

/* FOOTER FULL WIDTH IMAGE */
.slide-bottom-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 250px;
  background-image: var(--img3);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 1.1s ease-in-out;
  z-index: 9;
  filter: blur(5px);
}
.scroll-slide.show .slide-bottom-img {
  transform: translateY(0);
  opacity: 1;
}
.scroll-slide.hide .slide-bottom-img {
  transform: translateY(100%);
  opacity: 0;
}

/* TEXT */
.slide-info {
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%) translateX(-100px);
  max-width: 500px;
  opacity: 0;
  transition: all 1.1s ease-in-out;
  z-index: 10;
}
.slide-info h1 {
  font-size: 55px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--secondary);
}
.slide-info p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
  color: var(--secondary);
}
.slide-info button {
  padding: 12px 24px;
  font-size: 1rem;
  background-color: #ff3b3f;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.slide-info button:hover {
  background-color: #e63236;
}
.scroll-slide.show .slide-info {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.scroll-slide.hide .slide-info {
  opacity: 0;
  transform: translateY(-50%) translateX(-120px);
}

/* BACKGROUND TITLE */
.slide-big-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12vw;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.103);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  animation: moveBgTitle 8s ease-in-out infinite alternate;
}
@keyframes moveBgTitle {
  0% {
    transform: translate(-50%, -50%) translateX(-20px);
  }
  50% {
    transform: translate(-50%, -50%) translateX(20px);
  }
  100% {
    transform: translate(-50%, -50%) translateX(-20px);
  }
}

/* FLOATING ICONS */
.float-icon {
  position: absolute;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
  transition: all 1s ease-in-out;
}

/* FLOAT ANIMATIONS */
@keyframes float1 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -15px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes float2 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-25px, 10px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes float3 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(15px, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes float4 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-15px, -20px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes float5 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(25px, 15px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* =========================
   Float icons for hero slides
========================= */

/* قاعدة عامة لكل الفلوات */
.scroll-slide .float-icon {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none; /* تمرير اللمس للسلايدر */
  opacity: 1;
  transition: all 0.9s ease;
}
/* Slide 1 icons */
.scroll-slide:nth-child(1) .float-icon:nth-child(3) {
  top: 20%;
  left: 25%;
  width: 180px;
  height: 180px;
  z-index: 9;
  background-image: url("assets/fl (1).png");
  animation: float1 6s infinite;
}
.scroll-slide:nth-child(1) .float-icon:nth-child(4) {
  top: 60%;
  left: 30%;
  width: 130px;
  height: 130px;
  background-image: url("assets/fl (2).png");
  animation: float2 7s infinite;
}
.scroll-slide:nth-child(1) .float-icon:nth-child(5) {
  top: 40%;
  left: 65%;
  width: 100px;
  height: 100px;
  filter: blur(2px);
  background-image: url("assets/fl (3).png");
  animation: float3 8s infinite;
}
/* Slide 2 icons */
.scroll-slide:nth-child(2) .float-icon:nth-child(3) {
  top: 25%;
  left: 30%;
  width: 180px;
  height: 180px;
  z-index: 9;
  background-image: url("assets/as (2).png");
  animation: float1 7s infinite;
}
.scroll-slide:nth-child(2) .float-icon:nth-child(4) {
  top: 50%;
  left: 55%;
  width: 160px;
  height: 160px;
  background-image: url("assets/as (5).png");
  animation: float2 8s infinite;
}
.scroll-slide:nth-child(2) .float-icon:nth-child(5) {
  top: 65%;
  left: 40%;
  width: 80px;
  height: 80px;
  filter: blur(2px);
  background-image: url("assets/as (1).png");
  animation: float3 9s infinite;
}
.scroll-slide:nth-child(2) .float-icon:nth-child(6) {
  top: 35%;
  left: 60%;
  width: 140px;
  height: 140px;
  background-image: url("assets/as (8).png");
  animation: float4 10s infinite;
}
/* Slide 3 icons */
.scroll-slide:nth-child(3) .float-icon:nth-child(3) {
  top: 30%;
  left: 35%;
  width: 150px;
  height: 150px;
  background-image: url("assets/go (3).png");
  animation: float1 6s infinite;
}
.scroll-slide:nth-child(3) .float-icon:nth-child(4) {
  top: 60%;
  left: 50%;
  width: 145px;
  height: 145px;
  background-image: url("assets/go (2).png");
  animation: float2 7s infinite;
}
.scroll-slide:nth-child(3) .float-icon:nth-child(5) {
  top: 45%;
  left: 65%;
  width: 120px;
  height: 120px;
  filter: blur(4px);
  background-image: url("assets/go (1).png");
  animation: float3 8s infinite;
}
@media (max-width: 768px) {
  .slide-info {
    left: 0%;
    top: 30%;
    max-width: 100%;
    padding: 0 20px;
    text-align: center;
  }
  .slide-info h1 {
    font-size: 35px;
    margin-bottom: 15px;
  }
  .slide-info p {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .scroll-slide.slide-1 {
    --img: url("assets/tr (3).png");
    --img-width: 270px;
    --img-height: 270px;
    --img-left: 50%;
    --img-top: 65%;
    --img-position: center;
    --img-fit: contain;
  }
  /* Slide 2: صورة أقرب للمنتصف */
  .scroll-slide.slide-2 {
    --img: url("assets/tr (2).png");
    --img-width: 270px;
    --img-height: 270px;
    --img-left: 50%;
    --img-top: 65%;
  }
  /* Slide 3: صورة أكثر يمينًا وأعلى شوية */
  .scroll-slide.slide-3 {
    --img: url("assets/tr (1).png");
    --img-width: 270px;
    --img-height: 270px;
    --img-left: 50%;
    --img-top: 65%;
  }
  .slide-big-title {
    font-size: 25vw;
  }
  /* Slide 1 icons */
  .scroll-slide:nth-child(1) .float-icon:nth-child(3) {
    width: 120px;
    height: 120px;
  }
  .scroll-slide:nth-child(1) .float-icon:nth-child(4) {
    width: 100px;
    height: 100px;
  }
  .scroll-slide:nth-child(1) .float-icon:nth-child(5) {
    width: 80px;
    height: 80px;
  }
  /* Slide 2 icons */
  .scroll-slide:nth-child(2) .float-icon:nth-child(3) {
    width: 150px;
    height: 150px;
  }
  .scroll-slide:nth-child(2) .float-icon:nth-child(4) {
    width: 120px;
    height: 120px;
  }
  .scroll-slide:nth-child(2) .float-icon:nth-child(5) {
    width: 60px;
    height: 60px;
  }
  .scroll-slide:nth-child(2) .float-icon:nth-child(6) {
    width: 70px;
    height: 70px;
  }
  /* Slide 3 icons */
  .scroll-slide:nth-child(3) .float-icon:nth-child(3) {
    width: 100px;
    height: 100px;
  }
  .scroll-slide:nth-child(3) .float-icon:nth-child(4) {
    width: 100px;
    height: 100px;
  }
  .scroll-slide:nth-child(3) .float-icon:nth-child(5) {
    width: 80px;
    height: 80px;
  }
  .scroll-slide::before {
    left: 15%;
    top: 55%;
  }
}
/* ********************************************* */
#loader {
  position: fixed;
  inset: 0; /* top:0; left:0; right:0; bottom:0; */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff; /* غيّر اللون حسب ما تحب */
  z-index: 99999;
  transition: opacity 0.4s ease;
}
#loader.hidden {
  opacity: 0;
  pointer-events: none;
}
#loader.remove {
  display: none;
}
/* allow clicks pass through float icons so buttons underneath remain clickable */
/* --- ضع هذا في CSS (ملفك أو داخل <style>) --- */
/* تأكد الأزرار فوق كل شيء وتقبل النقر */
/* تأكد أن الأزرار فوق كل شيء */
/* منع أي float-icon من اعتراض النقر */
.scroll-slide .float-icon {
  pointer-events: none;
}

/* الأزرار فوق كل شيء */
.scroll-slide .btn-one,
.scroll-slide .btn-two {
  position: relative;
  z-index: 9999;
  pointer-events: auto;
}
