   body {
            font-family: 'Poppins', sans-serif;
        }
        
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            font-weight: 600;
        }
        
        .section-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #0d6efd;
        }
        
        .service-card {
            display: flex;
    flex-direction: column;
    justify-content: space-between;
	
    transition: all 0.3s ease;
           // border-left: 3px solid #0d6efd;
            border-radius: 8px;
            margin-bottom: 15px;
            padding: 15px;
            //background: #212529;
			color: white;
        }
         
        .service-card:hover { 
            color: white !important;
            background-color: #0d6efd !important;
			
        }
        
        .service-card:hover > div > i {    
            color: white !important;
           
        }
        
        .service-icon {
            font-size: 1.5rem;
          
            margin-right: 10px;
        }
        
        .device-feature i {
            color: #0d6efd;
            font-size: 1.5rem;
            margin-right: 10px;
        }
        
        .spec { 
            background: #0d6efd;
        }
        .spec:hover { 
			background: #fd6584 !important;
		}
        .spec > div { 
            color: white;
        }
        
        .spec:hover > div { 
            color: white;
        }
        .carousel-item > div > img { 
				height: 250px;
			}
			
        @media (max-width: 992px) {
            .hero-services {
                margin-bottom: 30px;
            }
			.carousel-item > div > img { 
				width: 100%;
			}
			.carousel-item > div  { 
				
			}
        }
        
        /* Nowoczesny, minimalistyczny dropdown */
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border-radius: 8px;
            padding: 8px 0;
            min-width: 220px;
            transform: translateY(5px);
        }
        
        .dropdown-menu .dropdown-item {
            padding: 8px 16px;
            font-size: 0.9rem;
            color: #333;
            transition: all 0.2s ease;
            position: relative;
        }
        
        .dropdown-menu .dropdown-item:hover,
        .dropdown-menu .dropdown-item:focus {
            background-color: #f8f9fa;
            color: #0d6efd;
        }
        
        .dropdown-menu .dropdown-item:hover::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: #0d6efd;
            border-radius: 0 3px 3px 0;
        }
        
        .dropdown-menu .dropdown-divider {
            margin: 5px 0;
            opacity: 0.3;
        }
		
		section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Opóźnienia dla kolejnych sekcji */
section:nth-child(1) { animation-delay: 0.1s; }
section:nth-child(2) { animation-delay: 0.3s; }
section:nth-child(3) { animation-delay: 0.5s; }
section:nth-child(4) { animation-delay: 0.7s; }


.service-card {
    transform: scale(0.95);
    opacity: 0;
    animation: cardAppear 0.5s ease-out forwards;
}

@keyframes cardAppear {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Opóźnienia dla kolejnych kart */
.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }


.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-item img {
    transform: scale(0.9);
    transition: transform 0.5s ease;
}

.carousel-item.active img {
    transform: scale(1);
}

/* Animacje dla CTA */
#cta {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

#cta::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

#cta .btn-light {
    transition: all 0.3s ease;
    transform: translateY(0);
}

#cta .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

#cta .btn-outline-light {
    transition: all 0.3s ease;
}

#cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Nowoczesna nawigacja - zachowująca minimalizm i collapse */
.navbar {
    transition: all 0.4s ease;
    padding: 0.75rem 0;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
   
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-1px);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    font-weight: 500;
    color: #212529 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    color: #0d6efd !important;
    transform: translateY(-1px);
}

.nav-link.active {
    color: #0d6efd !important;
    background-color: rgba(13, 110, 253, 0.1);
}

.nav-link.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: #0d6efd;
    border-radius: 2px;
}

.nav-link.text-primary {
    color: #0d6efd !important;
    background-color: rgba(13, 110, 253, 0.1);
    padding: 0.5rem 1.25rem !important;
}

.nav-link.text-primary:hover {
    background-color: rgba(13, 110, 253, 0.2);
    transform: translateY(-1px);
}

/* Responsywność - dostosowanie dla mniejszych ekranów */
@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem 0;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.15rem 0;
    }
    
    .nav-link.active:after {
        display: none;
    }
    
    .nav-link.active {
        background-color: rgba(13, 110, 253, 0.1);
    }
}

/* Animacja otwierania menu */
.collapsing {
    transition: height 0.35s ease;
}

/* Efekt hover dla desktop */
@media (min-width: 992px) {
    .nav-link:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: #0d6efd;
        transition: width 0.3s ease;
    }
    
    .nav-link:hover:before {
        width: 20px;
    }
    
    .nav-link.active:before {
        width: 20px;
    }
}

/* Styl dla alertu alarmowego */
.emergency-alert {
    background-color: #0d6efd;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-weight: 500;
    animation: pulse 2s infinite;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.emergency-alert a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.emergency-alert i {
    margin-right: 8px;
}

@keyframes pulse {
    0% { opacity: 0.9; }
    50% { opacity: 1; }
    100% { opacity: 0.9; }
}


  
/* Alerty - nowoczesna wersja */
.alert {
    border-radius: 8px;
    padding: 1rem 1.25rem;
    border: none;
    background-color: #f8f9fa;
    //box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    margin: 1rem 0;
}

.alert::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: currentColor;
    opacity: 0.25;
}

.alert i {
    font-size: 1.2em;
    margin-right: 0.75rem;
    vertical-align: middle;
}

.alert-info {
    color: #0d6efd;
    background-color: #f0f7ff;
}

.alert-warning {
    color: #fd7e14;
    background-color: #fff4e6;
}

.alert-danger {
    color: #dc3545;
    background-color: #fff0f0;
}

.alert-success {
    color: #198754;
    background-color: #f0fff4;
}

/* Kolory ikon w zależności od sekcji */
.text-danger i { color: #dc3545; }
.text-primary i { color: #0d6efd; }
.text-warning i { color: #fd7e14; }




  .hero-section {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 3rem 0;
         
           
        }
        .card-btn {
            transition: all 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            height: 100%;
            text-align: center;
            padding: 2rem 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .card-btn:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .card-btn i {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .btn-primary {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 1.5rem;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            border-radius: 2px;
        }