
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  direction: rtl;
  font-family: Tahoma, sans-serif;
}

body {
  background-color: #ffffff;
  color: #222;
  position: relative;
}

.main-header {
  background-color: #003366;
  color: white;
  padding: 15px;
  text-align: center;
}

.logo-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.logo {
  width: 40px;
  height: auto;
}

.top-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.cta-button {
  padding: 10px 15px;
  font-size: 15px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 120px;
}

.call {
  background-color: #ffd700;
  color: #000;
}

.whatsapp {
  background-color: #25d366;
  color: white;
}

.hero {
  background-color: #004080;
  color: white;
  text-align: center;
  padding: 40px 15px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.hero h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 16px;
}

.gallery {
  padding: 25px 15px;
}

.gallery-item {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-item img {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.img-desc {
  font-size: 15px;
  margin-top: 10px;
  line-height: 1.8;
  color: #222;
  background-color: #f8f8f8;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.img-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

footer {
  background-color: #002244;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}

.floating-buttons {
  position: fixed;
  right: 15px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.float-btn {
  width: 50px;
  height: 50px;
  background-color: #25d366;
  border-radius: 50%;
  color: white;
  text-align: center;
  line-height: 50px;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.float-btn.call {
  background-color: #ffd700;
  color: #000;
}
