@font-face {
  font-family: RBold;
  src: url(fonts/ReadexPro-Bold.ttf);
}

@font-face {
  font-family: RExtraLight;
  src: url(fonts/ReadexPro-ExtraLight.ttf);
}

@font-face {
  font-family: RLight;
  src: url(fonts/ReadexPro-Light.ttf);
}

@font-face {
  font-family: RMedium;
  src: url(fonts/ReadexPro-Medium.ttf);
}

@font-face {
  font-family: RRegular;
  src: url(fonts/ReadexPro-Regular.ttf);
}

@font-face {
  font-family: RSemiBold;
  src: url(fonts/ReadexPro-SemiBold.ttf);
}

@font-face {
  font-family: RVariable;
  src: url(fonts/ReadexPro-VariableFont_HEXP\,wght.ttf);
}

:root {
  --color-blue: #3471fd;
  /* ممكن تحافظ عليه لو حاب */
  --color-Dark-Blue: #0f0f31;
  /* جديد */
  --color-light: #efefef;
  /* جديد */
  --color-dark: #000000;
  /* جديد */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 body {
    padding-top: 100px;
  }

/* Navigation */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, #1e3a8a 0%, #0f0f31 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 50;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu.active {
  display: flex;
  flex-direction: column;
  position: fixed; /* fixed بدل absolute */
  top: 70px;
  right: 20px;
  background: rgba(15, 23, 42, 0.95);
  padding: 1rem 2rem;
  border-radius: 12px;
  gap: 1rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  z-index: 9999; /* أعلى من كل شيء */
}


.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: RRegular;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover {
  color: #3b82f6;
  transform: translateY(-1px);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-icon {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 125%;
  left: -85px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem 0;
  min-width: 232px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: RRegular;
  font-size: 0.88rem;
  transition: all 0.3s ease;
}

.dropdown-link:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding-left: 1rem;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language-switcher .nav-link.active {
  color: #3b82f6;
  font-weight: 600;
}

.separator {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


.contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

/* Keeping floating elements but making them static color */
.contact-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: rgba(52, 113, 253, 0.05);
  border-radius: 50%;
  animation: dnaHelix 8s linear infinite;
  z-index: 0;
}

.contact-section::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: -5%;
  width: 150px;
  height: 150px;
  background: rgba(15, 15, 49, 0.05);
  border-radius: 50%;
  animation: dnaHelix 10s linear infinite reverse;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  /* Ensure content stays above floating elements */
  z-index: 1;
}

.contact-wrapper {
  display: flex;
  flex-direction: row;
  gap: 0;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15, 15, 49, 0.1);
  overflow: hidden;
  min-height: 600px;
  /* Adding subtle pulse animation */
  animation: subtlePulse 4s ease-in-out infinite;
}

/* Sol Taraf - Form */
.form-container {
  flex: 1;
  padding: 60px 50px;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s ease-out 0.3s forwards;
}

.form-container h2 {
  color: var(--color-Dark-Blue);
  font-family: RRegular;
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-weight: 600;
  /* Adding text glow animation on hover */
  transition: all 0.3s ease;
}

.form-container h2:hover {
  text-shadow: 0 0 20px rgba(52, 113, 253, 0.3);
  transform: scale(1.02);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: var(--color-Dark-Blue);
  font-family: RLight;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 1rem;
}
#consultation_type {
  color: silver; /* الافتراضي فضي */
}

#consultation_type.valid {
  color: var(--color-Dark-Blue); /* اللون العادي بعد الاختيار */
}


.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: RLight;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #fafafa;
  /* Adding subtle animation on focus */
  position: relative;
  cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #3471fd;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(52, 113, 253, 0.1);
  /* Adding scale animation */
  transform: scale(1.02);
  animation: inputGlow 0.5s ease;
}

