* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background: #0f172a;
  color: white;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 32px;
  font-weight: bold;
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}
.logo h1 {
  font-size: 28px;
  color: white;
}
.logo h1 span {
  color: #ff7a00;
}
nav a {
  color: white;
  text-decoration: none;
  margin-left: 30px;
  font-weight: 600;
  transition: 0.3s;
}
nav a:hover {
  color: #ff7a00;
}
.mobile-menu {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* Hero Section - Data Center background brighter and clearer */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.5)), url('https://images.pexels.com/photos/325229/pexels-photo-325229.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}
.hero-content {
  max-width: 900px;
  padding: 20px;
}
.hero h2 {
  font-size: 58px;
  margin-bottom: 20px;
}
.hero h2 span {
  color: #ff7a00;
}
.hero p {
  font-size: 22px;
  color: #f1f5f9;
  margin-bottom: 15px;
}
.arabic {
  color: #ffcc80;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
  text-shadow: 1px 1px 2px black;
}
.contact-info {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  display: inline-block;
  padding: 12px 25px;
  border-radius: 40px;
  margin-bottom: 30px;
}
.contact-info p {
  font-size: 18px;
  margin: 5px 0;
}
.btn {
  background: linear-gradient(135deg, #ff7a00, #ff9f2e);
  padding: 14px 35px;
  border-radius: 50px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
  display: inline-block;
  transition: 0.3s;
}
.btn:hover {
  transform: scale(1.05);
}

/* Services Section */
.services {
  padding: 100px 60px;
  background: #0f172a;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 44px;
  color: #ff7a00;
}
.arabic-sub {
  color: #94a3b8;
  font-size: 18px;
  margin-top: 8px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.card {
  background: #1e293b;
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
  border: 1px solid #2d3a4e;
}
.card:hover {
  transform: translateY(-10px);
  border-color: #ff7a00;
}
.card h3 {
  color: #ff7a00;
  margin-bottom: 15px;
}
.card p {
  color: #cbd5e1;
  line-height: 1.7;
}
.arabic-card {
  font-size: 14px;
  color: #ff9f2e;
  margin-top: 10px;
}

/* Gallery Section */
.gallery {
  padding: 80px 60px;
  background: #0a0f1e;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-caption {
  text-align: center;
  padding: 12px;
  background: #1e293b;
}

/* Contact Page */
.contact-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}
.contact-card {
  background: #111827;
  padding: 50px;
  border-radius: 30px;
  text-align: center;
  max-width: 550px;
  width: 100%;
  border: 1px solid #ff7a00;
}
.contact-card h2 {
  font-size: 42px;
  color: #ff7a00;
}
.arabic-contact {
  color: #94a3b8;
  margin: 10px 0 30px;
}
.contact-details p {
  font-size: 20px;
  margin: 15px 0;
}
.whatsapp-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-wa {
  background: #25d366;
  padding: 12px 25px;
  border-radius: 40px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: 0.3s;
}
.btn-wa:hover {
  opacity: 0.8;
}

/* Footer */
footer {
  background: #020617;
  padding: 40px 20px;
  text-align: center;
  color: #94a3b8;
}
.footer-content p {
  margin: 8px 0;
}

/* Responsive */
@media (max-width: 900px) {
  header {
    padding: 15px 25px;
  }
  nav {
    display: none;
    flex-direction: column;
    background: #0f172a;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 15px;
  }
  nav.show {
    display: flex;
  }
  nav a {
    margin: 10px 0;
  }
  .mobile-menu {
    display: block;
  }
  .hero h2 {
    font-size: 38px;
  }
  .hero p {
    font-size: 18px;
  }
  .arabic {
    font-size: 20px;
  }
  .services, .gallery {
    padding: 60px 25px;
  }
}