 /* Global Font Styles */
body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6, .call-btn {
    font-family: 'Montserrat', sans-serif;
}

/* Sticky Navbar */
.navbar {
    background: #2c3e50;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.navbar-brand img {
    height: 50px;
}

/* Navbar Links */
.navbar-nav .nav-item {
    margin: 0 12px; /* Spacing Between Items */
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 600;
    padding: 12px 15px;
    transition: 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #1d5170 !important;
}

/* Get Protected Button */
.btn-primary {
    background: #0d0c11;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #2c3e50;
    border: 1px solid #fff;
}

/* Mobile Navbar */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon {
    filter: invert(1); /* Makes the icon white */
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .navbar-nav {
        text-align: center;
        background: #2c3e50;
        padding: 10px 0;
    }

    .nav-item {
        padding: 8px 0;
    }

    .btn-primary {
        display: block;
        text-align: center;
        margin-top: 10px;
    }
}
/* Banner Section */
.banner {
    background: url('../images/logo/malware-banner.webp') no-repeat center center/cover;
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Adding dark overlay */
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dark overlay effect */
    z-index: 1;
}

/* Ensuring text is above the overlay */
.banner .container {
    position: relative;
    z-index: 2;
}

.banner h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.banner p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Call-to-Action Button */
.btn-primary {
    background: #1d5170;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 18px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #1d5170;
}
.why-malware-defense {
    background-color: #f8f9fa;
}

.feature-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.feature-box:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 15px;
}
.what-is-malware {
    background-color: #f8f9fa;
}

.malware-list {
    list-style: none;
    padding: 0;
}

.malware-list li {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.malware-list i {
    color: #1d5170;
    font-size: 22px;
    margin-right: 10px;
}

.what-is-malware img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.malware-threats {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.threat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    margin-bottom: 20px;
}

.threat-item i {
    font-size: 50px;
    color: #1d5170;
    margin-bottom: 10px;
}

.threat-item h4 {
    font-size: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.threat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.why-malware-defense {
    background: #f8f9fa;
    padding: 60px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.icon-box {
    width: 35px;
    height: 35px;
    background: #2c3e50;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    margin: 0 auto 15px;
    transition: 0.3s;
}

.feature-card:hover .icon-box {
    background: #2c3e50;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-card p {
    color: #555;
    font-size: 16px;
}

.how-it-works {
    background: #f8f9fa;
    padding: 60px 0;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: #1d5170;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 30px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.timeline-content {
    background: white;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-left: 20px;
    transition: 0.3s;
    flex-grow: 1;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: 20px;
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #555;
    font-size: 16px;
}

.timeline-icon:hover {
    background: #2c3e50;
}
.pricing-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.pricing-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color:#1d5170;
    margin-bottom: 15px;
}

.price sup {
    font-size: 18px;
    top: -10px;
}

.price span {
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-features li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.pricing-features i {
    color: #1d5170;
    margin-right: 8px;
}

.pricing-box .btn-pricing {
    display: inline-block;
    padding: 12px 25px;
    background: #1d5170;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
    text-decoration: none;
}

.pricing-box .btn-pricing:hover {
    background: #2c3e50;
}

.popular-plan {
    border: 3px solid #1d5170;
    transform: scale(1.05);
}

.features-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.feature-box {
    background: white;
    border-left: 4px solid #2c3e50;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    margin-bottom: 20px;
}

.feature-box:hover {
    background: #1d5170;
    color: white;
    border-left: 4px solid #2c3e50;
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    transition: 0.3s;
}

.feature-box p {
    font-size: 16px;
    color: #555;
    transition: 0.3s;
}

.feature-box:hover h4,
.feature-box:hover p {
    color: white;
}
.faq-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.faq-image {
    max-width: 80%;
    border-radius: 10px;
}

.accordion-button {
    font-weight: 600;
    color: #2c3e50;
    background-color: #fff;
    transition: 0.3s;
}

.accordion-button:hover {
    background-color: #1d5170;
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
}

.accordion-body {
    background: white;
    border-left: 4px solid #1d5170;
    padding: 15px;
}
.footer {
    background: #2c3e50;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #fff;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    height: 30px;
    margin-right: 10px;
}

.copyright-text {
    color: #fff;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}
.breadcrumb-section {
    background-color: #222;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
}

.breadcrumb-item {
    position: relative;
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #1d5170;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-circle {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: #1d5170;
    color: white;
    font-weight: bold;
    text-align: center;
    margin-right: 8px;
    display: inline-block;
}

.breadcrumb-item.active .breadcrumb-circle {
    background-color: #fff;
    color: #222;
}

.breadcrumb-item:not(:last-child)::after {
    content: "→";
    font-size: 18px;
    color: #fff;
    margin-left: 10px;
}

.page-title {
    font-size: 36px;
    font-weight: bold;
    margin-top: 15px;
}
 .contact-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        .contact-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        }
        .contact-form .form-control {
            border-radius: 5px;
        }
        .contact-form button {
            background-color: #2c3e50;
            color: white;
            border: none;
            transition: 0.3s;
        }
        .contact-form button:hover {
            background-color: #1a252f;
        }
        .contact-info {
            background: #2c3e50;
            color: white;
            padding: 40px;
            border-radius: 10px;
        }
        .contact-info i {
            font-size: 24px;
            margin-right: 10px;
            color: #1d5170;
        }
        .social-icons a {
            color: white;
            font-size: 20px;
            margin-right: 15px;
            transition: 0.3s;
        }
        .social-icons a:hover {
            color: #ffeb3b;
        }
       