/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    background-color: #ffffff;
    color: #0b1c2d;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #0a3cff, #002b8f);
    color: #ffffff;
    text-align: center;
    padding: 8px 15px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.top-bar a {
    color: #ffdd57;
    text-decoration: none;
    font-weight: 500;
    margin-left: 6px;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* Header */
header {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Navigation Layout */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

/* Logo */
.logo {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #0a3cff;
}

/* Menu */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-bottom: 0;
}

nav ul li a {
    text-decoration: none;
    font-size: 15px;
    color: #0b1c2d;
    position: relative;
    padding-bottom: 4px;
}

nav ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #0a3cff;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}
/* Mobile menu open state */
nav ul.show {
    display: flex !important;
}

/* Right Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-actions a {
    text-decoration: none;
    color: #0a3cff;
    font-size: 14px;
    font-weight: 500;
}

.nav-actions button {
    background: linear-gradient(135deg, #0a3cff, #002b8f);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-actions button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(10, 60, 255, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #0a3cff;
}

/* Responsive */
@media (max-width: 991px) {
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        display: none;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    nav ul li {
        border-bottom: 1px solid #eef1f6;
    }

    nav ul li a {
        display: block;
        padding: 14px 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-actions {
        display: none;
    }
}
.container {
    max-width: 1200px;
    margin: auto;
}

/* -----------------------
   HERO SECTION
------------------------ */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f6f9ff, #eef3ff);
}

.hero-text {
    max-width: 550px;
}

.hero-text h4 {
    font-size: 14px;
    letter-spacing: 2px;
    color: #3a3eff;
    margin-bottom: 10px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 17px;
    color: #444;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.hero-buttons button {
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    font-size: 15px;
    cursor: pointer;
}

.hero-buttons .primary {
    background: #3a3eff;
    color: #fff;
}

.hero-buttons .secondary {
    background: transparent;
    border: 2px solid #3a3eff;
    color: #3a3eff;
}

.hero-image img {
    max-width: 420px;
}

/* -----------------------
   WHY CHOOSE US
------------------------ */
section h2 {
    font-size: 36px;
}

section p {
    font-size: 16px;
    color: #555;
}

/* -----------------------
   FEATURES SECTION
------------------------ */
.features-section {
    padding: 100px 0;
    background: #fff;
}

.features-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.features-video img {
    max-width: 480px;
    border-radius: 12px;
}

.video-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #3a3eff;
}

.features-text h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.features-text ul {
    list-style: none;
    padding: 0;
}

.features-text ul li {
    margin: 12px 0;
    font-size: 16px;
}

.features-text ul i {
    color: #3a3eff;
    margin-right: 8px;
}

/* -----------------------
   SERVICES GRID
------------------------ */
.services-section {
    padding: 100px 40px;
    background: #f9fbff;
    text-align: center;
}

.services-section .subtitle {
    margin-bottom: 50px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-box {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    position: relative;
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-6px);
}

.service-box h3 {
    margin-bottom: 10px;
}

.arrow-icon {
    position: absolute;
    right: 25px;
    bottom: 25px;
    font-size: 22px;
    color: #3a3eff;
}

/* -----------------------
   SECURITY CTA
------------------------ */
.security-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #0a1f44, #0d2a66);
    color: #fff;
    text-align: center;
}

.security-content h2 {
    font-size: 40px;
}

.security-content p {
    max-width: 700px;
    margin: 20px auto;
    color: #d6ddff;
}

.security-section .buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
}

.btn.solid {
    background: #fff;
    color: #0a1f44;
}

.btn.outline {
    border: 2px solid #fff;
    color: #fff;
}

/* -----------------------
   CYBER PLATFORM
------------------------ */
.cyber-section {
    padding: 100px 40px;
    text-align: center;
}

.cyber-section img {
    max-width: 600px;
    margin-top: 40px;
}

/* -----------------------
   AI FEATURES
------------------------ */
.ai-features {
    padding: 100px 0;
    background: #f6f9ff;
}

.ai-features .container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-box {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    flex: 1;
    min-width: 280px;
}

.feature-icon {
    font-size: 40px;
    color: #3a3eff;
}

.feature-box ul {
    list-style: none;
    padding: 0;
}

.feature-box ul li {
    margin: 10px 0;
}

/* -----------------------
   SUPPORT SECTION
------------------------ */
.support-section {
    padding: 100px 40px;
    background: #fff;
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.card {
    padding: 30px;
    background: #f9fbff;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.call-now-btn {
    margin-top: 50px;
}

.call-now-btn a {
    background: #3a3eff;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
}

/* -----------------------
   RESOURCES
------------------------ */
.resources-alt-section {
    padding: 100px 40px;
    background: #0a1f44;
    color: #fff;
}

.resource-item {
    display: table-cell;
    gap: 20px;
    margin-top: 30px;
    align-items: flex-start;
}

.resource-icon {
    font-size: 34px;
    color: #ffdd57;
}

.resource-text a {
    color: #ffdd57;
    text-decoration: none;
}

/* -----------------------
   RESPONSIVE
------------------------ */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .features-wrapper {
        flex-direction: column;
    }

    .ai-features .container {
        flex-direction: column;
    }
}
/* =========================
   FOOTER
========================= */
.site-footer {
    background: #000;
    color: #cfd8ff;
    padding: 80px 30px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

/* Footer Columns */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.site-footer h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
}

