body {
  margin: 0;
  font-family: Tahoma, Arial;
  background: linear-gradient(135deg,#0a4da3,#00c6ff);
  min-height: 100vh;
}

.header {
  text-align: center;
  color: #fff;
  padding: 30px 15px;
  animation: slideDown 1s ease;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.box {
  background: white;
  max-width: 500px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  animation: fadeUp 1s ease;
}

.services li {
  list-style: none;
  padding: 10px 0;
  font-size: 18px;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

form button {
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

form button:hover {
  transform: translateY(-3px);
}

.whatsapp {
  display: block;
  text-align: center;
  background: #25D366;
  color: white;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  margin: 15px 0;
}

footer {
  text-align: center;
  color: white;
  padding: 15px;
}

@keyframes fadeUp {
  from {opacity:0; transform: translateY(30px);}
  to {opacity:1; transform: translateY(0);}
}

@keyframes slideDown {
  from {opacity:0; transform: translateY(-30px);}
  to {opacity:1; transform: translateY(0);}
}





.fixed-home{
  position:fixed;
  top:15px;
  left:15px;
  background:#25D366;
  color:white;
  padding:12px;
  border-radius:50%;
  text-decoration:none;
  font-size:18px;
  z-index:1000;
}










/* مكان الأزرار */
.floating-buttons{
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: block;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
  transition: 0.6s;
}

.hidden{
  opacity: 0;
  transform: translateX(120px);
}

.show{
  opacity: 1;
  transform: translateX(0);
}

/* زر عام */
.float-btn{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 60px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  animation: float 2.5s ease-in-out infinite,
             shake 4s infinite;
  transition: 0.3s;
}

.float-btn span{
  font-size: 22px;
}

/* واتساب – أخضر جامد */
.whatsapp{
  background: linear-gradient(135deg,#00e676,#00c853);
}

/* اتصال – بنفسجي غامق */
.call{
  background: linear-gradient(135deg,#6a11cb,#2575fc);
  animation-delay: 1.3s;
}

.float-btn:hover{
  transform: scale(1.12);
}

/* حركات */
@keyframes float{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
  100%{ transform: translateY(0); }
}

@keyframes shake{
  0%,90%,100%{ transform: translateX(0); }
  92%{ transform: translateX(-3px); }
  94%{ transform: translateX(3px); }
  96%{ transform: translateX(-3px); }
  98%{ transform: translateX(3px); }
}

/* موبايل */
@media(max-width:600px){
  .float-btn small{
    display:none;
  }
}
















/* ===== Footer Styling ===== */
.footer{
  background:linear-gradient(135deg, #000000, #0a2540);
  color:#fff;
  padding:50px 20px;
  margin-top:60px;
}

.footer h3,
.footer h4{
  color:#f5a623;
  margin-bottom:15px;
}

.footer p,
.footer li,
.footer span{
  color:#ccc;
  line-height:1.8;
}

.footer a{
  color:#ccc;
  text-decoration:none;
  transition:0.3s ease;
}

.footer a:hover{
  color:#25D366;
}

/* ===== Social Icons ===== */
.footer-social{
  display:flex;
  gap:15px;
  margin-top:15px;
}

.footer-social a{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s ease;
}

.footer-social a img{
  width:22px;
}

/* Hover Animation */
.footer-social a:hover{
  background:#25D366;
  transform:translateY(-6px) scale(1.1);
  box-shadow:0 10px 20px rgba(37,211,102,0.5);
}







html, body{
  width:100%;
  margin:0;
  padding:0;
  overflow-x:hidden;
}




html{
  scroll-behavior: smooth;
}










.site-footer {
    text-align: center;
    font-size: 14px;
    padding: 15px 0;
    color: #555;
}

.site-footer a {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
}