.submit-btn {
  background: linear-gradient(135deg, #3471fd, #0f0f31);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-family: RRegular;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(52, 113, 253, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

::placeholder {
  color: #aaa;
  font-family: RLight;
  opacity: 1;
}

/* Sağ Taraf - Şirket Bilgileri */
.info-container {
  flex: 1;
  background: linear-gradient(135deg, #1e3a8a 0%, #0f0f31 100%);
  padding: 60px 50px;
  color: white;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease-out 0.5s forwards;
  /* Adding animated background */
  background-size: 400% 400%;
  position: relative;
  overflow: hidden;
}

.info-container::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: dnaParticle1 8s linear infinite;
  box-shadow: 20px 40px 0 rgba(255, 255, 255, 0.4), -20px 80px 0 rgba(255, 255, 255, 0.3), 40px 120px 0
    rgba(255, 255, 255, 0.5);
}

.info-container::after {
  content: "";
  position: absolute;
  bottom: 30%;
  left: 15%;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: dnaParticle2 10s linear infinite;
  box-shadow: -30px -50px 0 rgba(255, 255, 255, 0.3), 30px -100px 0 rgba(255, 255, 255, 0.4), -50px -150px 0
    rgba(255, 255, 255, 0.2);
}

.info-container h1 {
  font-family: RRegular;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.info-container p {
  font-family: RLight;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Adding styles for company advantages */
.company-advantages {
  margin-bottom: 40px;
}

.service-item,
.advantage-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.6s ease forwards;
}

.service-item:nth-child(1),
.advantage-item:nth-child(1) {
  animation-delay: 0.8s;
}

.service-item:nth-child(2),
.advantage-item:nth-child(2) {
  animation-delay: 1s;
}

.advantage-item:nth-child(3) {
  animation-delay: 1.2s;
}

.advantage-item:nth-child(4) {
  animation-delay: 1.4s;
}

.service-item:hover,
.advantage-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.service-item i,
.advantage-item i {
  font-size: 1.5rem;
  margin-right: 20px;
  margin-top: 5px;
  color: #efefef;
  min-width: 30px;
  transition: all 0.3s ease;
}

.service-item:hover i,
.advantage-item:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #ffffff;
}

.service-item h4,
.advantage-item h4 {
  font-family: RRegular;
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.service-item p,
.advantage-item p {
  font-family: RLight;
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.contact-item span {
  font-family: RLight;
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.5;
}



/* #region Footer Section */
.footer {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f0f31 100%);
  padding: 60px 0 30px;
  border-top: 1px solid #e2e8f0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  opacity: 0;
  transform: translateY(30px);
  animation: floatUp 0.8s ease-out forwards;
}

.footer-column:nth-child(1) {
  animation-delay: 0.2s;
}

.footer-column:nth-child(2) {
  animation-delay: 0.4s;
}

.footer-column:nth-child(3) {
  animation-delay: 0.6s;
}

.footer-column:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes floatUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-column h3 {
  color: var(--color-light);
  font-family: RRegular;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    text-shadow: 0 0 5px rgba(96, 165, 250, 0.3);
  }

  50% {
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.6), 0 0 30px rgba(96, 165, 250, 0.4);
  }
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #60a5fa, transparent);
  animation: slideIn 2s ease-in-out infinite;
}

@keyframes slideIn {
  0% {
    left: -100%;
  }

  50% {
    left: 0%;
  }

  100% {
    left: 100%;
  }
}

/* Logo and Description Column */
.logo-section .logo {
  display: inline-block;
  font-family: RRegular;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-light);
  text-decoration: none;
  margin-top: -8px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
    transform: scale(1);
  }

  50% {
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.8), 0 0 30px rgba(96, 165, 250, 0.6);
    transform: scale(1.02);
  }
}

.logo-section .logo:hover {
  color: var(--color-blue);
  transform: scale(1.05);
}

.logo-section p {
  color: #d1d5db;
  font-family: RLight;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Navigation Links */
.nav-links ul {
  list-style: none;
}

.nav-links li {
  margin-bottom: 12px;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInSlide 0.6s ease-out forwards;
}

.nav-links li:nth-child(1) {
  animation-delay: 0.1s;
}

.nav-links li:nth-child(2) {
  animation-delay: 0.2s;
}

.nav-links li:nth-child(3) {
  animation-delay: 0.3s;
}

.nav-links li:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-links a {
  position: relative;
  display: inline-block;
  color: #d1d5db;
  text-decoration: none;
  font-family: RRegular;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #60a5fa;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #60a5fa;
  animation: bounce 0.6s ease;
}

.nav-links a:hover::before {
  width: 100%;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-3px);
  }

  60% {
    transform: translateY(-2px);
  }
}

