.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.bg-img-linked {
    background-image: url('assests/Law\ of\ Bail.png');
}

.animate-bounce {
    animation: bounce 1s infinite;
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.backdrop-blur-lg {
    backdrop-filter: blur(16px);
}

.white-filter {
    filter: brightness(0) invert(1);
}


.white-filter-dm {
    filter: brightness(0) invert(1);
}


.text-alawys-white {
    color: white !important;
}



.bg-blue-600-cus {
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}


.text-gray-800-cus {
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}


.submit-btn {
    color: white;
}


.text-white-cs {
    color: white;
}


.text-gray-400-cs {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}


.text-gray-900-cs {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

/* Fixed Certificate Button */
.fixed-certificate-btn {
    position: fixed;
    right: 20px;
    bottom: 10%;
    z-index: 1000;
}

.w-100 {
    width: 100%;
}

.certificate-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    min-width: 180px;
    font-size: 16px;
 
}

.certificate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.certificate-btn:active {
    transform: translateY(0);
}



.btn-content i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.certificate-btn:hover .btn-content i {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .certificate-btn {
        min-width: 150px;
    }

    .btn-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 20px;
        font-size: 14px;
        font-weight: 600;
    }
    
    .btn-content {
        font-size: 12px;
        padding: 10px 16px;
    }
    
    .btn-content i {
        font-size: 14px;
    }
    

}

@media (max-width: 480px) {
    .certificate-btn {
        min-width: 130px;
    }
    
    .btn-content {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .btn-content i {
        font-size: 12px;
    }
    
  
}


@media (min-width: 768px) {
    .btn-content {
        display: none;
    }
}