        :root {
            --icare-blue-light: #A8C5D6;
            --icare-blue-medium: #6699B8;
            --icare-blue-dark: #1E3A5F;
            --icare-blue-navy: #0D1F3C;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar-brand img {
            height: 150px;
        }

        .nav-link {
            color: var(--icare-blue-dark) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s;
            font-size: x-large;
        }

        .nav-link:hover {
            color: var(--icare-blue-medium) !important;
        }
        .nav-link-supremo {
            color: green;
            font-weight: 500;
            margin: 10px 15px;
            transition: all 0.3s;
            font-size: x-large;
            border: 2px solid green;
            padding: 10px 12px;
            border-radius: 6px;
            text-decoration: none;
            position: relative;
            top: 8px;
        }

        .nav-link-supremo:hover {
            color: red !important;
            border-color: red;
            background-color: rgba(255, 0, 0, 0.05);
            text-decoration: none;
        }



        .hero {
            background: linear-gradient(135deg, var(--icare-blue-dark) 0%, var(--icare-blue-medium) 100%);
            color: white;
            padding: 200px 0 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
            opacity: 0.3;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .btn-icare {
            background-color: var(--icare-blue-light);
            color: var(--icare-blue-dark);
            border: none;
            padding: 12px 35px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .btn-icare:hover {
            background-color: white;
            color: var(--icare-blue-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .section-title {
            color: var(--icare-blue-dark);
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--icare-blue-medium);
            border-radius: 2px;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            height: 100%;
            transition: all 0.3s;
            border: 2px solid transparent;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--icare-blue-medium);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--icare-blue-medium), var(--icare-blue-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 30px;
            color: white;
        }

        .feature-highlight {
            background: linear-gradient(135deg, var(--icare-blue-light) 0%, white 100%);
            padding: 80px 0;
        }

        .experience-badge {
            background-color: var(--icare-blue-dark);
            color: white;
            padding: 60px 40px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .experience-number {
            font-size: 4rem;
            font-weight: 700;
            color: var(--icare-blue-light);
            margin-bottom: 10px;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--icare-blue-dark) 0%, var(--icare-blue-navy) 100%);
            color: white;
            padding: 80px 0;
        }

        footer {
            background-color: var(--icare-blue-navy);
            color: white;
            padding: 40px 0 20px;
        }

        footer a {
            color: var(--icare-blue-light);
            text-decoration: none;
            transition: color 0.3s;
        }

        footer a:hover {
            color: white;
        }

        .stats-box {
            text-align: center;
            padding: 30px;
        }

        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--icare-blue-medium);
        }

         .partner-photo-container {
            display: inline-block;
            position: relative;
        }

       .partner-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            overflow: hidden;
            background-color: #f8f9fa;
            border: 5px solid var(--icare-blue-light);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            transition: all 0.3s;
            
        }

        .partner-photo:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(0,0,0,0.25);
            border-color: var(--icare-blue-medium);
        }

        .check-icon {
            width: 20px;
            height: 20px;
            fill: #198754;
            vertical-align: middle;
        }

        .contact-icon {
            width: 35px;
            height: 35px;
            fill: white;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
        }
    
        /* Sezioni servizi alternate */
.feature-section {
    background: linear-gradient(135deg, var(--icare-blue-light) 0%, white 100%);
    padding: 80px 0;
}

.feature-section-alt {
    background: white;
    padding: 80px 0;
}

/* Badge informativi */
.info-badge {
    background-color: var(--icare-blue-dark);
    color: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.badge-icon {
    font-size: 4rem;
    color: var(--icare-blue-light);
}

.info-badge h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Visualizzazione sicurezza con scudo */
.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.shield-container {
    position: relative;
    text-align: center;
}

.shield-container i {
    font-size: 15rem;
    color: var(--icare-blue-medium);
    opacity: 0.2;
}

.shield-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shield-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--icare-blue-dark);
}

.shield-label {
    font-size: 1.2rem;
    color: var(--icare-blue-medium);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-section,
    .feature-section-alt {
        padding: 60px 0;
    }
    
    .shield-container i {
        font-size: 10rem;
    }
    
    .shield-number {
        font-size: 2rem;
    }
}
/* ========================================== */
/* SEZIONE PARTNER - OPZIONE A: SLIDER        */
/* ========================================== */
.partners-section {
    background: white;
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
}

