body {
  font-family: 'Droid Arabic Kufi', sans-serif;
  background: #f7f9fc;
  overflow-x: hidden;
}
.navbar {
  background-color: #003366;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.navbar-brand span {
  font-weight: bold;
  font-size: 18px;
}
.carousel-item img {
  height: 600px;
  object-fit: cover;
  filter: brightness(80%);
}
.carousel-caption {
  background: rgba(0,0,0,0.4);
  border-radius: 10px;
  padding: 20px;
}
.section-title {
  color: #003366;
  font-weight: bold;
  margin-bottom: 30px;
}
.card {
  border: none;
  transition: transform .3s;
}
.card:hover {
  transform: scale(1.05);
}
.product-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: transform .3s;
}
.product-card:hover {
  transform: translateY(-5px);
}
.footer {
  background: #003366;
  color: white;
}
.footer a {
  color: #fff;
  text-decoration: underline;
}
