/* Custom CSS for Security Website */

:root {
    --primary-color: #0e765c;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
}

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

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 60vh;
}

.hero-section h1 {
    color: #212529;
    font-weight: 700;
}

.hero-section .lead {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Cards */
.card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-header {
    border-bottom: none;
    padding: 2rem 1.5rem 1rem;
}

.card-body {
    padding: 1.5rem;
}

/* Buttons */
.btn {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Pricing */
.pricing-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.price-tag h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Icons */
.fs-1 {
    font-size: 3rem !important;
}

/* Stars */
.stars i {
    font-size: 0.875rem;
}

/* Featured Product Card */
.border-danger {
    border-width: 2px !important;
}

/* Awards Section */
.award-circle {
    padding: 1rem;
}

.award-circle img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* Testimonials */
.testimonial-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: #212529 !important;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff !important;
}

.social-links a {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .display-5 {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .fs-1 {
        font-size: 2rem !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease-out;
}

/* Utilities */
.text-decoration-line-through {
    text-decoration: line-through !important;
}

.border-2 {
    border-width: 2px !important;
}

/* Custom spacing */
.py-5 {
    padding: 4rem 0;
}

.py-4 {
    padding: 3rem 0;
}

/* Hover effects for feature lists */
.list-unstyled li {
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.list-unstyled li:hover {
    padding-left: 0.5rem;
    color: var(--primary-color);
}

/* Custom accordion styling */
.accordion-button {
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: var(--primary-color);
}

/* CTA Section */
.bg-primary {
    background: linear-gradient(135deg, #0e765c 0%, #05614a 100%) !important;
}