.partners-slider {
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.partner-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* ========================================== */
/* ASSISTENZA SISTEMISTICA - STATS BADGE      */
/* ========================================== */

/* Stats nel badge info */
.experience-stats {
    text-align: left;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 1rem;
}

.stat-item i {
    color: var(--icare-blue-light);
    font-size: 1.3rem;
}

/* Competenze Badge (opzionale) */
.competenze-badge {
    background-color: var(--icare-blue-dark);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.competenze-badge .badge-icon {
    font-size: 3.5rem;
    color: var(--icare-blue-light);
}

.competenze-badge h4 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: white;
}

.tech-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.tech-item i {
    font-size: 1.5rem;
}

.tech-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive Assistenza Stats */
@media (max-width: 768px) {
    .tech-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .competenze-badge {
        padding: 30px 20px;
    }
    
    .tech-item {
        padding: 10px;
    }
    
    .stat-item {
        font-size: 0.95rem;
    }
}
#chi-siamo {
    background: #f8f9fa;
}
/* Link card cliccabili */
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}*/

.card-link:hover {
    text-decoration: none;
    color: inherit;
}

.card-link .service-card {
    cursor: pointer;
}
html {
    scroll-padding-top: 180px;
    scroll-behavior: smooth;
}
/* ========================================== */
/* BUSINESS EXPERIENCE - LOGHI                */
/* ========================================== */

/* Logo Prodotto nel Badge */
.product-logo {
    max-width: 300px;
    margin: 0 auto;
}

.product-logo img {
    width: 100%;
    height: auto;
    }

/* Logo Partner nel Badge */
.partner-badge {
    max-width: 200px;
    margin: 20px auto 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.partner-badge img {
    width: 100%;
    height: auto;
    
}

/* Responsive */
@media (max-width: 768px) {
    .product-logo {
        max-width: 150px;
    }
    
    .partner-badge {
        max-width: 120px;
    }
}

/* ========================================== */
/* FORM CONTATTI                              */
/* ========================================== */

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-form-container .form-label {
    color: white;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-form-container .form-control,
.contact-form-container .form-select {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.contact-form-container .form-control:focus,
.contact-form-container .form-select:focus {
    background: white;
    border-color: var(--icare-blue-light);
    box-shadow: 0 0 0 0.2rem rgba(168, 197, 214, 0.25);
}

.contact-form-container .form-check-label {
    color: white;
    font-size: 0.9rem;
}

.contact-form-container .form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.15rem;
    cursor: pointer;
}

.contact-form-container .form-check-input:checked {
    background-color: var(--icare-blue-light);
    border-color: var(--icare-blue-light);
}

.btn-loading .spinner-border {
    width: 1rem;
    height: 1rem;
}

/* Alert Messages */
.alert {
    border-radius: 8px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px 20px;
    }
}

/* ========================================== */
/* FOOTER - Logo Affiancato                   */
/* ========================================== */

.footer {
    background: linear-gradient(135deg, var(--icare-blue-navy) 0%, var(--icare-blue-dark) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

/* Logo Affiancato alla Ragione Sociale */
.footer-logo-inline {
    max-width: 60px;
    height: auto;
    flex-shrink: 0;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-text strong {
    color: white;
    font-weight: 600;
}

.footer-social {
    margin-top: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: var(--icare-blue-light);
    color: var(--icare-blue-dark);
    transform: translateY(-3px);
}

.btn-footer-map {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-footer-map:hover {
    background: var(--icare-blue-light);
    color: var(--icare-blue-dark);
    border-color: var(--icare-blue-light);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-link:hover {
    color: var(--icare-blue-light);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .footer-logo-inline {
        max-width: 80px;
    }
    
    .d-flex.align-items-center {
        justify-content: center;
    }
    
    .btn-footer-map {
        width: 100%;
        margin-top: 10px;
    }
}
.footer-logo-large {
    max-width: 100px;
    height: auto;
    flex-shrink: 0;
}