:root {
    --bg:#0b0f14;
    --card:#0f1520;
    --text:#e5e7eb;
    --muted:#94a3b8;
    --accent:#60a5fa;
    --accent-2:#a78bfa;
    --radius:18px;
  }
  
  * { box-sizing:border-box; }
  
  body {
    margin:0;
    font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.6;
  }

  body {
  background: url("images/darkGradientBackground4.png") no-repeat center center fixed;
  background-size: cover; 
  color: #f5f5f5; 
}

  
  .container {
    max-width:900px;
    margin-inline:auto;
    padding:0 20px;
  }
  
  header, section, footer { padding:60px 0; }
  
  .section-title {
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
  }
  
  .section-title .dot {
    width:10px;
    height:10px;
    border-radius:999px;
    background:linear-gradient(135deg,var(--accent),var(--accent-2));
  }
  
  .section-title h2 { margin:0; font-size:28px; }
  
  .card {
    background:var(--card);
    border-radius:var(--radius);
    padding:22px;
    border:1px solid rgba(148,163,184,.14);
  }
  
  .hero h1 { font-size:42px; margin:0; margin-top: 50px; }
  .hero p { color:var(--muted); }
  
  .button {
    display:inline-block;
    padding:12px 16px;
    border-radius:12px;
    background:linear-gradient(135deg,var(--accent),var(--accent-2));
    color:white;
    text-decoration:none;
    font-weight:600;
    margin-top:16px;
  }
  
  .gallery {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-top:16px;
  }
  
  .gallery img {
    width:100%;
    border-radius:var(--radius);
    border:1px solid rgba(148,163,184,.2);
  }
  
  footer {
    border-top:1px solid rgba(148,163,184,.12);
    color:var(--muted);
  }
  
  .project-header {
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:20px;
  }
  
  .project-logo-left {
    width:84px;
    height:84px;
    object-fit:contain;
    border-radius:12px;
    background:rgba(0,0,0,.25);
    padding:8px;
    border:1px solid rgba(148,163,184,.18);
  }
  
  @media (max-width:720px) {
    .gallery { grid-template-columns:1fr }
    .project-header { flex-direction:column; align-items:center; text-align:center; }
  }

.project {
  margin-bottom: 80px; 
}  

.skills-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills-list li {
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: white;
  background: linear-gradient(135deg, #20c997, #0d6efd);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.skills-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.section-title h2 {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%; 
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(135deg, #20c997, #0d6efd);
}

.lang { display: none; }
.lang.active { display: inline; }
#lang-toggle {
  margin-left: 10px;
  background: linear-gradient(135deg, #6c63ff, #20c997);
  border: none;
  cursor: pointer;
}
.lang { display: none; }
.lang.active { display: inline; }


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.lang-switch {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.18);
  background: rgba(148,163,184,.10);
  margin-top: 20px;
}

.lang-btn {
  border: 0;
  background: transparent;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .2px;
  cursor: pointer;
  color: #9aa4b2;            
  transition: transform .15s ease, box-shadow .15s ease, color .15s ease, background .15s ease;
}

.lang-btn.active {
  color: white;
  background: linear-gradient(135deg, #20c997, #0d6efd);  /* teal → blue (distinct from main buttons) */
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}

.button { line-height: 1; }

/* Extra space between galleries and the features text */
.gallery { margin-bottom: 28px; }


.hero-actions {
  display: flex;
  justify-content: space-between; /* left vs right */
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-left {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

