 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     background: #1a1a1a;
     color: #ffffff;
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
     min-height: 100vh;
     padding: 20px;
     overflow-y: auto;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 2%;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 20px;
     grid-template-areas:
         "profile profile profile"
         "credentials projects projects"
         "fonts services profiles"
         "stats stats cta";
    /* Remove fixed height */
    min-height: 100vh;
    height: auto;
    /* Adjust padding for mobile */
    padding: 10px;
 }

 a {
     text-decoration: none;
 }


 .card {
     background: radial-gradient(circle at center, #1C1C1E 0%, #000000 100%);
     backdrop-filter: blur(20px);
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
     backdrop-filter: blur(20px);
     border-radius: 16px;
     padding: 30px;
     position: relative;
     overflow: hidden;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .card:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
     background: linear-gradient(circle at center, #1C1C1E 0%, #000000 100%);
     background-size: 600% 600%;
     animation: moveGradient 4s ease infinite;
 }

 .card::after {
     content: '';
     position: absolute;
     top: 15px;
     right: 15px;
     width: 40px;
     height: 40px;
     background: #333;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .card::before {
     content: '+';
     position: absolute;
     top: 25px;
     right: 25px;
     color: #666;
     font-size: 20px;
     z-index: 1;
 }

 /* Profile Card */
 .profile-card {
     grid-area: profile;
     display: flex;
     align-items: center;
     gap: 30px;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at center, #1C1C1E 0%, #000000 100%);
     color: #ffffff;
 }

 .profile-card:hover {
     background: linear-gradient(circle at center, #1C1C1E 0%, #000000 100%);
     background-size: 600% 600%;
     animation: moveGradient 4s ease infinite;
 }

 .profile-image {
     width: 120px;
     height: 120px;
     border-radius: 20px;
     background: linear-gradient(135deg, #4a90e2 0%, #7b68ee 100%);
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
 }

 .profile-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 20px;
 }


.giticon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 1.5rem;
}

.giticon:hover{

}

 .avatar {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 20px;
 }

 .profile-info h2 {
     font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
     font-size: 3rem;
     font-weight: 700;
     letter-spacing: -0.5px;
 }

 .profile-info p {
     color: #888;
     font-size: 1.1rem;
 }

 .featured-badge {
     position: absolute;
     top: 20px;
     right: 20px;
     background: rgba(255, 255, 255, 0.1);
     padding: 5px 15px;
     border-radius: 20px;
     font-size: 0.8rem;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 /* Credentials Card */
 .credentials-card {
     grid-area: credentials;
 }

 .credentials-card h3 {
     font-size: 1.5rem;
     margin-bottom: 20px;
     font-weight: 400;
 }

 .signature {
     font-size: 1rem;
     color: #666;
     margin-top: 20px;
 }

 /* Projects Card */
 .projects-card {
     grid-area: projects;
     background: linear-gradient(to right, #1C1C1E 0%, #000000 100%);
     color: #ffffff;
 }

 .projects-card h3 {
     font-size: 1.5rem;
     margin-bottom: 20px;
     font-weight: 400;
 }

 .project-preview {
     width: 100px;
     height: 80px;
     background: #444;
     border-radius: 10px;
     margin-top: 20px;
 }

 /* Fonts Card */
 .fonts-card {
     grid-area: fonts;
     background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 30%, #45b7d1 60%, #96ceb4 100%);
 }

 .fonts-card::before {
     color: rgba(255, 255, 255, 0.3);
 }

 .fonts-card h3 {
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 10px;
 }

 .fonts-card p {
     color: rgba(255, 255, 255, 0.8);
     text-transform: uppercase;
     font-size: 0.9rem;
     letter-spacing: 2px;
 }

 /* Services Card */
 .services-card {
     grid-area: services;
 }

 .services-card h3 {
     font-size: 1.5rem;
     margin-bottom: 20px;
     font-weight: 400;
 }

 .services-icons {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .service-icon {
     width: 50px;
     height: 50px;
     background: #444;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     cursor: pointer;
     position: relative;
 }

 .services-icons {
     display: flex;
     gap: 20px;
     justify-content: center;
     margin-top: 20px;
 }


 /* Profiles Card */
 .profiles-card {
     grid-area: profiles;
 }

 .profiles-card h3 {
     font-size: 1.5rem;
     margin-bottom: 20px;
     font-weight: 400;
 }

 .social-icons {
     display: flex;
     gap: 15px;
     margin-top: 20px;
     justify-content: center;
 }

 .social-icon {
     width: 50px;
     height: 50px;
     background: #444;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     transition: background 0.3s ease;
     text-decoration: none;
 }

 .social-icon:hover {
     background: #555;
 }

 /* Stats Card */
 .stats-card {
     grid-area: stats;
     display: flex;
     gap: 40px;
     align-items: center;
 }

 .stat {
     text-align: center;
 }

 .stat-number {
     font-size: 3rem;
     font-weight: 300;
     margin-bottom: 5px;
 }

 .stat-label {
     color: #666;
     font-size: 0.9rem;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 /* CTA Card */
 .cta-card {
     grid-area: cta;
     background: linear-gradient(135deg, #333 0%, #2a2a2a 100%);
     cursor: pointer;
 }

 .cta-card h3 {
     font-size: 2.5rem;
     font-weight: 300;
     line-height: 1.2;
 }

 .highlight {
     color: #4a90e2;
 }

 .cta-link {
  text-decoration: none;
  color: inherit;
  display: block;
}


 /* Responsive Design */
 @media (max-width: 768px) {
     .container {
         grid-template-columns: 1fr;
         grid-template-areas:
             "profile"
             "credentials"
             "projects"
             "fonts"
             "services"
             "profiles"
             "stats"
             "cta";
     }

     .profile-card {
         flex-direction: column;
         text-align: center;
     }

     .profile-info h2 {
         font-size: 2rem;
     }

     .stats-card {
         flex-direction: column;
         gap: 20px;
     }

     .stat-number {
         font-size: 2.5rem;
     }

     .cta-card h3 {
         font-size: 2rem;
     }
 }

 @media (max-width: 480px) {
     body {
         padding: 10px;
     }

     .card {
         padding: 20px;
     }

     .profile-info h2 {
         font-size: 1.8rem;
     }

     .fonts-card h3 {
         font-size: 1.5rem;
     }

     .stat-number {
         font-size: 2rem;
     }

     .cta-card h3 {
         font-size: 1.8rem;
     }
 }

 .tooltip {
     position: absolute;
     bottom: 120%;
     /* Position the tooltip above the icon */
     left: 50%;
     transform: translateX(-50%);
     background-color: #333;
     color: #fff;
     padding: 6px 12px;
     border-radius: 6px;
     white-space: nowrap;
     font-size: 14px;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.3s ease;
     z-index: 1;
 }

 .service-icon:hover .tooltip {
     opacity: 1;
 }

 /* Moving gradient animation */
 @keyframes moveGradient {
     0% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }

     100% {
         background-position: 0% 50%;
     }
 }

 /* Apply moving gradient background on hover */
 .fonts-card:hover {
     background: linear-gradient(135deg, #ff6b6b, #45b7d1, #96ceb4, #ff6b6b);
     background-size: 600% 600%;
     animation: moveGradient 4s ease infinite;
 }