        :root {
            --primary: #000000;
            --secondary: #FFFFFF;
            --accent: #F0B000;
            --dark-bg: #121212;
            --light-bg: #F8F8F8;
            --text: #333333;
            --text-light: #777777;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--secondary);
            color: var(--text);
            overflow-x: hidden;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/Zampa_security.webp') no-repeat center center/cover;
            color: var(--secondary);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            overflow: hidden;
        }
        
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(240, 176, 0, 0.1) 0%, rgba(240, 176, 0, 0) 50%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .hero h1 span {
            color: var(--accent);
        }
        
        .hero p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 30px;
            line-height: 1.6;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--accent);
            color: var(--primary);
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
            border: 2px solid var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cta-button:hover {
            background-color: transparent;
            color: var(--accent);
            
        }

        
        .stats-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
            animation: fadeIn 1.5s ease-out;
        }
        
        .stat-box {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(240, 176, 0, 0.3);
            padding: 20px 30px;
            border-radius: 8px;
            text-align: center;
            min-width: 150px;
            backdrop-filter: blur(5px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Industries Section */
        .industries {
            padding: 80px 20px;
            background-color: var(--light-bg);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent);
        }
        
        .section-title p {
            color: var(--text-light);
            max-width: 700px;
            margin: 15px auto 0;
            line-height: 1.6;
        }
        
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .industry-card {
            background-color: var(--secondary);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }
        
        .industry-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .industry-img {
            height: 200px;
            overflow: hidden;
        }
        
        .industry-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .industry-card:hover .industry-img img {
            transform: scale(1.1);
        }
        
        .industry-content {
            padding: 25px;
        }
        
        .industry-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .industry-content p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .read-more {
            display: inline-block;
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .read-more:hover {
            color: var(--primary);
        }
        
        /* Solutions Sections */
        .solution-section {
            padding: 80px 20px;
        }
        
        .solution-section:nth-child(even) {
            background-color: var(--dark-bg);
            color: var(--secondary);
        }
        
        .solution-section:nth-child(even) .section-title h2,
        .solution-section:nth-child(even) .section-title p {
            color: var(--secondary);
        }
        
        .solution-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }
        
        .solution-img {
            flex: 1;
            min-width: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .solution-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .solution-img:hover img {
            transform: scale(1.05);
        }
        
        .solution-content {
            flex: 1;
            min-width: 300px;
        }
        
        .solution-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: inherit;
        }
        
        .solution-content h2 span {
            color: var(--accent);
        }
        
        .solution-content p {
            margin-bottom: 25px;
            line-height: 1.6;
            color: inherit;
            opacity: 0.9;
        }
        
        .key-areas {
            margin-top: 30px;
        }
        
        .key-areas h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .area-item {
            background-color: rgba(240, 176, 0, 0.1);
            padding: 15px;
            border-left: 3px solid var(--accent);
            border-radius: 0 4px 4px 0;
        }
        
        .solution-section:nth-child(even) .area-item {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .area-item h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: inherit;
        }
        
        .area-item p {
            font-size: 0.9rem;
            margin-bottom: 0;
            opacity: 0.8;
        }
        
        .benefits-list {
            margin-top: 30px;
        }
        
        .benefits-list h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--accent);
        }
        
        .benefits-list ul {
            list-style-type: none;
        }
        
        .benefits-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
        }
        
        .benefits-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--accent);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 20px;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
            color: var(--secondary);
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero {
                height: auto;
                padding: 100px 20px;
            }
            
            .stats-container {
                gap: 15px;
            }
            
            .stat-box {
                padding: 15px 20px;
                min-width: 120px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .solution-container {
                flex-direction: column;
            }
            
            .solution-img {
                order: -1;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
            
            .cta-section p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .stats-container {
                flex-direction: column;
                align-items: center;
            }
            
            .stat-box {
                width: 100%;
                max-width: 200px;
            }
        }
        
        /* Force all buttons and interactive elements to be always visible and clickable */
button, 
a, 
input[type="submit"], 
input[type="button"], 
[onclick], 
[href],
.cta-button {
    pointer-events: auto !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Override any animation classes for interactive elements */
button.animate-on-scroll,
a.animate-on-scroll,
.cta-button.animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Ensure parent containers don't block interactions */
.hero-content, 
.industry-content, 
.solution-content,
.cta-section {
    pointer-events: auto !important;
}

/* Specific CTA button styles to ensure visibility */
.cta-button {
    display: inline-block !important;
    visibility: visible !important;
}

        
        
