/* ===== FAROUQ GENERAL SERVICES | Dark Tech Theme ===== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0a0f1f, #121826, #050505);
  color: #e4e4e4;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Smooth fade-in animation */
* {
  animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Header */
header {
  text-align: center;
  padding: 40px 20px;
}

header img {
  width: 120px;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

h1 {
  font-size: 2.5rem;
  color: #00ffcc;
  letter-spacing: 1px;
}

p.tagline {
  font-size: 1.1rem;
  color: #c7c7c7;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

nav a {
  color: #00ffcc;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: #fff;
  text-shadow: 0 0 10px #00ffcc;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: white;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero h2 {
  font-size: 2rem;
  color: #00ffcc;
}

.hero p {
  max-width: 600px;
  margin: 10px auto;
}

/* Buttons */
button, .btn {
  background: #00ffcc;
  color: #0a0f1f;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

button:hover, .btn:hover {
  background: #00bfa5;
  transform: scale(1.05);
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background: #0b0f1a;
  color: #aaa;
  font-size: 0.9rem;
  border-top: 1px solid #00ffcc33;
}

footer a {
  color: #00ffcc;
  text-decoration: none;
}

footer a:hover {
  text-shadow: 0 0 8px #00ffcc;
}
