/* IoT Sayfası Stilleri */



.iot-container {
    width: 100%;
    min-height: 100vh;
}

.iot-container .hero-section {
    background: linear-gradient(135deg, #1a0033 0%, #2d0136 50%, #1c032b 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.iot-container .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad)"/><circle cx="800" cy="300" r="150" fill="url(%23grad)"/><circle cx="400" cy="700" r="120" fill="url(%23grad)"/></svg>');
    opacity: 0.3;
}

.iot-container .hero-section .container {
    position: relative;
    z-index: 2;
}

.iot-container .display-4 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.iot-container .lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.iot-container .text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

/* Feature Icons */
.iot-container .feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.iot-container .feature-icon:hover {
    transform: scale(1.1);
}

/* Cards */
.iot-container .card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease;
    overflow: hidden;
}

.iot-container .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.iot-container .card-header {
    border-bottom: none;
    font-weight: 600;
}

/* Statistics */
.iot-container .h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Sensor Cards */
.iot-container .card-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.iot-container .card-text {
    color: #6c757d;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .iot-container .display-4 {
        font-size: 2.5rem;
    }
    
    .iot-container .lead {
        font-size: 1.1rem;
    }
    
    .iot-container .hero-section {
        padding: 4rem 0;
    }
    
    .iot-container .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .iot-container .h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .iot-container .display-4 {
        font-size: 2rem;
    }
    
    .iot-container .hero-section {
        padding: 3rem 0;
    }
} 