 body {
     font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
 }

 .icon-transition {
     transition: transform 0.3s ease;
 }

 .rotate {
     transform: rotate(180deg);
 }

 #themeToggle {
     background: transparent;
     border: none;
     padding: 0.5rem;
     cursor: pointer;
     border-radius: 0.375rem;
     transition: background-color 0.2s ease;
 }

 #themeToggle:hover {
     background-color: rgba(0, 0, 0, 0.1);
 }

 [data-bs-theme="dark"] #themeToggle:hover {
     background-color: rgba(255, 255, 255, 0.1);
 }

 .icon-transition {
     transition: transform 0.3s ease;
 }

 .rotate {
     transform: rotate(180deg);
 }

 .nav-div {
     width: 180px;
 }

 .title-header {
     font-weight: 600;
     font-size: 1.2rem;
     margin-right: 10px;
 }

 .title-div {
     width: 600px;
 }

 .pill-container {
     background-color: rgb(250, 247, 247);
     border: 3px solid #EEEEEE;
     border-radius: .7rem;
     padding: 5px 5px;


 }

 [data-bs-theme="dark"] .pill-container {
     background-color: rgba(24, 24, 27, 0.5);
     border: 3px solid #27272a;
 }

 .nav-pills .nav-link {
     color: #9ca3af;
     /* light grey for inactive */
 }

 .nav-pills .nav-link.active {
     background-color: white !important;
     color: #374151;
     /* deep grey for active */
 }

 [data-bs-theme="dark"] .nav-pills .nav-link.active {
     background-color: #27272a !important;
     color: white
 }

 @media (max-width: 600px) {


     .pill-container {

         width: 100vh;
     }

     .nav-pills .nav-link {
         color: #9ca3af;
         align-content: center;
     }
 }

 /* Profile Images */

 .profile-image {
     position: relative;
     width: 100%;
     max-width: 500px;
     height: 500px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Dotted Circle Paths */
 .orbit-path {
     position: absolute;
     border: .2px solid #EEEEEE;
     border-radius: 50%;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
 }

 [data-bs-theme="dark"] .orbit-path {
     border: .2px solid #727272;

 }

 .orbit-path-1 {
     width: 420px;
     height: 420px;

 }

 .orbit-path-2 {
     width: 320px;
     height: 320px;
 }

 .orbit-path-3 {
     width: 220px;
     height: 220px;
 }

 /* Center Image */
 .center-image {
     position: absolute;
     width: 150px;
     height: 150px;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     background: rgb(213, 212, 212);
     border-radius: 50%;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 10;
     overflow: hidden;

 }

 .center-image img {
     width: 100%;
     height: 100%;
     object-fit: contain;
 }

 .center-placeholder {

     width: 100%;
     height: 100%;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     color: transparent;
 }

 .center-placeholder i {
     font-size: 50px;
     margin-bottom: 10px;
 }

 .center-placeholder span {
     font-size: 16px;
     font-weight: 600;
 }

 @keyframes pulse {

     0%,
     100% {
         transform: translate(-50%, -50%) scale(1);
     }

     50% {
         transform: translate(-50%, -50%) scale(1.05);
     }
 }

 /* Orbiting Elements */
 .orbit-item {
     position: absolute;
     top: 50%;
     left: 50%;
     width: 50px;
     height: 50px;
     margin: -25px 0 0 -25px;
 }

 .orbit-element {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     background: #EEEEEE;
     color: white;
     align-items: center;
     justify-content: center;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     font-size: 20px;
     animation: float 2s ease-in-out infinite;
 }

 [data-bs-theme="dark"] .orbit-element {

     background-color: #363636
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-8px);
     }
 }

 /* Orbit 1 - Large circle with 4 items */
 .orbit-1 {
     animation: orbit 15s linear infinite;
 }

 .orbit-1:nth-child(5) {
     animation-delay: -3.75s;
 }

 .orbit-1:nth-child(6) {
     animation-delay: -7.5s;
 }

 .orbit-1:nth-child(7) {
     animation-delay: -11.25s;
 }

 @keyframes orbit {
     from {
         transform: rotate(0deg) translateX(210px) rotate(0deg);
     }

     to {
         transform: rotate(360deg) translateX(210px) rotate(-360deg);
     }
 }

 /* Orbit 2 - Medium circle with 3 items */
 .orbit-2 {
     animation: orbit2 12s linear infinite;
 }

 .orbit-2:nth-child(9) {
     animation-delay: -4s;
 }

 .orbit-2:nth-child(10) {
     animation-delay: -8s;
 }

 @keyframes orbit2 {
     from {
         transform: rotate(0deg) translateX(160px) rotate(0deg);
     }

     to {
         transform: rotate(-360deg) translateX(160px) rotate(360deg);
     }
 }

 /* Orbit 3 - Small circle with 3 items */
 .orbit-3 {
     animation: orbit3 10s linear infinite;
 }

 .orbit-3:nth-child(12) {
     animation-delay: -3.33s;
 }

 .orbit-3:nth-child(13) {
     animation-delay: -6.66s;
 }


 @keyframes orbit3 {
     from {
         transform: rotate(0deg) translateX(110px) rotate(0deg);
     }

     to {
         transform: rotate(360deg) translateX(110px) rotate(-360deg);
     }
 }


 /* Responsive adjustments */
 @media (max-width: 767px) {
     .profile-image {
         margin-top: .1rem;
         margin-bottom: .2rem;
         margin-left: auto;
         margin-right: auto;
         height: 400px;
         max-width: 400px;
     }

     .orbit-path-1 {
         width: 350px;
         height: 350px;
     }

     .orbit-path-2 {
         width: 260px;
         height: 260px;
     }

     .orbit-path-3 {
         width: 180px;
         height: 180px;
     }

     .center-image {
         width: 120px;
         height: 120px;
     }

     .center-placeholder i {
         font-size: 40px;
     }

     .center-placeholder span {
         font-size: 14px;
     }

     .orbit-element {
         width: 40px;
         height: 40px;
         font-size: 16px;
     }

     .orbit-item {
         width: 40px;
         height: 40px;
         margin: -20px 0 0 -20px;
     }

     @keyframes orbit {
         from {
             transform: rotate(0deg) translateX(175px) rotate(0deg);
         }

         to {
             transform: rotate(360deg) translateX(175px) rotate(-360deg);
         }
     }

     @keyframes orbit2 {
         from {
             transform: rotate(0deg) translateX(130px) rotate(0deg);
         }

         to {
             transform: rotate(-360deg) translateX(130px) rotate(360deg);
         }
     }

     @keyframes orbit3 {
         from {
             transform: rotate(0deg) translateX(90px) rotate(0deg);
         }

         to {
             transform: rotate(360deg) translateX(90px) rotate(-360deg);
         }
     }
 }

 @media (min-width: 768px) {
     .profile-image {
         margin: 0;
     }
 }

 .small-letter {
     font-size: 16px;
     font-weight: 100;
 }

 .card-container:hover {
     border-color: #727272;
 }

 /* .nav a:hover {
   
    color: #cccccc !important; 
    font-weight: bold;
} */
 .text-hover:hover {

     color: #cccccc !important;
     font-weight: bold;
 }



 .verify-btn {
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     padding: 5px 10px;
 }

 /* Light mode */
 .verify-btn:hover {
     background-color: rgba(0, 0, 0, 0.05);
     border-radius: 5px;
 }

 /* Dark mode */
 [data-bs-theme="dark"] .verify-btn:hover {
     background-color: rgba(255, 255, 255, 0.1);
 }

 /* Optional: Active state */
 .verify-btn:active {
     transform: scale(0.98);
 }

 /* Make SVG responsive */
 .verify-btn svg {
     width: clamp(14px, 3vw, 16px);
     height: clamp(14px, 3vw, 16px);
 }

 /* Responsive text */
 @media (max-width: 576px) {
     .verify-btn {
         padding: 0.5rem !important;
     }
 }