body {
    background-color: rgb(247, 247, 247);
    font-family: 'Nunito', sans-serif;
}

#grey-bg {
    background-color: rgb(247, 247, 247);
}

#grey-bg-text {
    color: #f7f7f7;
}

/* #f7f7f7 */

.card {
    border: 1px solid transparent;
    /* Adds a transparent border for a consistent layout */
    transition: border-color 0.3s;
    /* Smooth transition for border color change */
}

.card:hover {
    border-color: black;
    /* Change border color to black on hover */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    /* Add shadow on hover */
}

.main-color {
    /* background-color: #007bff; */
    background-color: #0f2652;
    /* Set text color to blue */
}

.main-color-text {
    /* color: #007bff; */
    color: #0f2652;
    /* Set text color to blue */
}


.logo {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    /* Use Black 900 for the navbar brand item */
    font-size: 30px;
    ;
}

.no-text-decoration {
    text-decoration: none;
}

.no-list-style {
    list-style-type: none; /* Remove default list dots */
    padding-left: 0; /* Optional: Remove left padding if needed */
  }

.footer {
    background-color: #f5f5f5;
    padding: 2rem 1.5rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-column {
    margin-bottom: 1.5rem;
}

.footer-column h2 {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #3273dc;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

#navbar-logo:hover {
    /* text-decoration: underline; */
    background-color: transparent !important;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: none; /* Hidden by default */
  }

  .custom-border {
    border: 1px solid rgb(66, 88, 255);  /* You can adjust the color and thickness */
    border-radius: 5px;  /* Optional: keep the border consistent with Bulma's rounded corners */
  } 


/* Trending skills ticker */
  .skills-ticker-container {
    overflow: hidden;
    position: relative;
    padding: 15px 0;
    background: #f8f9fa;
    border-radius: 8px;
  }
  
  .skills-ticker {
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    display: inline-block;
    padding: 0 20px;
  }
  
  .skills-ticker:hover {
    animation-play-state: paused;
  }
  
  .skills-group {
    display: inline-block;
    margin-right: 30px;
    vertical-align: middle;
  }
  
  .skills-group-label {
    font-weight: bold;
    margin-right: 10px;
  }
  
  @keyframes ticker {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  .has-border-black-skill {
    border-top: 1px solid #0f2652 !important;
    border-right: 1px solid #0f2652 !important;
    border-bottom: 1px solid #0f2652 !important;
    border-left: 1px solid #0f2652 !important;
  }

  .has-border-black {
    border-top: 1px solid #0f2652 !important;
    border-right: 0px solid #0f2652 !important;
    border-bottom: 1px solid #0f2652 !important;
    border-left: 1px solid #0f2652 !important;
  }


  /* Fancy border */

  .animated-gradient-border {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .animated-gradient-border::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    z-index: -1;
    background: linear-gradient(270deg, #ff6ec4, #7873f5, #42e695, #ff6ec4);
    background-size: 600% 600%;
    border-radius: 8px;
    animation: gradientBorder 3s ease infinite;
  }
  
  @keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }



