

:root {
  --primary: #2563eb;
  --secondary: #1e293b;
  --light: #f4f6f8;
  --dark: #0f172a;
  --success: #22c55e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
  min-height: 100vh;
}

header {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: #fff;
  padding: 25px;
  text-align: center;
}

header h1 {
  font-size: 28px;
}

.container {
  max-width: 1100px;
  margin: 30px auto;
  padding: 20px;
}

/* HERO POSTERS */
.posters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.poster-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.poster-card:hover {
  transform: translateY(-8px);
}

.poster-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.poster-card .content {
  padding: 15px;
}

.poster-card h3 {
  margin-bottom: 5px;
  color: var(--dark);
}

.poster-card p {
  font-size: 14px;
  color: #555;
}

/* AUTH PAGES */
.auth-container {
  background: white;
  width: 350px;
  margin: 80px auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
}

.auth-container h2 {
  margin-bottom: 10px;
}

.auth-container input,
.auth-container select {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, var(--primary), #3b82f6);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.03);
}

.link {
  margin-top: 12px;
  font-size: 14px;
}

.link a {
  color: var(--primary);
  text-decoration: none;
}

/* DASHBOARD */
.controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.controls input,
.controls select {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.jobs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: var(--dark);
}

.card button {
  margin-top: 12px;
  background: var(--primary);
  border: none;
  padding: 10px;
  width: 100%;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

.card button:hover {
  background: #1d4ed8;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  color: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  font-size: 18px;
}

/* NOTIFICATION */
.notification {
  background: var(--success);
  color: white;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

footer {
  background: #e5e7eb;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  font-size: 14px;
}

@media (max-width: 600px) {
  header h1 { font-size: 22px; }
  .auth-container { width: 90%; }
}

/* Carousel */
.carousel {
background: white;
padding: 20px;
border-radius: 15px;
text-align: center;
font-size: 18px;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}


.testimonial { display: none; }
.testimonial.active { display: block; }


/* Companies */
.companies {
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
flex-wrap: wrap;
}


.companies img {
height: 40px;
filter: grayscale(100%);
}


/* Feedback */
.feedback-form {
max-width: 400px;
margin: auto;
}


.feedback-form input,
.feedback-form textarea {
width: 100%;
padding: 12px;
margin: 10px 0;
border-radius: 6px;
border: 1px solid #ccc;
}


/* Videos */
.videos {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
}


.videos iframe {
width: 100%;
height: 200px;
border-radius: 12px;
}

.menu-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 28px;
  cursor: pointer;
  z-index: 1001;
  color: white;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: #0f172a;
  padding: 25px;
  transition: 0.35s ease;
  z-index: 1000;
}

.side-menu.active {
  left: 0;
}

.menu-profile {
  text-align: center;
  margin-bottom: 25px;
}

.menu-profile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 8px;
}

.menu-profile p {
  color: #e5e7eb;
  font-size: 16px;
}

.side-menu a {
  display: block;
  color: #cbd5f5;
  text-decoration: none;
  padding: 10px 0;
  font-size: 15px;
}

.side-menu a:hover {
  color: #fff;
}

.menu-title {
  color: #94a3b8;
  margin-top: 15px;
  font-size: 14px;
}

.logout {
  color: #f87171;
  margin-top: 20px;
}
