/* Custom styles for Secure Video Bot */

/* Feature Icons */
.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Card hover effect */
.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Progress bars */
.progress {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    border-radius: 10px;
}

/* Custom button styles */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
}

/* Header styling */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Footer styling */
footer {
    margin-top: auto;
}

footer a {
    transition: opacity 0.2s;
    text-decoration: none;
}

footer a:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* Premium page specific styles */
.bg-warning {
    color: #212529;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    h1.display-4 {
        font-size: 2.5rem;
    }
}