/* About */
.footer-about p {
    font-size: 15px;
    line-height: 1.7;
    color: #b8c2ff;
}

/* Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #cfd8ff;
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links ul li a i {
    margin-right: 8px;
    color: #ffdd57;
    font-size: 13px;
}

.footer-links ul li a:hover {
    color: #ffffff;
    padding-left: 6px;
}

/* Disclaimer */
.footer-disclaimer {
    background: rgba(255, 255, 255, 0.04);
    padding: 25px 30px;
    border-radius: 14px;
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #b9c4ff;
}

.footer-disclaimer strong {
    color: #ffdd57;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #9fb0ff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .site-footer {
        padding: 60px 20px 25px;
    }

    .footer-disclaimer {
        padding: 20px;
    }
}
/* =========================
   GLOBAL MOBILE FIXES
========================= */
@media (max-width: 991px) {

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* HEADER */
    .nav {
        position: relative;
    }

    nav ul {
        width: 100%;
    }

    nav ul li a {
        font-size: 16px;
    }

    /* HERO */
    .hero {
        padding: 70px 0;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image img {
        max-width: 280px;
    }

    /* FEATURES */
    .features-wrapper {
        gap: 40px;
    }

    .features-video img {
        max-width: 100%;
    }

    /* SERVICES */
    .services-section {
        padding: 70px 20px;
    }

    /* SECURITY CTA */
    .security-section {
        padding: 70px 20px;
    }

    .security-content h2 {
        font-size: 32px;
    }

    /* CYBER SECTION */
    .cyber-section {
        padding: 70px 20px;
    }

    .cyber-section img {
        max-width: 100%;
    }

    /* AI FEATURES */
    .ai-features {
        padding: 70px 0;
    }

    .ai-features .container {
        gap: 30px;
    }

    /* SUPPORT */
    .support-section {
        padding: 70px 20px;
    }

    .card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* RESOURCES */
    .resources-alt-section {
        padding: 70px 20px;
    }

    .resource-item {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* FOOTER */
    .footer-columns {
        gap: 35px;
    }
}

/* =========================
   SMALL DEVICES
========================= */
@media (max-width: 576px) {

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-buttons button {
        width: 100%;
        text-align: center;
    }

    .call-now-btn a {
        display: block;
        width: 100%;
        text-align: center;
    }
}
/* =========================
   BREADCRUMB
========================= */
.shieldx-breadcrumb {
    background: linear-gradient(135deg, #0a3cff, #002b8f);
    padding: 60px 30px;
    color: #ffffff;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: auto;
}

.breadcrumb-title {
    font-size: 42px;
    margin-bottom: 10px;
}

.breadcrumb-nav {
    font-size: 14px;
}

.breadcrumb-nav a {
    color: #ffdd57;
    text-decoration: none;
}

.breadcrumb-nav span {
    margin: 0 6px;
    color: #dce2ff;
}

/* =========================
   ABOUT US
========================= */
.about-us-section {
    padding: 100px 30px;
    background: #ffffff;
}

.about-us-container {
    max-width: 900px;
    margin: auto;
}

.about-us-container h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.about-us-container p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .shieldx-breadcrumb {
        padding: 45px 20px;
    }

    .breadcrumb-title {
        font-size: 32px;
    }

    .about-us-section {
        padding: 70px 20px;
    }

    .about-us-container h2 {
        font-size: 30px;
    }

    .about-us-container p {
        font-size: 16px;
    }
}
/* =========================
   CONTACT SECTION
========================= */
.shieldx-contact {
    padding: 100px 30px;
    background: #f6f9ff;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Contact Info */
.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    font-size: 15px;
    margin-bottom: 12px;
    color: #333;
}

.contact-info a {
    color: #3a3eff;
    text-decoration: none;
}

/* Contact Form */
.contact-form {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #dce3ff;
    font-size: 15px;
    margin-bottom: 15px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3a3eff;
}

.contact-form button {
    width: 100%;
    background: linear-gradient(135deg, #0a3cff, #002b8f);
    color: #ffffff;
    padding: 14px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
}

.contact-form button:hover {
    opacity: 0.95;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .shieldx-contact {
        padding: 70px 20px;
    }

    .contact-container {
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 30px;
    }
}
/* =========================
   GOOGLE MAP
========================= */
.shieldx-map iframe {
    width: 100%;
    height: 450px;
    display: block;
}
