@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
/* ================ NEW HERO STYLES (ADDED) ================ */

.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 20%, rgba(0,184,148,0.1) 0%, transparent 40%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.animated-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  gap: 15px;
  background: rgba(27,27,27,0.7);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(0,206,201,0.3);
}

.highlight {
  color: #00cec9;
  font-weight: 700;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00b894, #0984e3);
  animation: underlinePulse 2s infinite;
}

@keyframes underlinePulse {
  0%, 100% { opacity: 0.7; width: 100%; }
  50% { opacity: 1; width: 95%; }
}

.subtitle {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 2rem;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  background: rgba(11,11,11,0.6);
  padding: 1rem;
  border-radius: 12px;
}

.subtitle i {
  margin: 0 5px;
  color: #00cec9;
}

.cta-box {
  background: rgba(0, 184, 148, 0.1);
  padding: 1.5rem;
  border-radius: 16px;
  max-width: 400px;
  margin: 2rem auto 0;
  border: 1px dashed #00b894;
  position: relative;
  backdrop-filter: blur(5px);
}

.cta-box p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.arrow-animation {
  animation: bounce 2s infinite;
  margin-top: 15px;
  color: #0984e3;
  font-size: 1.5rem;
}

/* ================ ENHANCED EXISTING STYLES ================ */
/* تم تحسين الأنماط الحالية بدون حذف أي شيء */

