/* Custom Styles for bay56 Cybersecurity */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    padding: 100px 0;
    margin-bottom: 0;
}

/* Service Cards */
.service-card {
    min-height: 250px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i.material-icons {
    margin-bottom: 20px;
}

/* Stats */
.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
    margin: 10px;
}

.stat h4 {
    margin: 0;
    font-weight: bold;
}

/* Security Card */
.security-card {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.full-width {
    width: 100%;
}

/* Collection Items */
.collection .collection-item {
    display: flex;
    align-items: center;
}

.collection .collection-item i {
    margin-right: 10px;
}

/* Form Styles */
.card-panel {
    border-radius: 10px;
}

.input-field label {
    color: #5c6bc0;
}

.input-field input:focus + label,
.input-field textarea:focus + label {
    color: #3949ab !important;
}

.input-field input:focus,
.input-field textarea:focus {
    border-bottom: 1px solid #3949ab !important;
    box-shadow: 0 1px 0 0 #3949ab !important;
}

/* Responsive */
@media only screen and (max-width: 600px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .stat {
        margin: 20px 0;
    }
}

/* Print Styles */
@media print {
    .btn, .sidenav-trigger {
        display: none !important;
    }
}