body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #0f172a;
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.header {
  background: #020617;
  padding: 20px 0;
}

.header nav a {
  color: #fff;
  margin-right: 15px;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 42px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #22c55e;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  padding: 40px 0;
}

.card {
  background: #1e293b;
  padding: 20px;
  border-radius: 10px;
}

.highlight {
  text-align: center;
  padding: 60px 0;
}

.btn-outline {
  border: 1px solid #22c55e;
  padding: 10px 20px;
  color: #22c55e;
  text-decoration: none;
}

.cta {
  text-align: center;
  padding: 60px 0;
  background: #020617;
}

.card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  padding: 40px 0;
}



.footer {
  text-align: center;
  padding: 30px 0;
  background: #020617;
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.success {
  color: #22c55e;
  margin-top: 15px;
}



/* HERO */
.portfolio-hero {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
}

.portfolio-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.portfolio-hero p {
  opacity: 0.8;
}

/* GRID */
.portfolio-section {
  padding: 60px 20px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* CARD */
.portfolio-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* IMG */
.portfolio-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENT */
.portfolio-content {
  padding: 20px;
}

.portfolio-content h3 {
  color: #0f172a;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.portfolio-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

/* LINK */
.portfolio-content a {
  text-decoration: none;
  font-weight: bold;
  color: #2563eb;
  transition: 0.2s;
}

.portfolio-content a:hover {
  color: #1d4ed8;
}