nav a {
  position: relative;
  overflow: hidden;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

/* ================ RESPONSIVE ADDITIONS ================ */
@media (max-width: 768px) {
  .hero-section {
    min-height: 50vh;
    padding: 1.5rem;
  }
  
  .animated-text {
    flex-direction: column;
    padding: 1rem;
  }
  
  .subtitle {
    padding: 0.8rem;
    font-size: 1rem;
  }
  
  .cta-box {
    padding: 1rem;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .hero-section::before {
    background: radial-gradient(circle at 50% 20%, rgba(0,184,148,0.1) 0%, transparent 60%);
  }
  
  .animated-text {
    gap: 10px;
  }
  
  .highlight::after {
    bottom: -3px;
  }
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0e0e0e;
  color: #f0f0f0;
}

/* ================= HEADER ================== */

header {
  background-color: #1b1b1b;
  color: white;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  max-width: 70px;
  margin-bottom: 10px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

nav a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s;
}

nav a:hover {
  background-color: #00b894;
  color: #000;
}

.wisco-highlight {
  color: #00b894;
}

.header-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.menu-toggle, .search-toggle {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

.search-bar {
  display: none;
  margin-top: 10px;
  text-align: center;
}

.search-bar.active {
  display: block;
}

.search-bar input {
  padding: 8px;
  width: 80%;
  max-width: 300px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* ================= MAIN LAYOUT ================== */
main {
  padding: 2.5rem;
  text-align: center;
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= VEHICLE CARDS ================== */
.vehicle-card {
  background: #1b1b1b;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  margin: 1.5rem auto;
  padding: 1.5rem;
  max-width: 520px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.6);
}

.vehicle-info {
  text-align: center;
}

.vehicle-info .supplier {
  display: block;
  font-size: 0.85rem;
  color: #bbb;
}

.vehicle-info .vehicle-name {
  margin: 0.4rem 0;
  font-size: 1.7rem;
  font-weight: 700;
  color: #00cec9;
}

.vehicle-info .vehicle-code {
  display: block;
  font-size: 0.9rem;
  color: #999;
}

.vehicle-actions, .vehicle-details {
  display: none;
}

.vehicle-card.active .vehicle-actions,
.vehicle-card.active .vehicle-details {
  display: block;
  margin-top: 1.2rem;
}

.vehicle-actions a {
  display: inline-block;
  margin: 0.2rem 0.3rem;
  color: #fff;
  background: linear-gradient(90deg, #00b894, #0984e3);
  padding: 0.4rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.vehicle-actions a:hover {
  background: linear-gradient(90deg, #0984e3, #00b894);
  transform: scale(1.05);
}

.vehicle-details {
  text-align: left;
  color: #ccc;
  font-size: 0.95rem;
}

.vehicle-details p {
  margin: 0.4rem 0;
}

.vehicle-details strong {
  color: #fff;
}

/* ================= LOGIN PAGE ================== */
.login-page {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: #fff;
}

.login-container {
  background: rgba(0, 0, 0, 0.7);
  padding: 2.5rem 3rem;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  animation: fadeIn 1s ease;
}

.login-container h2 {
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.login-container input,
.login-container button {
  width: 100%;
  margin: 0.6rem 0;
  padding: 0.7rem;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  border: none;
}

.login-container input {
  background: #f0f0f0;
  color: #121212;
}

.login-container button {
  background: #00cec9;
  color: #121212;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-container button:hover {
  background: #00b894;
}

/* ================= CONTACT PAGE ================== */
.service-card strong {
  color: #00cec9;
  font-weight: 600;
}

.services {
  padding: 2rem 1rem;
}

.service-card {
  background: #111;
  padding: 2rem;
  margin: 1rem auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  max-width: 800px;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card h2 {
  color: #f7e70e;
  margin-bottom: 1.4rem;
  font-size: 1.3rem;
  text-align: center;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
  color: #f0f0f0;
  font-size: 1rem;
}

.contact-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00b894, #0984e3);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  margin: 0.2rem 0.2rem;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: linear-gradient(90deg, #0984e3, #00b894);
  transform: scale(1.05);
}
.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding: 0.3rem 0;
}

.contact-buttons {
  display: flex;
  gap: 0.5rem;
}

.contact-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00b894, #0984e3);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: linear-gradient(90deg, #0984e3, #00b894);
  transform: scale(1.1);
}

/* ================= RESPONSIVE ================== */
@media (max-width: 768px) {
  nav a {
    display: block;
    margin: 0.5rem auto;
    width: 80%;
  }

  header h1 {
    font-size: 1.4rem;
  }

  main {
    padding: 1.5rem;
  }

  .service-card li {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
  }
}

    :root {
      --primary: #00b894;
      --alert: #ff7675;
      --dark-bg: #1b1b1b;
      --text: #f0f0f0;
    }
    
    .dashboard-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      padding: 20px;
    }
    
    .stat-card {
      background: var(--dark-bg);
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      transition: all 0.3s ease;
      color: var(--text);
    }
    
    .stat-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    }
    
    .stat-card.alert {
      border-left: 5px solid var(--alert);
      animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
      0%, 100% { border-left-color: var(--alert); }
      50% { border-left-color: #ff9e9e; }
    }
    
    .stat-card h3 {
      color: var(--primary);
      margin-top: 0;
      font-size: 1.2rem;
    }
    
    .stat-card p {
      font-size: 2rem;
      margin: 10px 0;
      font-weight: 700;
    }
    
    .whatsapp-btn {
      display: inline-block;
      background: #25D366;
      color: white;
      padding: 8px 15px;
      border-radius: 20px;
      text-decoration: none;
      margin-top: 10px;
      transition: all 0.3s;
    }
    
    .whatsapp-btn:hover {
      background: #128C7E;
      transform: scale(1.05);
    }
    
    button {
      background: var(--primary);
      color: #121212;
      border: none;
      padding: 10px 20px;
      border-radius: 20px;
      cursor: pointer;
      font-weight: bold;
      transition: all 0.3s;
    }
    
    button:hover {
      background: #00cec9;
      transform: scale(1.05);
    }
    
    .chart-container {
      grid-column: 1 / -1;
      background: var(--dark-bg);
      border-radius: 12px;
      padding: 20px;
      margin-top: 20px;
    }
    
    @media (max-width: 768px) {
      .dashboard-grid {
        grid-template-columns: 1fr;
      }
    }
    :root {
  --primary: #00b894;
  --alert: #ff7675;
  --dark-bg: #1b1b1b;
  --text: #f0f0f0;
}

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #121212;
  color: var(--text);
}

header {
  background: linear-gradient(90deg, #00b894, #0984e3);
  text-align: center;
  padding: 1rem;
  color: white;
}

.logo {
  width: 70px;
  margin-bottom: 10px;
}

nav {
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  margin: 0 10px;
  background: #fff;
  color: #121212;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  background: #00b894;
  color: #fff;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
}

.stat-card {
  background: var(--dark-bg);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card.alert {
  border-left: 5px solid var(--alert);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { border-left-color: var(--alert); }
  50% { border-left-color: #ff9e9e; }
}

.stat-card h3 {
  color: var(--primary);
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.stat-card p {
  font-size: 2rem;
  font-weight: bold;
  margin: 10px 0;
}

button {
  background: var(--primary);
  color: #121212;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

button:hover {
  background: #00cec9;
  transform: scale(1.05);
}

.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  margin-top: 10px;
  transition: all 0.3s;
}

.whatsapp-btn:hover {
  background: #128C7E;
}

.chart-container {
  grid-column: 1 / -1;
  background: var(--dark-bg);
  padding: 20px;
  border-radius: 12px;
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #0e0e0e;
    padding: 10px;
    margin-top: 10px;
    border-top: 1px solid #333;
  }

  nav a {
    width: 100%;
    text-align: center;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
.header-actions {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.menu-toggle,
.search-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.search-bar {
  display: none;
  text-align: center;
  margin-top: 1rem;
  animation: fadeIn 0.5s ease-in-out;
}

.search-bar input {
  padding: 0.6rem 1rem;
  width: 80%;
  max-width: 400px;
  font-size: 1rem;
  border-radius: 25px;
  border: none;
  outline: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.search-bar.active {
  display: block;
}

@media (max-width: 768px) {
  .header-actions {
    top: 15px;
    right: 15px;
  }

  .search-bar input {
    width: 90%;
  }
}
body::before {
  content: "";
  background: url('img/cover.jpeg') no-repeat center center fixed;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: -1;
}
main, header, .hero-section {
  background-color: rgba(0, 0, 0, 0.5); /* شفافية */
}

