* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0e0f13;
  color: #e5e7eb;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}

/* PROFILE CARD */
.profile-card {
  background: #16181d;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
}

.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.role {
  color: #a1a1aa;
  font-size: 14px;
  margin-bottom: 20px;
}

.info div {
  margin-bottom: 12px;
}

.info span {
  font-size: 12px;
  color: #71717a;
}

.socials {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
}

.socials a {
  color: #d4af37;
  text-decoration: none;
  font-size: 14px;
}

/* RIGHT CONTENT */
.content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav {
  background: #16181d;
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  gap: 20px;
}

.nav a {
  color: #a1a1aa;
  cursor: pointer;
  text-decoration: none;
}

.nav a.active {
  color: #d4af37;
}

/* CARDS */
.card {
  background: #16181d;
  border-radius: 18px;
  padding: 24px;
}

.card h3 {
  margin-bottom: 14px;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service {
  background: #1c1f26;
  border-radius: 14px;
  padding: 16px;
}
.mc-button {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #0f172a;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mc-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
}
body {
  margin: 0;
  min-height: 100vh;
  background: url("assets/bg.gif") no-repeat center center fixed;
  background-size: cover;
}
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: -1;
}
.projects-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
  margin-top:20px;
}

.project-card{
  background:#0f1117;
  border-radius:14px;
  padding:20px;
  transition:0.2s ease;
  border:1px solid rgba(255,255,255,0.04);
}

.project-card:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,0.08);
}

.project-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

.project-header h3{
  margin:0;
  font-size:18px;
}

.project-tag{
  font-size:11px;
  padding:4px 8px;
  background:#1c1f26;
  border-radius:6px;
  color:#aaa;
}

.project-card p{
  font-size:14px;
  color:#bbb;
  margin-bottom:15px;
}

.project-links{
  display:flex;
  gap:10px;
}

.btn{
  padding:7px 14px;
  border-radius:8px;
  font-size:13px;
  text-decoration:none;
}

.btn.green{
  background:#16a34a;
  color:white;
}

.btn.purple{
  background:#6d28d9;
  color:white;
}