/* Added simple dropdown functionality for services */
.nav-links .services-toggle {
  display: flex;
  align-items: center;
  justify-content: start;
  column-gap: 30px;
  cursor: pointer;
  color: #d1d5db;
  font-family: RRegular;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links .services-toggle::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #60a5fa;
  transition: width 0.3s ease;
}

.nav-links .services-toggle:hover {
  color: #60a5fa;
  transform: translateX(5px);
}

.nav-links .services-toggle::after {
  content: "▼";
  font-size: 0.8rem;
  color: #60a5fa;
  transition: transform 0.3s ease;
}

.nav-links .services-toggle.open::after {
  transform: rotate(180deg);
}

.nav-links .dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-left: 15px;
  margin-top: 8px;
}

.nav-links .dropdown.open {
  max-height: 150px;
}

.nav-links .dropdown li {
  margin-bottom: 8px;
}

.nav-links .dropdown a {
  font-family: RRegular;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #d1d5db;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  animation: socialFloat 3s ease-in-out infinite;
}

.social-icon:nth-child(1) {
  animation-delay: 0s;
}

.social-icon:nth-child(2) {
  animation-delay: 0.5s;
}

.social-icon:nth-child(3) {
  animation-delay: 1s;
}

.social-icon:nth-child(4) {
  animation-delay: 1.5s;
}

.social-icon:nth-child(5) {
  animation-delay: 2s;
}

.social-icon:nth-child(6) {
  animation-delay: 2.5s;
}

@keyframes socialFloat {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

.social-icon:hover {
  background-color: #60a5fa;
  color: var(--color-light);
  transform: translateY(-2px) scale(1.1);
  animation: socialHover 0.6s ease;
  box-shadow: 0 5px 15px rgba(96, 165, 250, 0.4);
}

@keyframes socialHover {
  0% {
    transform: translateY(-2px) scale(1.1) rotate(0deg);
  }

  50% {
    transform: translateY(-2px) scale(1.1) rotate(180deg);
  }

  100% {
    transform: translateY(-2px) scale(1.1) rotate(360deg);
  }
}

/* Contact Information */
.contact-info p {
  color: #d1d5db;
  margin-bottom: 15px;
  font-family: RLight;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateX(20px);
  animation: slideInRight 0.6s ease-out forwards;
}

.contact-info p:nth-child(1) {
  animation-delay: 1s;
}

.contact-info p:nth-child(2) {
  animation-delay: 1.2s;
}

.contact-info p:nth-child(3) {
  animation-delay: 1.4s;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-info i {
  color: #60a5fa;
  margin-top: 2px;
  min-width: 16px;
  transition: transform 0.3s ease;
}

.contact-info i:hover {
  transform: rotate(360deg);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s ease-out 2s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.footer-bottom p {
  color: var(--color-light);
  font-family: RLight;
  font-size: 0.9rem;
  animation: typewriter 2s steps(40) 2.5s forwards;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  margin: 0 auto;
}

.contact-info a {
  color: var(--color-light);
  /* أبيض */
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--color-blue);
  /* أزرق فاتح عند الهوفر */
}

@keyframes typewriter {
  to {
    width: 100%;
  }
}

/* #endregion */

/* #region animation Section */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes subtlePulse {
  0%,
  100% {
    box-shadow: 0 20px 60px rgba(15, 15, 49, 0.1);
  }

  50% {
    box-shadow: 0 25px 70px rgba(15, 15, 49, 0.15);
  }
}

@keyframes inputGlow {
  0% {
    box-shadow: 0 0 0 3px rgba(52, 113, 253, 0.1);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(52, 113, 253, 0.2);
  }

  100% {
    box-shadow: 0 0 0 3px rgba(52, 113, 253, 0.1);
  }
}

@keyframes buttonShine {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 100% 0;
  }
}

@keyframes buttonPress {
  0% {
    transform: translateY(-2px) scale(1);
  }

  100% {
    transform: translateY(0) scale(0.98);
  }
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }

  100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  }
}

