/* ===== GLOBAL ===== */
body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    margin: 0;
    background: #f8fafc;
    color: #1f2937;
    line-height: 1.6;
}

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, #0b5ed7, #0a58ca);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 30px;
}

nav {
    margin-top: 12px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 14px;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

/* ===== HERO / SECTIONS ===== */
.hero {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.hero h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    color: #4b5563;
}

/* ===== BUTTON ===== */
.btn {
    display: inline-block;
    background: #0b5ed7;
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #094bb5;
    transform: translateY(-2px);
}

/* ===== PROJECT CARDS ===== */
.project-card {
    background: white;
    padding: 28px;
    margin: 30px auto;
    width: 100%;
    max-width: 900px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.project-card h3 {
    margin-top: 0;
    font-size: 22px;
}

.project-card p {
    margin: 6px 0;
}

/* ===== LISTS ===== */
ul {
    padding-left: 18px;
}

li {
    margin-bottom: 6px;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 20px;
    background: #e5e7eb;
    color: #374151;
    margin-top: 60px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 26px;
    }
    nav a {
        display: inline-block;
        margin: 6px;
    }
}
.hero-hero {
    background: url('https://images.pexels.com/photos/3184298/pexels-photo-3184298.jpeg?auto=compress&cs=tinysrgb&w=1260') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.45);
}

.hero-hero .subtitle {
    font-size: 20px;
    margin-top: 6px;
    font-weight: 500;
}
.skill {
  margin: 12px 0;
}
.bar {
  background: #ddd;
  border-radius: 6px;
  overflow: hidden;
  height: 10px;
}
.fill {
  background: #0b5ed7;
  height: 100%;
}
.project-image {
  width:100%;
  height:200px;
  background-size:cover;
  border-radius:10px 10px 0 0;
}
.project-content {
  padding:14px;
}
.project-card {
  border-radius:12px;
  overflow:hidden;
}
/* ===== NAVBAR ===== */
.navbar {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1100px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 18px;
    color: #0b5ed7;
}

nav a {
    margin-left: 18px;
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
}

nav a:hover {
    color: #0b5ed7;
}

/* ===== HERO DESCRIPTION ===== */
.hero-desc {
    max-width: 700px;
    margin: 18px auto;
    font-size: 18px;
    color: #e5e7eb;
}
/* ===== STATS ===== */
.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    background: #ffffff;
}

.stat-card {
    text-align: center;
}

.stat-card h3 {
    font-size: 36px;
    color: #0b5ed7;
    margin-bottom: 6px;
}

.stat-card p {
    color: #4b5563;
    font-weight: 500;
}
.project-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.project-content {
    padding: 20px;
}
.resume-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
  transition: all 0.3s ease;
}

.resume-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.45);
  background: linear-gradient(135deg, #1e40af, #2563eb);
}

.resume-btn:active {
  transform: translateY(0);
}


