/* nexus css */

.body-product .btn-primary {
    background: var(--gradient);
    color: var(--light);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.body-product .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.body-product .btn-secondary {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.body-product .btn-secondary:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Hero Section */
.body-product .hero {
    padding: 10rem 2rem 5rem;
    /* min-height: 40vh; */
    /* display: flex;
            align-items: center;
            position: relative; */
    background-color: #000000;
    /* margin: 0 auto; */
}

.body-product .hero-content {
    width: 100vw !important;
    /* display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem; */
    align-items: center;
    margin: 0 60px;
}

.body-product .hero-text h1 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1;
    color: #dfdfda;
    font-size: 72px;
}

.body-product .hero-text p {
    color: #dfdfda;
    margin-bottom: 2rem;
    max-width: 600px;
    font-size: 18px;
}

.body-product .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.body-product .hero-visual {
    position: relative;
}

.body-product .hero-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.body-product .hero-tech-visual {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.body-product .tech-grid-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    opacity: 0.8;
}

.body-product .tech-node {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s ease-in-out infinite;
}

.body-product .tech-node:nth-child(2) {
    animation-delay: 0.5s;
}
.body-product .tech-node:nth-child(3) {
    animation-delay: 1s;
}
.body-product .tech-node:nth-child(4) {
    animation-delay: 1.5s;
}
.body-product .tech-node:nth-child(5) {
    animation-delay: 2s;
}
.body-product .tech-node:nth-child(6) {
    animation-delay: 2.5s;
}

.body-product .tech-node svg {
    width: 30px;
    height: 30px;
    fill: rgba(0, 212, 255, 0.8);
}

@keyframes pulse {
    0%,
    100% {
        border-color: rgba(0, 212, 255, 0.5);
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
    }
    50% {
        border-color: rgba(0, 212, 255, 1);
        box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
    }
}

.body-product .floating-stats {
    position: absolute;
    background: #123c78;
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid #0f3366;
    border-radius: 15px;
    padding: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.body-product .floating-stats.top-left {
    top: 2rem;
    left: 12rem;
}
.body-product .floating-stats .header {
    margin: 0 0 0.5rem 0;
}
.body-product .floating-stats .percentage {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}
.body-product .floating-stats .text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
.body-product .floating-stats.bottom-right {
    /* bottom: 0rem;
            right: 12rem; */
    animation-delay: 3s;
}

/* Products Section */
.body-product .products {
    padding: 5rem 2rem;
    background: #ffffff;
}

.body-product .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #000000 !important;
}

.body-product .section-header h2 {
    font-weight: 600;
    line-height: 1;
    margin-bottom: 1rem;
    font-size: 48px;
}

.body-product .section-header p {
    font-size: 1.25rem;
    font-size: 18px;
}

.body-product .product-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.body-product .product-card {
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.body-product .product-card:hover {
    transform: translateY(-5px);
    border-color: #123c78;
}

.body-product .product-card.featured {
    background: #ffffff;
    border-color: #123c78;
}

.body-product .product-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.body-product .dashboard-mockup {
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.body-product .dashboard-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 8px;
}

.body-product .dashboard-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5f57;
}

.body-product .dashboard-dot:nth-child(2) {
    background: #ffbd2e;
}
.body-product .dashboard-dot:nth-child(3) {
    background: #28ca42;
}

.body-product .dashboard-content {
    padding: 15px;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.body-product .dashboard-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
.body-product .dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    flex: 1;
}

.body-product .widget {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.body-product .widget-header {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.body-product .metric-large {
    font-size: 16px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 2px;
}

.body-product .metric-small {
    font-size: 6px;
    color: rgba(255, 255, 255, 0.5);
}

.body-product .chart-bars {
    display: flex;
    align-items: end;
    gap: 2px;
    height: 30px;
    margin-top: 4px;
}

.body-product .bar {
    background: linear-gradient(to top, #0066ff, #00d4ff);
    border-radius: 1px;
    flex: 1;
    opacity: 0.8;
}

.body-product .bar:nth-child(1) {
    height: 60%;
}
.body-product .bar:nth-child(2) {
    height: 80%;
}
.body-product .bar:nth-child(3) {
    height: 45%;
}
.body-product .bar:nth-child(4) {
    height: 90%;
}
.body-product .bar:nth-child(5) {
    height: 70%;
}
.body-product .bar:nth-child(6) {
    height: 85%;
}

.body-product .chat-mockup .dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.body-product .chat-message {
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 8px;
    max-width: 70%;
}

.body-product .chat-user {
    background: rgba(0, 102, 255, 0.2);
    align-self: flex-end;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.body-product .chat-ai {
    background: rgba(255, 107, 53, 0.2);
    align-self: flex-start;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.body-product .chat-input {
    margin-top: auto;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 7px;
    color: rgba(255, 255, 255, 0.5);
}

.body-product .nexus-mockup .dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.body-product .nexus-modules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    flex: 1;
}

.body-product .nexus-module-card {
    background: linear-gradient(
        135deg,
        rgba(255, 107, 53, 0.1),
        rgba(247, 147, 30, 0.1)
    );
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 6px;
    padding: 6px;
    text-align: center;
}

.body-product .nexus-icon {
    width: 16px;
    height: 16px;
    background: rgba(255, 107, 53, 0.3);
    border-radius: 4px;
    margin: 0 auto 4px;
}

.body-product .nexus-title {
    font-size: 6px;
    color: #ff6b35;
    font-weight: 600;
}

.body-product .pulse-animation {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(0, 212, 255, 0.2);
    }
    to {
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
    }
}

.body-product .product-content {
    padding: 2rem;
}

.body-product .product-icon {
    width: 60px;
    height: 60px;
    background: #123c78;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.body-product .product-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.body-product .product-card.featured .product-icon {
    background: #123c78;
}

.body-product .product-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #000000;
}

.body-product .product-card p {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 18px;
}

.body-product .product-card a {
    color: #123c78;
    text-decoration: none;
    font-size: 18px;
}

.body-product .product-card.featured a {
    color: #123c78;
    text-decoration: none;
    font-size: 18px;
}

.body-product .product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #123c78;
    color: var(--light);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* NEXUS Section */
.body-product .nexus-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.body-product .nexus-overview {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 4rem;
}

.body-product .nexus-overview h2 {
    font-size: 48px;
    margin-bottom: 1rem;
    color: #ffffff;
}
.body-product .nexus-overview p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.body-product .nexus-overview .subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.body-product .nexus-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.body-product .nexus-module {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}

.body-product .nexus-module:hover {
    transform: translateY(-5px);
    border-color: #123c78;
    background: rgba(18, 60, 120, 0.1);
}

.body-product .nexus-module-icon {
    width: 80px;
    height: 80px;
    background: #123c78;
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.body-product .nexus-module-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.body-product .nexus-module h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.body-product .nexus-module p,
.body-product .nexus-module li {
    font-size: 18px;
    color: #ffffff;
}

/* CTA Section */
.body-product .cta {
    padding: 8rem 2rem;
    text-align: center;
    background-color: #ffffff;
}

.body-product .cta h2 {
    font-size: 48px;
    color: #000000;
    margin-bottom: 1.5rem;
}

.body-product .cta p {
    font-size: 18px;
    color: #000000;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Menu */

/* Responsive */
@media (max-width: 768px) {
    .body-product .hero-content,
    .body-product .product-grid {
        grid-template-columns: 1fr;
    }

    .body-product .hero-text h1 {
        font-size: 2.5rem;
    }

    .body-product .nexus-modules {
        grid-template-columns: 1fr;
    }
    .body-product .floating-stats.bottom-right {
        display: none;
    }
    .privacy-header h1 {
        font-size: 40px;
    }
    
    
    .privacy-header p,
    p {
        font-size: 14px;
    }
  
}

.btn-blue {
    background: #123c78;
    border: 1px solid #123c78;
    color: #ffffff;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-blue:hover {
    background: #0f3263;
    border-color: #0f3263;
    transform: translateY(-3px);
    color: #ffffff;
}

.btn-explore {
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #123c78;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-explore:hover {
    background: #f0f4fa;
    border-color: #f0f4fa;
    transform: translateY(-3px);
    color: #123c78;
}

@media (max-width: 768px) {

    .nav-item {
        display: flex;
        align-items: center;
        justify-content: center;
        display: block;
    }
}

.private-ai-section .product-icon,
.product-icon {
    width: 32px;
}

.btn-outline-blue {
    background: #ffffff;
    border: 1px solid #123c78;
    color: #123c78;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-blue:hover {
    background: #f0f4fa;
    border-color: #123c78;
    transform: translateY(-3px);
    color: #123c78;
}