/* Profile image styling */
.profile-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 4px solid #007bff;
  }
  
  /* Skill box styling */
  .skill-box {
    background-color: #88c962;
    padding: 15px;
    text-align: center;
    border: 1px solid #95d61b;
    border-radius: 8px;
    margin-top: 10px;
    font-weight: bold;
  }
  :root {
    --primary-color: #0d6efd;
    --accent-color: #6f42c1;
    --bg-color: #f9f9f9;
    --text-color: #333;
  }
  
  /* General Styling */
  body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
    backdrop-filter: blur(50px);
    
  }
  
  /* Profile image styling */
  .profile-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
  }
  
  .profile-img:hover {
    transform: scale(1.05);
  }
  
  /* Resume Button */
  .resume-btn {
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .resume-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
  }
  
  /* Headings */
  .text-accent {
    color: var(--accent-color);
  }
  
  /* Skill box styling */
  .skill-box {
    background-color: rgb(16, 12, 240);
    padding: 20px;
    text-align: center;
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    margin-top: 15px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .skill-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(111, 66, 193, 0.2);
  }
/* Project Cards */
.project-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(111, 66, 193, 0.2);
  }
  
  .project-card img {
    height: 200px;
    object-fit: cover;
  }
    