body {
  margin: 0;
  padding: 0;
  font-family: "cairo";
  background-color: #000000;
  width: 100%;
  text-align: center;
  color: #ffffff;
  scroll-behavior: smooth;
  min-width: auto;
  overflow-x: hidden;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.language-toggle {
  display: flex;
  gap: 10px;
}

.language-toggle a {
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.language-toggle img {
  padding: 9px;
  border-radius: 20px;
  align-self: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.language-toggle a:hover {
  transform: scale(1.05);
}

.bold {
  font-weight: normal;
  color: #ffffff;
  width: 100%;
  height: auto;
}

.normal {
  font-weight: bold;
  color: hwb(0 100% 0%);
  width: 100%;
  height: auto;
}

.me {
  height: 80px;
  width: auto;
  border-radius: 50%;
  margin-right: 20px;
  transition: transform 0.3s ease;
  cursor: pointer;
  border: 2px solid #ffffff;
  box-sizing: border-box;
}

.icon {
  width: auto;
  height: 15px;
  border-radius: 50%;
  margin-right: 5px;
  transition: transform 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.video-section {
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 25px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
  padding: 10px;
  transition: transform 0.3s ease;
  position: relative;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("images/video-background.jpg");
}

.background-video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 10;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  border-radius: 25%;
  width: 900px;
}

.video-overlay p {
  font-size: 18px;
  margin: 0 auto 15px;
  padding: 0 10px;
  line-height: 1.8;
  max-width: 90%;
  text-align: center;
}

.video-overlay .button {
  background-color: #ffffff;
  color: #000000;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.video-overlay .button:hover {
  background-color: #000;
  color: #fff;
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  margin-top: 50px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.my-pic img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 20px;
}

.my-info-box {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("images/background.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 20px;
  width: 500px;
  height: auto;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  color: white;
  text-align: center;
}

.my-info-box h3 {
  font-family: "Wix Madefor Text", sans-serif;
  color: rgb(0, 0, 0);
  font-size: 30px;
  margin-bottom: 20px;
  background-color: antiquewhite;
  border-radius: 10px;
}

.my-info-box p {
  font-family: "Wix Madefor Text", sans-serif;
  color: rgb(255, 255, 255);
  font-size: 20px;
  margin-bottom: 20px;
  background-color: rgb(105, 105, 105);
  border-radius: 10px;
}

.typing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.typing-container h2 {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #fff;
  width: 0;
  animation: typing 6s steps(70, end) infinite, blink 0.7s step-end infinite;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: antiquewhite;
  scale: 1.2;
  transition: scale 0.3s ease;
}

.my-pic:hover img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.my-info-box:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

h1 {
  font-family: "Wix Madefor Text", sans-serif;
  color: #ffffff;
  font-size: 50px;
  margin-top: 80px;
}

.projects-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3%;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 0 5%;
  width: 100%;
  box-sizing: border-box;
}

.project-card {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("images/project-background.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 20px;
  width: 300px;
  height: auto;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  color: white;
  margin-bottom: 20px;
}

.project-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.view-project-button {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.project-card:hover .view-project-button {
  background-color: hsl(0, 0%, 100%);
  color: #000000;
  transform: scale(1.1);
}

.trusted-by-container {
  max-width: 77%;
  border-radius: 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("images/trusted-by-background.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  color: white;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}

.clients-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.client-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  max-width: 100%;
  text-align: center;
  font-size: x-large;
}

.client-card img {
  width: 200px;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
}

.prev-btn,
.next-btn {
  padding: 50px 16px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  border-radius: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: hsl(0, 0%, 100%);
  color: #000000;
  transform: scale(1.1);
}

.trusted-by-title {
  font-family: "Wix Madefor Text", sans-serif;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
  animation: typing 4s steps(40) 0s infinite normal none running;
}

.contact-container {
  width: 77%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: 11%;
  padding: 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("images/contact-background.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  color: white;
}

.contact-input:hover {
  color: #000000;
  transform: scale(1.1);
  transition: transform 0.3s ease;
  background-color: hsl(0, 0%, 100%);
}

.contact-submit:hover {
  background-color: hsl(0, 0%, 100%);
  color: #000000;
  transform: scale(1.1);
}

.footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: "Cairo", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #f1c40f;
}

.footer-column p,
.footer-column a {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  text-decoration: none;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a:hover {
  color: #fff;
}

.social-icons a img {
  width: 24px;
  margin-right: 10px;
  filter: brightness(0.8);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #888;
}

.social-icons img {
  width: 40px;
  height: 40px;
  margin: 0 0px;
  transition: transform 0.3s ease;
  cursor: pointer;
  padding: 0.5%;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.scroll-to-top {
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffffff;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 1000;
  font-size: 20px;
}

.scroll-to-top:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* ✅ الأنميشنز */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 12px;
    overflow-x: hidden;
  }

  .me {
    width: 100px;
    height: 100px;
  }

  h1,
  .trusted-by-title {
    font-size: 24px;
  }

  .typing-container h2 {
    font-size: 20px;
  }

  .about-container,
  .projects-container,
  .contact-container {
    flex-direction: column;
    align-items: center;
    margin: 20px auto;
    width: 95%;
  }

  .my-info-box,
  .project-card,
  .client-card {
    width: 100%;
    padding: 10px;
  }

  .video-overlay p {
    font-size: 12px;
  }

  .video-overlay .button,
  .contact-submit {
    font-size: 12px;
    padding: 6px 12px;
  }

  .client-card img {
    width: 100px;
  }

  .social-icons img {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  body {
    font-size: 14px;
    overflow-x: hidden;
  }

  .me {
    width: 120px;
    height: 120px;
  }

  h1,
  .trusted-by-title {
    font-size: 28px;
  }

  .typing-container h2 {
    font-size: 24px;
  }

  .about-container,
  .projects-container,
  .contact-container {
    flex-direction: column;
    align-items: center;
    margin: 30px auto;
    width: 90%;
  }

  .my-info-box,
  .project-card,
  .client-card {
    width: 100%;
    padding: 15px;
  }

  .video-overlay p {
    font-size: 14px;
  }

  .video-overlay .button,
  .contact-submit {
    font-size: 14px;
    padding: 8px 16px;
  }

  .client-card img {
    width: 140px;
  }

  .social-icons img {
    width: 32px;
    height: 32px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  body {
    font-size: 16px;
  }

  .me {
    width: 140px;
    height: 140px;
  }

  h1,
  .trusted-by-title {
    font-size: 32px;
  }

  .typing-container h2 {
    font-size: 28px;
  }

  .about-container,
  .projects-container,
  .contact-container {
    flex-direction: column;
    align-items: center;
    margin: 40px auto;
    width: 85%;
  }

  .my-info-box,
  .project-card,
  .client-card {
    width: 90%;
    padding: 20px;
  }

  .video-overlay p {
    font-size: 16px;
  }

  .video-overlay .button,
  .contact-submit {
    font-size: 16px;
    padding: 10px 20px;
  }

  .client-card img {
    width: 160px;
  }

  .social-icons img {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .projects-container {
    justify-content: center;
    padding: 0 20px;
  }
  .project-card {
    width: 100%;
    padding: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .projects-container {
    justify-content: center;
    padding: 0 30px;
  }
  .project-card {
    width: 90%;
    padding: 20px;
  }
}

.gallery-title {
  font-size: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.gallery-grid,
.suggested-projects,
.services-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 10px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.gallery-item,
.suggested-project,
.service-item,
.stat-box {
  background: #111;
  padding: 15px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.gallery-item:hover,
.suggested-project:hover,
.service-item:hover,
.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.gallery-item img,
.suggested-project img {
  width: 100%;
  border-radius: 10px;
}

.gallery-item p,
.suggested-project p {
  margin-top: 10px;
  color: #ccc;
}

.btn-centered {
  display: block;
  margin: 40px auto;
  padding: 12px 24px;
  background-color: #fff;
  color: #000;
  font-weight: bold;
  border-radius: 10px;
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 300px;
  text-decoration: none;
}

.btn-centered:hover {
  background-color: #ccc;
  transform: scale(1.05);
}

.details-section,
.reviews-section,
.suggested-projects-section,
.stats-section,
.services-section,
.cta-section {
  max-width: 1480px;
  margin: 0 auto 60px;
  background: #111;
  padding: 30px;
  border-radius: 12px;
  text-align: right;
}

.details-section ul {
  list-style-type: square;
  padding-right: 20px;
  color: #ccc;
  font-size: 18px;
}

.review:hover {
  transform: scale(1.02);
}

.review p {
  margin: 0;
  color: #ddd;
}

.review .author {
  font-weight: bold;
  margin-top: 10px;
  display: block;
  color: #ccc;
}

.review .stars {
  margin-top: 10px;
  color: gold;
  font-size: 18px;
}

.stats-grid .stat-box,
.services-grid .service-item {
  font-size: 20px;
  font-weight: bold;
  background-color: #222;
  padding: 30px 20px;
  border-radius: 12px;
}

.cta-section {
  text-align: center;
  background-color: #222;
}

.cta-section a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #fff;
  color: #000;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-section a:hover {
  background-color: #ccc;
  transform: scale(1.05);
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  display: inline-block;
}

.whatsapp-button img {
  width: 50px;
  height: 50px;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #25d366; /* لون الواتساب */
  color: #ffffff; /* لون الأيقونة */
}

.reviews-section {
  background-color: #111;
  border-radius: 12px;
  max-width: 1470px;
  margin: 60px auto;
  text-align: right;
  color: #fff;
}

.review {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.review:hover {
  transform: scale(1.02);
}

.review p {
  margin: 0;
  color: #ddd;
}

.review .author {
  font-weight: bold;
  margin-top: 10px;
  display: block;
  color: #ccc;
}

.review .stars {
  margin-top: 10px;
  color: gold;
  font-size: 18px;
}

/* Form Styles */
#client-review-form {
  margin-top: 40px;
}

#client-review-form h4 {
  margin-bottom: 20px;
  color: #fff;
}

.stars-selector {
  margin: 10px 0 20px;
}

.stars-selector label {
  margin-right: 10px;
  cursor: pointer;
  font-size: 18px;
  display: inline-block;
  color: gold;
}

textarea.contact-input {
  resize: vertical;
}

.contact-input {
  background-color: #000;
  color: #fff;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px;
  width: 100%;
  margin-bottom: 10px;
  box-sizing: border-box;
  text-align: center;
}

.contact-submit {
  background-color: #fff;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-submit:hover {
  background-color: #ccc;
  transform: scale(1.05);
}

.contact-btn {
  background-color: #e6bd13;
  padding: 10px 20px;
  border-radius: 30px;
  color: black !important;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-btn:hover {
  background-color: #ffd100;
  transform: scale(1.05);
}

.cta-button {
  background-color: #f1c40f;
  color: #000;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
  width: 150px;
}

.cta-button:hover {
  background-color: #fff;
  color: #000 !important;
}

.stats-section {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.stat-box {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 15px;
  width: 200px;
  transition: transform 0.3s;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.stat-box:hover {
  transform: translateY(-10px);
}

.stat-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #f1c40f;
}

.stat-label {
  margin-top: 5px;
  font-size: 16px;
  color: #ccc;
}

@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
    align-items: center;
  }
}

.services-journey-section {
  padding: 60px 20px;
  background-color: #111;
  color: #fff;
  text-align: center;
  width: 90%;
}

.journey-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.journey-grid-wrapper {
  margin: 0 auto;
}

.journey-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
  margin: 0 auto;
}

.journey-card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 30px;
  width: 260px;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  background: #f4c400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: #111;
}

.journey-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.journey-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 15px;
  line-height: 1.6;
}

.cta-button {
  background-color: #f4c400;
  color: #000;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 768px) {
  .journey-grid {
    flex-direction: column-reverse;
    align-items: center;
  }

  .journey-grid-wrapper {
    width: 100%;
  }
}

.navbar-glow {
  height: 4px;
  width: 100%;
  background: linear-gradient(
    to right,
    #f0c200,
    rgba(240, 194, 0, 0.4),
    #f0c200
  );
  box-shadow: 0 0 15px #a855f7;
  animation: glowMove 2s infinite linear;
}

@keyframes glowMove {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}

/* 💬 Chat Toggle Button */
#chat-toggle {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1001;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 50%;
  padding: 12px 14px;
  font-size: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

#chat-toggle:hover {
  transform: scale(1.1);
}

/* 🟨 Chatbox */
#chatbox {
  position: fixed;
  bottom: 80px;
  right: 25px;
  width: 320px;
  max-height: 400px;
  background-color: #111;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: "Cairo", sans-serif;
}

/* الرسائل */
#messages {
  flex-grow: 1;
  padding: 15px;
  overflow-y: auto;
  font-size: 14px;
}

/* كتابة المستخدم */
.input-container {
  display: flex;
  padding: 10px;
  background-color: #000;
  gap: 10px;
}

.input-container input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  background-color: #222;
  color: #fff;
}

.input-container input::placeholder {
  color: #aaa;
}

.send-btn {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.send-btn:hover {
  transform: scale(1.05);
}

/* مؤشر الكتابة */
.typing-indicator {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
}

.typing-indicator .dot {
  width: 6px;
  height: 6px;
  margin: 0 3px;
  background-color: #ccc;
  border-radius: 50%;
  animation: blink 1.4s infinite both;
}

.typing-indicator .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-indicator .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%,
  80%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}

/* ✅ Media Queries شاملة لكل الموقع */

/* الديسكتوب الطبيعي */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background-color: #000;
  color: white;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
  padding: 20px;
}

.nav-links a:hover {
  color: #ffd700;
}

/* الهامبورجر يختفي في الديسكتوب */

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.nav-center img.logo {
  height: 100px;
  width: auto;
}

/* الموبايل */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    padding: 15px 20px;
  }

  .nav-links {
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    padding: 15px 0;
    border-radius: 0 0 10px 10px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
    text-align: center;
  }

  .hamburger {
    display: block;
    font-size: 26px;
    cursor: pointer;
  }

  .cta-button {
    display: none;
    background-color: #f1c40f;
    color: #000;
    padding: 10px 1px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
    width: 120px;
    font-size: 10px;
  }

  .cta-button:hover {
    background-color: #fff;
    color: #000 !important;
  }

  .navbar-glow {
    display: none; /* اختفي في الموبايل */
  }
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .background-video {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .video-overlay {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    padding: 10px;
    text-align: center;
  }

  .video-overlay p.typing-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .video-overlay .button {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .video-overlay p.typing-text {
    font-size: 12px;
  }

  .video-overlay .button {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 768px) {
  .projects-section {
    padding: 20px;
    width: 95%;
    margin: 0 auto;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }

  .projects-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .project-card {
    width: 100%;
    max-width: 100%;
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
  }

  .project-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .project-card h3 {
    font-size: 18px;
    margin: 10px 0 5px;
  }

  .project-card p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .view-project-button {
    width: 100%;
    font-size: 14px;
    padding: 10px 0;
  }
}

@media (max-width: 768px) {
  .trusted-by-container {
    padding: 30px 10px;
    max-width: 75%;
  }

  .trusted-by-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .clients-row {
    flex-direction: column;
    gap: 15px;
  }

  .client-card {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .client-card img {
    width: 120px;
    height: auto;
  }

  .prev-btn,
  .next-btn {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    width: 75%;
    margin: 30px auto;
    padding: 20px 15px;
  }

  .contact-info {
    width: 100%;
    text-align: center;
  }

  .contact-info h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .contact-input {
    font-size: 14px;
    padding: 8px;
    margin-bottom: 12px;
    width: 100%;
  }

  .contact-submit {
    font-size: 14px;
    padding: 10px 20px;
    width: 100%;
    margin-top: 10px;
  }

  .contact-info img.icon {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }

  .contact-input::placeholder {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 20px;
    margin: 30px auto;
    width: 80%;
    border-radius: 10px;
  }

  .reviews-section h3,
  .reviews-section h4 {
    font-size: 20px;
    text-align: center;
  }

  .review p,
  .review .author,
  .review .stars {
    font-size: 14px;
    text-align: center;
  }

  .stars-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    font-size: 16px;
  }

  .stars-selector label {
    margin: 0;
  }

  #client-review-form input,
  #client-review-form textarea {
    width: 100%;
    text-align: center;
    font-size: 14px;
  }

  .contact-submit {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 20px;
    text-align: center;
    width: 80%;
  }

  .stats-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .stats-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .stat-box {
    font-size: 16px;
    padding: 12px 20px;
    background-color: #111;
    color: white;
    border-radius: 8px;
    width: 90%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 20px;
    text-align: center;
    width: 80%;
  }

  .services-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .services-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .service-item {
    background-color: #111;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    width: 90%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }
}
@media (max-width: 768px) {
  .whatsapp-button {
    position: fixed !important;
    bottom: 80px !important; /* رفعناه لفوق */
    left: 20px !important;
    z-index: 99999 !important;
    display: block !important;
    width: 60px !important;
    height: 60px !important;
  }

  .whatsapp-button img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: contain;
  }

  footer {
    position: relative;
    z-index: 1;
  }
}

.about-us {
  background-color: #0d0d0d;
  color: #fff;
  padding: 20px 20px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
  font-family: "Cairo", sans-serif;
  max-width: 1600px;
  margin: 20px auto;
  overflow: hidden;
  width: 100%;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-left {
  flex: 1;
}

.about-right {
  flex: 1;
  text-align: center;
}

.about-right img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(241, 196, 15, 0.2);
}

.section-title {
  font-size: 36px;
  color: #f1c40f;
  margin-bottom: 25px;
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.about-text.emphasis {
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(to right, #f1c40f15, #f1c40f08);
  padding: 15px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-left,
  .about-right {
    flex: 100%;
  }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  margin-right: 20px;
}

.nav-right .nav-links a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 10px 15px;
  border-radius: 8px;
}

.nav-right .nav-links a:hover {
  color: #f1c40f;
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .nav-right .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
  }
  .nav-right .hamburger:hover {
    color: #f1c40f;
  }
}

.hamburger {
  display: none; /* ده هو الكود الأساسي اللي هنخليه خارج الميديا */
}

.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #f1c40f;
  border-radius: 50%;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid #f1c40f;
  border-radius: 50%;
  transition: 0.15s ease;
}

