/* Hero Content Custom Background */
.hero-content-bg {
    background: url('hero-inner-bg.jpg') no-repeat center center/cover;
    border-radius: 18px;
    padding: 48px 32px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    max-width: 540px;
    margin: 0 auto;
    backdrop-filter: blur(1.5px);
}
/* Global Styles & Red Theme */
:root {
    --primary-color: #008080; /* Teal Green */
    --secondary-color: #d9534f; /* Accent Red/Alert Color */
    --dark-bg: #1c1c1c; /* Deep Dark Background */
    --light-bg: #f7f7f7;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

h1, h2, h3, h4 {
    color: var(--dark-bg);
    margin-bottom: 0.8em;
}

h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s;
}

section {
    padding: 80px 5%;
    text-align: center;
}

/* Header & Navigation */

.main-header {
    background: white url('header-bg.jpg') no-repeat center center/cover;
    color: var(--dark-bg);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}


.logo h1, .logo img {
    color: var(--dark-bg);
    filter: none;
}

nav ul { list-style: none; display: flex; }
nav ul li { margin-left: 25px; }

nav ul li a { color: var(--dark-bg); padding: 10px; transition: color 0.3s; }
nav ul li a:hover { color: var(--secondary-color); }

.cta-button {
    background: var(--secondary-color);
    padding: 8px 15px;
    border-radius: 5px;
    color: white !important;
    font-weight: bold;
}

/* Hero Section */
.hero {
    /* Placeholder for a strong, dark image with security graphics overlay */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('hero-bg-security-dark.jpg') no-repeat center center/cover;
    color: white;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.hero h2 {
    font-size: 3em;
    color: white;
    font-weight: 900;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 40px;
}

.hero-buttons a {
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    margin: 0 10px;
    display: inline-block;
}

.primary-button {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}
.primary-button:hover {
    background: #005656;
    color: white;
}

.secondary-button {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.secondary-button:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Services Grid */
.services-section {
    background-color: white;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card {
    background: var(--light-bg);
    padding: 0; 
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 300px;
    text-align: left;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-bottom: 4px solid var(--secondary-color);
}

.service-card h3 {
    padding: 15px 20px 0;
    font-size: 1.4em;
    color: var(--dark-bg);
}

.service-card p {
    padding: 10px 20px 20px;
    font-size: 0.95em;
    color: #555;
}

/* Trust Section */
.trust-section {
    background-color: var(--light-bg);
}

.features-list {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    width: 30%;
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
}

.feature-item i {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.2em;
    color: var(--primary-color);
}


/* Contact Section */
.contact-info-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto 30px;
}

.contact-details {
    width: 50%;
}

.contact-details h3 {
    color: var(--secondary-color);
}

.contact-details p {
    margin: 15px 0;
    font-size: 1.1em;
}

.contact-details i {
    color: var(--primary-color);
    margin-right: 10px;
}

.map-placeholder {
    width: 50%;
    background: #eee;
    padding: 100px 20px;
    text-align: center;
    border: 1px solid #ddd;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    font-size: 1.5em;
    margin: 0 10px;
    color: var(--dark-bg);
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Footer */
.main-footer {
    background: var(--dark-bg);
    color: #999;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
}

.main-footer a {
    color: #ccc;
}

/* Mouse Tracking Dot Style (Interactive Cursor) */
.mouse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 15px rgba(0, 128, 128, 0.8); /* Glow effect */
}

/* Mouse Dot Active State (Grows on interactive elements) */
.mouse-dot.active {
    width: 40px;
    height: 40px;
    background-color: rgba(217, 83, 79, 0.4); /* Semi-transparent Red */
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 20px var(--secondary-color);
}

/* Hide the unused H1 tag from view but keep it for SEO */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
    }
    nav ul { margin-top: 10px; }
    .hero h2 { font-size: 2em; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons a { margin: 10px 0; }
    .service-grid { gap: 20px; }
    .service-card { width: 90%; }
    .features-list { flex-direction: column; gap: 20px; }
    .feature-item { width: 100%; }
    .contact-info-grid { flex-direction: column; gap: 30px; }
    .contact-details, .map-placeholder { width: 100%; }
    .map-placeholder { padding: 50px 20px; }
}