* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background-color: #f4f7fb;
}

/* Navbar */
.navbar {
    background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.shield-icon {
    font-size: 26px;
    margin-right: 8px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00e5ff;
}

/* Call Now Button */
.call-btn {
    background: #00e5ff;
    color: #00343f !important;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
}

.call-btn:hover {
    background: #00bcd4;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #203a43;
        flex-direction: column;
        width: 100%;
        display: none;
        padding: 20px 0;
    }

    .nav-links a {
        padding: 12px 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links.show {
        display: flex;
    }
}

/* Hero Banner */
.hero {
    background: radial-gradient(circle at top right, #1c3d4f, #0b1e26);
    padding: 80px 0;
    color: #ffffff;
}

.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

.hero-content h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #00e5ff;
}

.hero-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #d6e4ea;
    margin-bottom: 30px;
    max-width: 520px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #00e5ff;
    color: #00343f;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #00bcd4;
}

.btn-secondary {
    border: 2px solid #00e5ff;
    color: #00e5ff;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #00e5ff;
    color: #00343f;
}

/* Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.shield-glow {
    font-size: 160px;
    filter: drop-shadow(0 0 40px rgba(0, 229, 255, 0.6));
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: auto auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .shield-glow {
        font-size: 120px;
        margin-top: 30px;
    }
}

/* Threats Section */
.threats {
    background: #f4f7fb;
    padding: 80px 0;
}

.threats-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #0b1e26;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: #5f6f7a;
    max-width: 650px;
    margin: auto;
    line-height: 1.7;
}

/* Grid */
.threat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Cards */
.threat-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    text-align: center;
}

.threat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.threat-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.threat-card h3 {
    font-size: 20px;
    color: #0b1e26;
    margin-bottom: 12px;
}

.threat-card p {
    font-size: 15px;
    color: #5f6f7a;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .threat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .threat-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 30px;
    }
}

/* About Us Section */
.about-us {
    background: #ffffff;
    padding: 80px 0;
}

.about-container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

.about-header {
    text-align: center;
    margin-bottom: 35px;
}

.about-header h2 {
    font-size: 34px;
    color: #0b1e26;
}

.about-content p {
    font-size: 16px;
    color: #5f6f7a;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

/* Contact */
.about-contact {
    margin-top: 35px;
    text-align: center;
    padding: 25px;
    background: #f4f7fb;
    border-radius: 16px;
}

.about-contact span {
    display: block;
    font-size: 15px;
    color: #0b1e26;
    margin-bottom: 8px;
    font-weight: 500;
}

.about-contact a {
    font-size: 22px;
    font-weight: 700;
    color: #00bcd4;
    text-decoration: none;
}

.about-contact a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .about-header h2 {
        font-size: 28px;
    }

    .about-contact a {
        font-size: 20px;
    }
}
/* Plans Section */
.plans {
    background: #f4f7fb;
    padding: 80px 0;
}

.plans-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Plan Cards */
.plan-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    text-align: center;
    transition: 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.plan-card h3 {
    font-size: 22px;
    color: #0b1e26;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 26px;
    font-weight: 700;
    color: #00bcd4;
    margin-bottom: 25px;
}

.plan-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.plan-card ul li {
    font-size: 15px;
    color: #5f6f7a;
    margin-bottom: 12px;
}

/* Buttons */
.plan-btn {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 30px;
    background: #e0f7fa;
    color: #006064;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.plan-btn:hover {
    background: #b2ebf2;
}

.plan-btn.primary {
    background: #00e5ff;
    color: #00343f;
}

.plan-btn.primary:hover {
    background: #00bcd4;
}

/* Featured */
.plan-card.featured {
    border: 2px solid #00e5ff;
    transform: scale(1.03);
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #00e5ff;
    color: #00343f;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: none;
    }
}
/* FAQ Section */
.faq {
    background: #ffffff;
    padding: 80px 0;
}

.faq-container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

/* FAQ Items */
.faq-list {
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid #e0e6ed;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #0b1e26;
    padding: 18px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq-answer {
    font-size: 15px;
    color: #5f6f7a;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 15px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* CTA */
.faq-cta {
    margin-top: 50px;
    text-align: center;
    padding: 35px;
    background: #f4f7fb;
    border-radius: 18px;
}

.faq-cta p {
    font-size: 16px;
    color: #0b1e26;
    margin-bottom: 12px;
    font-weight: 500;
}

.faq-call-btn {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #00bcd4;
    text-decoration: none;
}

.faq-call-btn:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .faq-question {
        font-size: 16px;
    }

    .faq-call-btn {
        font-size: 18px;
    }
}

/* Disclaimer Section */
.disclaimer {
    background: #f9fbfd;
    padding: 70px 0;
}

.disclaimer-container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

.disclaimer h2 {
    font-size: 28px;
    color: #0b1e26;
    margin-bottom: 25px;
    text-align: center;
}

.disclaimer p {
    font-size: 14.5px;
    color: #5f6f7a;
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
    .disclaimer h2 {
        font-size: 24px;
    }

    .disclaimer p {
        font-size: 14px;
    }
}
/* Footer */
.footer {
    background: #0b1e26;
    color: #cfd8dc;
    padding: 60px 0 0;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

/* Brand */
.footer-brand h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    color: #b0bec5;
}

/* Links */
.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #00e5ff;
}

/* Contact */
.footer-contact p {
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-contact a {
    color: #00e5ff;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Bottom */
.footer-bottom {
    margin-top: 50px;
    padding: 18px 0;
    background: #08161c;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #90a4ae;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* Fixed Call Now Button */
.call-now-fixed {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #00e5ff;
    color: #00343f;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.4);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect (desktop) */
.call-now-fixed:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.6);
}

/* Mobile Optimization */
@media (max-width: 600px) {
    .call-now-fixed {
        bottom: 20px;
        right: 20px;
        padding: 16px 24px;
        font-size: 17px;
    }
}
/* Contact Hero */
.contact-hero {
    background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
    padding: 70px 0;
    color: #ffffff;
    text-align: center;
}

.contact-hero-container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

.contact-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 17px;
    line-height: 1.7;
    color: #d6e4ea;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f4f7fb;
}

.contact-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

/* Info */
.contact-info h2,
.contact-form h2 {
    font-size: 28px;
    color: #0b1e26;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 15.5px;
    color: #5f6f7a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-details p {
    font-size: 15.5px;
    margin-bottom: 12px;
}

.contact-details a {
    color: #00bcd4;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Form */
.contact-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0b1e26;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #dce3ea;
    font-size: 14.5px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00bcd4;
}

/* Button */
.contact-btn {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: #00e5ff;
    color: #00343f;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #00bcd4;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 32px;
    }
}
/* Breadcrumb Section */
.data-breadcrumb {
    background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
    padding: 60px 0;
    color: #ffffff;
}

.breadcrumb-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.breadcrumb-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    color: #d6e4ea;
}

.breadcrumb-nav a {
    color: #00e5ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #00bcd4;
}

.breadcrumb-nav span {
    color: #cfd8dc;
}

/* Responsive */
@media (max-width: 600px) {
    .data-breadcrumb {
        padding: 45px 0;
    }

    .breadcrumb-title {
        font-size: 28px;
    }

    .breadcrumb-nav {
        font-size: 13.5px;
    }
}
