 /* Global Font Styles */
body {
       font-family: "Oswald", sans-serif;

}

h1, h2, h3, h4, h5, h6, .call-btn {
        font-family: "Oswald", sans-serif;

}
  /* Navbar Styling */
        .navbar {
            background: #ffffff; /* White background */
            padding: 15px 0;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand img {
            height: 50px;
        }

        .navbar-nav .nav-item {
            margin: 0 10px;
        }

        .navbar-nav .nav-link {
            color: #333 !important; /* Deep Blue */
            font-weight: 600;
            padding: 10px 15px;
            transition: 0.3s;
        }

        /* Hover Effect */
        .navbar-nav .nav-link:hover {
            color: #875656 !important; /* Lighter Blue */
        }

        /* CTA Button */
        .btn-cta {
            background: #904141; /* Orange */
            border: none;
            color: white;
            font-weight: bold;
            padding: 10px 20px;
            border-radius: 30px;
            transition: 0.3s;
        }

        .btn-cta:hover {
            background: #875656; /* Darker Orange */
            color: #fff;
        }

        /* Mobile Menu */
        .navbar-toggler {
            border: none;
            color: #0056b3;
            font-size: 24px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* Center CTA in Mobile View */
        @media (max-width: 992px) {
            .navbar-nav {
                text-align: center;
                background: #ffffff;
                padding: 10px 0;
            }

            .btn-cta {
                display: block;
                width: 100%;
                text-align: center;
                margin-top: 10px;
            }
        }
.banner {
    position: relative;
    background: url('../images/logo/banner2.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    width: 100%;
    margin: 0 auto;
}

/* Dark Overlay */
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust darkness here */
    z-index: 1;
}

/* Text Content */
.banner .container {
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .banner {
        height: 60vh;
    }
}

    .banner h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .banner p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .btn-banner {
        background: #904141; /* Orange */
        color: white;
        padding: 12px 25px;
        font-size: 18px;
        font-weight: bold;
        border-radius: 30px;
        text-decoration: none;
        transition: 0.3s;
    }

    .btn-banner:hover {
        background: #875656;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .banner {
            padding: 80px 15px;
        }

        .banner h1 {
            font-size: 32px;
        }

        .banner p {
            font-size: 16px;
        }
    }
    .features-section {
    padding: 60px 0;
    background: #f8f9fa; /* Light background */
}

.features-image {
    width: 100%;
    border-radius: 10px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.features-list i {
    color: #904141;
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-section .row {
        flex-direction: column-reverse;
    }
}
.why-stand-out {
    padding: 60px 0;
    background: #ffffff; /* White background */
}

.benefits-image {
    width: 100%;
    border-radius: 10px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.benefits-list i {
    color: #00cc77;
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-stand-out .row {
        flex-direction: column;
    }
}
.ransomware-info {
    width: 100%;
    padding: 60px 0 0px;
    background: #f9f9f9;
}

.full-width {
    width: 100%;
    max-width: 100%;
    padding: 0 5%;
    text-align: left;
}

.ransomware-info h2, .ransomware-info h3 {
    color: #1c1c1c;
    font-weight: bold;
    margin-bottom: 10px;
}

.ransomware-info p, .ransomware-info ul {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ransomware-info ul {
    padding-left: 20px;
}

.ransomware-info ul li {
    margin-bottom: 8px;
}

.alert {
    background: #ff4444;
    color: white;
    padding: 10px 15px;
    display: inline-block;
    font-weight: bold;
    border-radius: 5px;
}
.cta-section {
    width: 100%;
    text-align: center;
    background: #904141;
    color: white;
    padding: 50px 20px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    background: #00cc66;
    color: white;
}

.btn-primary:hover {
    background: #00994d;
}

.btn-call {
    background: #ff6600;
    color: white;
}

.btn-call:hover {
    background: #cc0000;
}
.solution-section {
    width: 100%;
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #1c1c1c;
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: #444;
    max-width: 800px;
    margin: 0 auto 30px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.solution-box h3 {
    font-size: 20px;
    color: #1c1c1c;
    margin-bottom: 10px;
}

.solution-box p {
    font-size: 16px;
    color: #666;
}

.solution-cta {
    margin-top: 30px;
}

.btn-primary {
    display: inline-block;
    background: #ff6600;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background: #00994d;
}
/* Pricing Section */
.pricing-section {
    background: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s ease-in-out;
}

.pricing-box.featured {
    background:#904141;
    color: white;
}

.pricing-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.price {
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0;
}

.price span {
    font-size: 18px;
    font-weight: 400;
    color: #555;
}

.pricing-box ul {
    list-style: none;
    padding: 0;
}

.pricing-box ul li {
    font-size: 16px;
    margin: 8px 0;
}

.btn-primary {
    display: inline-block;
    padding: 12px 20px;
    background: #904141;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s ease;
    border:none;
}

.btn-primary:hover {
    background: #804747;
}
.footer {
    background: #1c1c1c;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #fff;
    padding: 5px 0;
    text-align: center;
}

/* Footer Logo */
.footer-logo {
    height: 30px;
    margin-right: 10px;
}

/* Copyright Text */
.copyright-text {
    color: #fff;
    font-size: 14px;
}

/* Call Us Button */
.btn-call {
    background: #1c1c1c;
    color: #fff;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.btn-call:hover {
    background: #333333;
}

/* Footer Links */
.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer .row {
        flex-direction: column;
        text-align: center;
    }

    .footer .col-md-4 {
        width: 100%;
        margin-bottom: 10px;
    }

    .footer-links {
        margin-top: 10px;
    }
}
.contact-section {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: #1c1c1c;
    font-weight: bold;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.btn-contact {
    background: #904141;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-contact:hover {
    background: #875656;
    color: #fff;
}

/* Contact Details */
.contact-details {
    text-align: left;
    padding: 20px;
}

.contact-details h4 {
    color: #1c1c1c;
    font-weight: bold;
}

.contact-details p {
    font-size: 16px;
    color: #666;
    margin: 10px 0;
}

.contact-details i {
    color: #904141;
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section .row {
        flex-direction: column;
    }

    .contact-form, .contact-details {
        text-align: center;
    }
}
