/* Global Styles */
* {
    font-family: 'Roboto', sans-serif;
}

:root {
    --primary-color: #d65e2a;
    --secondary-color: #00448d;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --text-muted: #6c757d;
    --gradient-overlay: linear-gradient(135deg, rgba(0, 68, 141, 0.8), rgba(214, 94, 42, 0.8));
}

body {
    line-height: 1.6;
    color: var(--dark-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url("https://beta3.infotrends.com/media/4321/cyber-security.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-description p {
    margin-bottom: 1rem;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-buttons .btn-primary:hover {
    background-color: #c55426;
    border-color: #c55426;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

.service-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 68, 141, 0.7), rgba(214, 94, 42, 0.7));
    transition: background 0.3s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(135deg, rgba(0, 68, 141, 0.9), rgba(214, 94, 42, 0.9));
}

.service-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
    margin-bottom: 0;
}

/* Service Background Images */
.service-card.hardware-testing {
    background-image: url("https://beta3.infotrends.com/media/4333/copier-printer-hardware-testing.jpg");
}

.service-card.device-policy {
    background-image: url("https://beta3.infotrends.com/media/4332/copier-printer-device-policy.jpg");
}

.service-card.iot {
    background-image: url("https://beta3.infotrends.com/media/4334/iot.jpg");
}

.service-card.security-seal {
    background-image: url("https://beta3.infotrends.com/media/4337/security-seal.jpg");
}

.service-card.audit {
    background-image: url("https://beta3.infotrends.com/media/4335/security-integrity-audit.jpg");
}

.service-card.network-monitoring {
    background-image: url("https://beta3.infotrends.com/media/4336/security-network-monitoring.jpg");
}

.service-card.security-assessment {
    background-image: url("https://beta3.infotrends.com/media/4344/security-assessment.jpg");
}

.service-card.security-ciso {
    background-image: url("https://beta3.infotrends.com/media/4345/security-ciso.jpg");
}

/* What's Included Section */
.included-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pdf-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pdf-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pdf-header {
    background: var(--secondary-color);
    color: white;
    padding: 15px;
    text-align: center;
}

.pdf-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.pdf-thumbnail {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.pdf-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pdf-overlay i {
    font-size: 3rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pdf-card:hover .pdf-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.pdf-card:hover .pdf-overlay i {
    opacity: 1;
}

.pdf-footer {
    padding: 15px;
    text-align: center;
    position: relative;
}

.pdf-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -25px auto 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pdf-icon i {
    font-size: 1.5rem;
    color: white;
}

/* PDF Thumbnail Background Images */
.pdf-thumbnail.e-arlo {
    background-image: url("https://beta3.infotrends.com/media/4402/aca-thumbs-cybersecurity-integrity-audit.jpg");
}

.pdf-thumbnail.e-eufy {
    background-image: url("https://beta3.infotrends.com/media/4401/aca-thumbs-managed-detection-and-responsive-as-a-service.jpg");
}

.pdf-thumbnail.e-nooie {
    background-image: url("https://beta3.infotrends.com/media/4400/aca-thumbs-vciso.jpg");
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
}

.benefit-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-image img:hover {
    transform: translateY(-5px);
}

.benefit-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon img {
    max-width: 50px;
    max-height: 50px;
    filter: brightness(0) invert(1);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.benefit-list {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.benefit-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.contact-banner {
    background-image: url("https://beta3.infotrends.com/media/4164/additive-manufacturing-banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 68, 141, 0.8);
    z-index: 1;
}

.contact-banner * {
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.contact-buttons .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Modal Customizations */
.modal-xl {
    max-width: 90%;
}

.modal-header {
    background: var(--secondary-color);
    color: white;
}

.modal-title {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .contact-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }
    
    .benefit-icon img {
        max-width: 35px;
        max-height: 35px;
    }
    
    .contact-banner {
        padding: 60px 30px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .services-section,
    .included-section,
    .benefits-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .service-card {
        min-height: 250px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.service-card,
.pdf-card,
.benefit-item {
    animation: fadeInUp 0.8s ease-out;
}