@keyframes iconBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes particle1 {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) translateX(50px) scale(0);
    opacity: 0;
  }
}

@keyframes particle2 {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateY(-150px) translateX(-30px) scale(0);
    opacity: 0;
  }
}

@keyframes dnaHelix {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-30px) translateX(20px) rotate(90deg);
  }

  50% {
    transform: translateY(0px) translateX(40px) rotate(180deg);
  }

  75% {
    transform: translateY(30px) translateX(20px) rotate(270deg);
  }

  100% {
    transform: translateY(0px) translateX(0px) rotate(360deg);
  }
}

@keyframes dnaStrand {
  0%,
  100% {
    transform: translateX(-2px) scaleY(1);
    opacity: 0.3;
  }

  50% {
    transform: translateX(2px) scaleY(1.1);
    opacity: 0.6;
  }
}

@keyframes dnaParticle1 {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 1;
  }

  25% {
    transform: translateY(-50px) translateX(30px) rotate(90deg);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-100px) translateX(0px) rotate(180deg);
    opacity: 0.6;
  }

  75% {
    transform: translateY(-150px) translateX(-30px) rotate(270deg);
    opacity: 0.4;
  }

  100% {
    transform: translateY(-200px) translateX(0px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes dnaParticle2 {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    opacity: 1;
  }

  20% {
    transform: translateY(-40px) translateX(-25px) rotate(72deg) scale(1.2);
    opacity: 0.9;
  }

  40% {
    transform: translateY(-80px) translateX(15px) rotate(144deg) scale(0.8);
    opacity: 0.7;
  }

  60% {
    transform: translateY(-120px) translateX(-35px) rotate(216deg) scale(1.1);
    opacity: 0.5;
  }

  80% {
    transform: translateY(-160px) translateX(25px) rotate(288deg) scale(0.9);
    opacity: 0.3;
  }

  100% {
    transform: translateY(-200px) translateX(0px) rotate(360deg) scale(0);
    opacity: 0;
  }
}

@keyframes socialRotate {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(5deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}
/* #endregion */



.whatsapp-float {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 70px;          
    height: 70px;          
    background-color: var(--color-blue);
    color: var(--color-light);
    border-radius: 50%;
    text-align: center;
    line-height: 70px;  
    font-size: 2.5rem;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
    animation: whatsapp-bounce 2s infinite;
}

@keyframes whatsapp-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
  /* التأكد من أن المحتوى لا يتداخل مع النافبار */
 
  .contact-wrapper {
    flex-direction: column;
    gap: 0;
  }

  .form-container,
  .info-container {
    padding: 40px 30px;
  }

  .form-container h2 {
    font-size: 1.8rem;
  }

  .company-info h1 {
    font-size: 2.5rem;
  }

  /* Fixing mobile service items layout */
  .service-item,
  .advantage-item {
    padding: 15px;
    margin-bottom: 20px;
  }

  .service-item i,
  .advantage-item i {
    font-size: 1.3rem;
    margin-right: 15px;
  }

  .service-item h4,
  .advantage-item h4 {
    font-size: 1.1rem;
  }

  .service-item p,
  .advantage-item p {
    font-size: 0.95rem;
  }

  /* #region Footer Section */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .footer-container {
    padding: 0 15px;
  }

  .social-icons {
    justify-content: center;
  }

  .demo-content h1 {
    font-size: 2rem;
  }

  .demo-content p {
    font-size: 1rem;
  }

  /* #endregion */
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 1rem;
  }

  .contact-section {
    padding: 20px 10px;
  }

  .form-container,
  .info-container {
    padding: 30px 20px;
  }

  .form-container h2 {
    font-size: 1.6rem;
  }

  .company-info h1 {
    font-size: 2rem;
  }

  .company-description {
    font-size: 1.1rem;
  }

  /* Further mobile optimization for service items */
  .service-item,
  .advantage-item {
    padding: 12px;
    flex-direction: column;
    text-align: center;
  }

  .service-item i,
  .advantage-item i {
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
  }

  /* #region Footer Section */
  .footer-column h3 {
    font-size: 1.1rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  /* #endregion */
}
