/* Custom styles for Decosecurity */

body {
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: bold;
}

section {
    margin-bottom: 2rem;
}

h3 {
    color: #333;
    margin-bottom: 1rem;
}

.list-group-item {
    border: none;
    background-color: transparent;
}

.alert {
    margin-top: 1rem;
}

form {
    display: flex;
    flex-direction: column;
}

input, textarea {
    margin-bottom: 1em;
    padding: 0.5em;
}

/* Security-themed animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
    background: linear-gradient(45deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 20px;
    border: 2px solid #007bff;
    border-radius: 10px;
    display: inline-block;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn:hover {
    transform: scale(1.05);
    transition: all 0.2s ease;
}

.security-icon {
    width: 50px;
    height: 50px;
    fill: #007bff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Mobile Responsiveness Enhancements */
@media (max-width: 768px) {
    .hero-bg .col-lg-8, .hero-bg .col-lg-4 {
        text-align: center;
    }
    
    .hero-bg h2 {
        font-size: 1.5rem;
    }
    
    .hero-bg p.lead {
        font-size: 1rem;
    }
    
    .counter {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }
    
    .live-clock {
        font-size: 0.8rem;
        padding: 5px;
    }
    
    .testimonial-carousel .card {
        max-width: 100%;
    }
    
    .footer .col-md-4 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-bg {
        padding: 2rem 1rem;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .card-body h5 {
        font-size: 1.1rem;
    }
    
    .card-body p {
        font-size: 0.9rem;
    }
}