#border-style{
    background-color: antiquewhite; text-align: right; padding: 15px; 
    border: 3px solid #2F4F4F;
} 
#border-style a{
    color: black; 
    display: inline-block; 
    margin-right: 15px; 
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease, color 0.2s ease;

}
#border-style a:hover {
    color: #ff6600;
    transform: scale(1.05);
    font-weight: 700;
}

 .lastpart {
  text-align: center;
  padding: 20px 0;
  background-color: antiquewhite;
  display: flex;
  flex-wrap: wrap;          /* স্ক্রিন ছোট হলে পরের লাইনে যাবে সুন্দরভাবে */
  justify-content: center;  /* মাঝখানে রাখবে */
  gap: 10px;            
}

.lastpart a {
  color: black;
  text-decoration: none; 
  margin: 0 15px;         
  font-weight: 500;
  display: inline-block;  
  transition: transform 0.2s ease;
}



.lastpart a:hover {
  transform: scale(1.1);
  font-weight: 700;
  color: #ff6600; 
}




/* Reset-ish */
* {box-sizing: border-box; margin: 0; padding: 0;}

/* Base */
:root{
  --bg: #f7f8fb;
  --card: #ffffff;
  --muted: #6b7280;
  --accent: #0ea5a4;
  --accent-2: #2563eb;
  --shadow: 0 8px 20px rgba(16,24,40,0.06);
  --radius: 12px;
  --container: 1100px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", "Helvetica Neue", Arial;
}

body{
  background: linear-gradient(180deg, var(--bg), #ffffff 80%);
  color: #0f172a;
  line-height: 1.5;
  -webkit-font-smoothing:antialiased;
}

/* Layout */
.container{
  width: 92%;
  max-width: var(--container);
  margin: 28px auto;
}

/* Header */
.site-header{
  background: transparent;
  padding: 20px 0 10px;
  text-align: center;
}
.site-header h1{
  font-size: 28px;
  letter-spacing: -0.2px;
  margin-bottom: 6px;
}
.subtitle{
  color: var(--muted);
  font-size: 14px;
}

/* Cards */
.card{
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  margin: 18px 0;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,23,42,0.04);
}

.card-title{
  font-size: 20px;
  margin-bottom: 6px;
}

.muted{ color: var(--muted); font-size: 14px; margin-bottom: 14px; }

/* Skill list */
.skill-list{ list-style: none; display: grid; gap: 14px; padding: 6px 0; }

.skill-list li{
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(14,165,164,0.02), transparent 30%);
  border: 1px solid rgba(14,165,164,0.03);
}

.skill-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.skill-name{ font-weight: 600; font-size: 15px; }
.skill-level{
  font-size: 13px;
  color: var(--muted);
  background: rgba(15,23,42,0.04);
  padding: 6px 10px;
  border-radius: 999px;
}

/* Progress */
.progress{
  height: 10px;
  background: rgba(15,23,42,0.06);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress .bar{
  height: 100%;
  width: 40%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 3px 8px rgba(14,165,164,0.14);
  transition: width 600ms ease;
}

/* Description text */
.skill-desc{
  color: var(--muted);
  font-size: 13px;
}

/* Footer note */
.note{
  text-align: center;
  color: var(--muted);
  margin: 18px 0 40px;
  font-size: 13px;
}

/* Responsive */
@media (min-width: 880px){
  main.container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .site-header .container{ max-width: var(--container); }
}

@media (max-width: 879px){
  .card{ padding: 16px; }
  .site-header h1{ font-size: 22px; }
}

