 body {
      scroll-behavior: smooth;
    }
    .navbar {
      background: linear-gradient(90deg, #0d6efd, #6610f2);
    }
    .hero {
      min-height: 100vh;
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/p2.jpg');
      background-size: cover;
      background-position: center;
      color: #fff;
    }
    .section-title {
      margin-bottom: 1.5rem;
      position: relative;
    }
    .section-title::after {
      content: '';
      width: 60px;
      height: 4px;
      background: #0d6efd;
      display: block;
      margin-top: 8px;
    }
    .skills-badge {
      display: inline-block;
      margin: 6px;
      padding: 10px 16px;
      border-radius: 30px;
      background: #f1f5ff;
      color: #0d6efd;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    .skills-badge:hover {
      background: #0d6efd;
      color: #fff;
      transform: translateY(-3px);
    }
    .card {
      transition: all 0.3s ease;
    }
    .card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    footer {
      background: #111;
      color: #aaa;
    }

 .nav-toggle {
  position: fixed;
  top: 22px;
  left: 26px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}

.corner-nav {
  position: fixed;
  top: 60px;
  left: 26px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 10px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.corner-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.corner-nav a:hover {
  color: #0d6efd;
}


.hero .container {
  transition: transform 0.5s ease, letter-spacing 0.5s ease;
}

.hero .container:hover {
  transform: scale(1.04);
}

.about-section {
padding: 120px 0 80px 0; /* space from hero */
background: linear-gradient(180deg, #0f172a, #020617);
color: #e5e7eb;
}


.about-section p {
color: #cbd5f5;
line-height: 1.7;
}


.about-lead {
font-size: 1.1rem;
color: #f8fafc;
margin-bottom: 16px;
}


.about-img {
border-radius: 18px;
box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}


.about-highlights {
margin-top: 20px;
display: flex;
flex-wrap: wrap;
gap: 12px;
}


.about-highlights span {
background: rgba(13,110,253,0.15);
color: #93c5fd;
padding: 8px 14px;
border-radius: 20px;
font-size: 13px;
transition: all 0.3s ease;
}


.about-highlights span:hover {
background: #0d6efd;
color: #fff;
transform: translateY(-3px);
}