.scrolling-text-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.scrolling-text {
    display: inline-block;
    white-space: nowrap;
    animation: scrollText 15s linear infinite;
    color: white;
    font-weight: bold;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.upwork-link {
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url('../images/upwork.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
}

.social-links:hover .upwork-link {
    background-image: url('../images/upwork_gray.svg');
}

.upwork-link:hover {
    transform: scale(0.8);
    background-image: url('../images/upwork_gray.svg');
}

.academia-link{
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('../images/academia.png');
    background-size: contain;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
}

.social-links:hover .academia-link {
    background-image: url('../images/academia-gray.png');
}

.academia-link:hover {
    transform: scale(0.8);
}

.flip-container {
    perspective: 1000px; /* Creates 3D depth */
    display: inline-block;
}

.flipper {
    width: 200px; /* Adjust as needed */
    height: 50px;
    position: relative;
    transform-style: preserve-3d;
    animation: flipAnimation 3s infinite linear;
}

.front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* Hides the back side when flipped */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Front Side (Default View) */
.front {
    background: linear-gradient(45deg, #000000, #555555);
    color: white;
}

/* Back Side (Flipped View) */
.back {
    background: linear-gradient(45deg, #555555, #000000);
    color: white;
    transform: rotateY(180deg);
}

/* Flip Effect on Hover */
.flip-container:hover .flipper {
    transform: rotateY(180deg);
}

@keyframes flipAnimation {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

/* checkbox */
/* Default Checkbox Style */
.form-check-input{
    border: 2px solid #727476;
    
}

/* Checked State */
.form-check-input:checked {
    background-color: #727476;
    border-color: #727476;
    position: relative;
}

/* Custom Tick for Checked State */
.form-check-input:checked::after {
    font-size: 14px;
    color: white;
    position: absolute;
    left: 4px;
    top: 0px;
}

/* Hover Effect */
.form-check-input:hover {
    border-color: #5a5b5d;
}

/* Focus Outline */
.form-check-input:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(114, 116, 118, 0.5);
}

/* footer */    
:root {
    --color-primary: #EDB429;
    --color-secondary: #04c2c9;
  }
  
.container-footer, footer {
    background-color: #1b242f;
}

.social {
    padding: 30px 0px 50px;
  }
  
  
  .social a {
    font-family: 'Montserrat', monospace;
    display: inline-block;
    justify-content: center;
    
    border-radius: 0px;
    background: #262f38;
    position: relative;
    text-align: center;
    color: #fff;
    background: #262f38;
    cursor: pointer;
    font-size: 18pt;
    margin: 0 15px;
    overflow: hidden;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
    text-decoration: none;
  }
  
  .social .acc_port_social{
    width: 255px;
    height: 100px;
  }
  
  .social .contact_social{
    margin-bottom: 5px;
    width: 170px;
    height: 85px;
  }
  
  
  .social a span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .fa-2x {
    font-size: 1.5rem;
  }
  
  footer .social .fa-2x {
    display: inline-block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  footer .social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-secondary);
    transition: 0.5s;
    transform: scale(0.9);
    z-index: -1;
  }
  
  footer .social a:hover::before {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--color-secondary);
  }
  
  footer .social a:hover {
    color: var(--color-secondary);
    box-shadow: 0 0 5px var(--color-secondary);
    text-shadow: 0 0 5px var(--color-secondary);
    transition: all 0.2s;
  }
  
  footer .info {
    font-size: 12pt;
  }
  footer .headline{
    color: var(--color-secondary);
    font-family: 'Montserrat', monospace;
    font-weight: 500;
    font-size: 1.2rem;
  }
  footer .author, .copyright{
    color: #4b5156;
    font-family: 'Montserrat', monospace;
    font-weight: 500;
    font-size: 1.2rem;
  }
  @media (max-width: 768px) {
    .social a {
        width: 120px; 
        height: 60px; 
        font-size: 12pt; 
        margin: 0 10px;
    }
  }
  
  footer .copyright{
    color: var(--color-primary);
  }
  

