 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
     font-family: Arial, sans-serif;
 }

 body {
     background: #3081ea;
 }

 .wrapper {
     max-width: 98%;
     margin: 40px auto;
     padding: 20px;
     background: #fff;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
 }

 header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1.5rem 2rem;
 }

 header h1 {
     font-size: 1.2rem;
     font-weight: bold;
 }

 a {
     margin-left: 20px;
     text-decoration: none;
     color: #333;
     font-weight: 600;
 }

 .hero {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 3rem 2rem;
 }

 .hero-text {
     max-width: 55%;
 }

 .hero-text h2 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
     color: #1f2933;
 }

 .hero-text p {
     color: #555;
     margin-bottom: 1.5rem;
 }

 .hero-text .btn {
     background: #3081ea;
     color: #fff;
     padding: 12px 24px;
     border-radius: 8px;
     text-decoration: none;
     font-weight: bold;
 }

 .hero-img img {
     width: 250px;
     height: 250px;
     border-radius: 50%;
     object-fit: cover;
     border: 6px solid #e6f4f7;
 }

 .section {
     padding: 2.5rem 2rem;
 }

 .section h3 {
     margin-bottom: 1.5rem;
     color: #1f2933;
 }

 .about {
     background: #f8fafc;
 }

 .about p {
     max-width: 800px;
     color: #555;
 }

 .git {
     display: flex;
     gap: 16px;
     flex-wrap: wrap;
     margin: 20px;
 }

 .git a {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 12px 18px;
     background: #f8fafc;
     border-radius: 12px;
     text-decoration: none;
     color: #1f2933;
     font-weight: 600;
     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
     transition: all 0.25s ease;
 }

 .git a i {
     font-size: 20px;
 }

 .git a:hover {
     transform: translateY(-4px) scale(1.03);
     background: #3081ea;
     color: #fff;
     box-shadow: 0 10px 22px rgba(255, 90, 95, 0.35);
 }

 .git a:hover i {
     color: #fff;
 }

 .skills ul {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 12px;
     list-style: none;
 }

 .skills li {
     background: #f1f5f9;
     padding: 10px;
     border-radius: 8px;
     text-align: center;
 }

 .projects {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 30px;
 }

 .project-card {
     background: #f8fafc;
     padding: 1.5rem;
     border-radius: 12px;
 }

 .project-card h4 {
     margin-bottom: 0.5rem;
 }

 .project-card a {
     color: #3081ea;
     text-decoration: none;
     font-weight: bold;
 }

 footer {
     text-align: center;
     padding: 1.5rem;
     background: #f8fafc;
     display: inline;
 }

 @media (max-width: 768px) {
     .hero {
         flex-direction: column-reverse;
         text-align: center;
     }

     .hero-text {
         max-width: 100%;
     }

     nav {
         display: none;
     }
 }