﻿/* site.css - professional, minimal */
body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: #f7f9fb;
  color: #222;
}
.header {
  background: linear-gradient(90deg,#0d6efd00,#0d6efd08);
  padding: 24px 0;
}
.section-title {
    border-left: 4px solid #0d6efd;
    padding-left: 10px;
    font-weight: 600;
}
.project-card {
    transition: 0.2s ease;
    border-radius: 10px;
}
.project-card:hover {
    transform: translateY(-4px);
}
.project-card img {
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
input, textarea {
    border-radius: 8px !important;
}
.card {
    border-radius: 12px;
}

.profile-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid #fff;
  box-shadow: 0 6px 18px rgba(13,110,253,0.12);
}
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(60,64,67,0.08);
}
.section-title {
  font-weight: 700;
  margin-bottom: 12px;
}
.skill-bar {
  height: 10px;
  background: #e9edf5;
  border-radius: 8px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  background: linear-gradient(90deg,#0d6efd,#6610f2);
}
.footer {
  padding: 24px 0;
  text-align: center;
  color: #6c757d;
  font-size: .9rem;
}
a.external {
  color: #0d6efd;
}

