html {
    scroll-padding-top: 80px; /* Adjust based on nav height */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f1419 0%, #1b2b4d 30%, #1a1a2e 70%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 1.8em;
    font-weight: 700;
    background: linear-gradient(45deg, #0080ff, #00d4ff, #e8e9ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    display: flex; /* Enable flexbox for alignment */
    align-items: center; /* Vertically align items */
}

.logo a {
    text-decoration: none;
    color: inherit; /* Inherit color from .logo */
    display: flex;
    align-items: center;
    gap: 10px; /* Space between text and icon */
}

.company-logo-icon {
    position: relative;
    width: 25px; /* Adjust size to fit title bar */
    height: 25px;
    flex-shrink: 0;
    vertical-align: middle; /* Ensure vertical alignment with text */
}

.nexus-core-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #00d4ff, #0080ff);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
    animation: pulse 3s infinite;
}

.connection-ring-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    animation: rotate 12s linear infinite;
}

.ring-1-small {
    width: 15px;
    height: 15px;
    animation-duration: 12s;
}

.ring-2-small {
    width: 22px;
    height: 22px;
    animation-duration: 18s;
    animation-direction: reverse;
}

.connection-node-small {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #00d4ff, #0080ff);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
    animation: nodeGlow 4s ease-in-out infinite;
}

.node-1-small {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.node-2-small {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.node-3-small {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.node-4-small {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: rgba(232, 233, 234, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-links a:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at 30% 40%, rgba(0, 128, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    padding: 100px 20px 50px;
}

.hero::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(232,233,234,0.04)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.6;
}

.hero-content {
    max-width: 1000px;
    z-index: 1;
    position: relative;
}

.hero-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 400px;
    text-align: left;
}

.hero h1 {
    font-size: 4.2em;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #0080ff, #00d4ff, #e8e9ea, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5em;
    color: #00d4ff;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero p {
    font-size: 1.2em;
    color: rgba(232, 233, 234, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 600px;
}

.nexus-logo-container {
    position: relative;
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.nexus-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #00d4ff, #0080ff);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    animation: pulse 3s infinite;
}

.connection-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    animation: rotate 12s linear infinite;
}

.ring-1 {
    width: 80px;
    height: 80px;
    animation-duration: 12s;
}

.ring-2 {
    width: 120px;
    height: 120px;
    animation-duration: 18s;
    animation-direction: reverse;
}

.ring-3 {
    width: 180px;
    height: 180px;
    animation-duration: 24s;
}

.ring-4 {
    width: 240px;
    height: 240px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.connection-node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, #00d4ff, #0080ff);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    animation: nodeGlow 4s ease-in-out infinite;
}

.node-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.node-2 {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.node-3 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.node-4 {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.node-5 {
    top: 80px;
    right: 80px;
    animation-delay: 2s;
}

.node-6 {
    bottom: 80px;
    left: 80px;
    animation-delay: 2.5s;
}

.node-7 {
    top: 80px;
    left: 80px;
    animation-delay: 3s;
}

.node-8 {
    bottom: 80px;
    right: 80px;
    animation-delay: 3.5s;
}

.data-flow {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.8), transparent);
    animation: dataFlow 4s linear infinite;
}

.flow-1 {
    top: 50%;
    left: 40px;
    width: 40px;
    transform: translateY(-50%) rotate(90deg);
    animation-delay: 0s;
}

.flow-2 {
    top: 40px;
    left: 50%;
    width: 40px;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.flow-3 {
    bottom: 50%;
    right: 40px;
    width: 40px;
    transform: translateY(50%) rotate(90deg);
    animation-delay: 2s;
}

.flow-4 {
    bottom: 40px;
    left: 50%;
    width: 40px;
    transform: translateX(-50%);
    animation-delay: 3s;
}

.flow-5 {
    top: 60px;
    left: 60px;
    width: 85px;
    transform: rotate(45deg);
    animation-delay: 0.5s;
}

.flow-6 {
    bottom: 60px;
    right: 60px;
    width: 85px;
    transform: rotate(45deg);
    animation-delay: 1.5s;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn {
    padding: 18px 35px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(45deg, #0080ff, #00d4ff);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 128, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 128, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #1b2b4d;
    transform: translateY(-2px);
}

.section {
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section h2 {
    font-size: 3em;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #0080ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -1px;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card-new {
    background: rgba(27, 43, 77, 0.3);
    padding: 45px;
    border-radius: 20px;
    border: 1px solid rgba(232, 233, 234, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0080ff, #00d4ff);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.service-card-new:hover::before {
    transform: translateX(0);
}

.service-card-new:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 128, 255, 0.15);
}

.service-icon-new {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #0080ff, #00d4ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8em;
    box-shadow: 0 8px 25px rgba(0, 128, 255, 0.3);
}

.service-card-new h3 {
    font-size: 1.6em;
    margin-bottom: 18px;
    color: #00d4ff;
    font-weight: 600;
}

.service-card-new p {
    color: rgba(232, 233, 234, 0.9);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05em;
}

.service-features-new {
    list-style: none;
    padding: 0;
}

.service-features-new li {
    color: rgba(232, 233, 234, 0.8);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95em;
}

.service-features-new li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

.service-features-new {
    columns: 2;
    column-gap: 20px;
}

.nexus-showcase-new {
    background: linear-gradient(135deg, rgba(27, 43, 77, 0.4) 0%, rgba(26, 26, 46, 0.4) 100%);
    padding: 120px 0;
    margin: 100px 0;
    border-top: 1px solid rgba(232, 233, 234, 0.1);
    border-bottom: 1px solid rgba(232, 233, 234, 0.1);
    position: relative;
}

.nexus-showcase-new::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="nexus-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(0,212,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23nexus-grid)"/></svg>');
    opacity: 0.3;
}

.nexus-content-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.nexus-info-new h2 {
    font-size: 3.2em;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #00d4ff, #0080ff, #e8e9ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    font-weight: 700;
}

.nexus-info-new p {
    color: rgba(232, 233, 234, 0.9);
    margin-bottom: 25px;
    font-size: 1.15em;
    line-height: 1.8;
}

.nexus-features-modern-new {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 50px 0;
}

.nexus-feature-large-new {
    background: rgba(0, 128, 255, 0.08);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.nexus-feature-large-new:hover {
    background: rgba(0, 128, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 128, 255, 0.15);
}

.feature-icon-new {
    font-size: 2.5em;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #0080ff, #00d4ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 128, 255, 0.3);
}

.feature-content-new h4 {
    color: #00d4ff;
    margin-bottom: 12px;
    font-size: 1.3em;
    font-weight: 600;
}

.feature-content-new p {
    color: rgba(232, 233, 234, 0.9);
    font-size: 1.05em;
    line-height: 1.6;
    margin: 0;
}

.nexus-visual-new {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.large-nexus-new {
    position: relative;
    width: 400px;
    height: 400px;
}

.large-core-new {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #00d4ff, #0080ff);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.6);
    animation: pulse 3s infinite;
}

.large-ring-new {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: rotate 15s linear infinite;
}

.large-ring-1-new {
    width: 120px;
    height: 120px;
}

.large-ring-2-new {
    width: 180px;
    height: 180px;
    animation-direction: reverse;
}

.large-ring-3-new {
    width: 240px;
    height: 240px;
}

.large-ring-4-new {
    width: 320px;
    height: 320px;
    animation-direction: reverse;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.expertise-card {
    background: rgba(27, 43, 77, 0.3);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(232, 233, 234, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0080ff, #00d4ff);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.expertise-card:hover::before {
    transform: translateX(0);
}

.expertise-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 128, 255, 0.15);
}

.expertise-card h3 {
    font-size: 1.6em;
    margin-bottom: 18px;
    color: #00d4ff;
    font-weight: 600;
}

.expertise-card p {
    color: rgba(232, 233, 234, 0.9);
    line-height: 1.7;
    font-size: 1.05em;
}

.contact {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.6) 0%, rgba(27, 43, 77, 0.6) 100%);
}

.contact-cta {
    margin: 50px 0;
}

.contact-cta .btn {
    margin: 0 15px 20px 15px;
    display: inline-block;
}

.btn-large {
    padding: 22px 45px;
    font-size: 1.2em;
}

.contact-sub {
    color: rgba(232, 233, 234, 0.7);
    font-size: 1em;
    margin: 20px 0 0 0;
}

@media (max-width: 768px) {
    .contact-cta .btn {
        display: block;
        margin: 10px auto;
        width: fit-content;
    }

    .cta-buttons {
        margin-top: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 30px;
    }

    .nexus-logo-container {
        width: 250px;
        height: 250px;
    }
}

.btn-large {
    padding: 22px 45px;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.contact-sub {
    color: rgba(232, 233, 234, 0.7);
    font-size: 1em;
    margin: 20px 0 0 0;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(232, 233, 234, 0.9);
    font-size: 1.1em;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #0080ff, #00d4ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    box-shadow: 0 8px 25px rgba(0, 128, 255, 0.3);
}

.footer {
    background: rgba(15, 20, 25, 0.9);
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(232, 233, 234, 0.1);
}

.footer p {
    color: rgba(232, 233, 234, 0.7);
    font-size: 1.05em;
}

.contact h2 {
    font-size: 3em;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #0080ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact p {
    color: rgba(232, 233, 234, 0.9);
    margin-bottom: 50px;
    font-size: 1.3em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(232, 233, 234, 0.9);
    font-size: 1.1em;
}

.footer {
    background: rgba(15, 20, 25, 0.9);
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(232, 233, 234, 0.1);
}

.footer p {
    color: rgba(232, 233, 234, 0.7);
    font-size: 1.05em;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes nodeGlow {

    0%,
    100% {
        opacity: 0.6;
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    }
}

@keyframes dataFlow {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

@media (max-width: 1024px) {
    .hero-logo-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        min-width: auto;
    }

    .hero h1 {
        font-size: 3.5em;
    }

    .nexus-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .nexus-visual {
        height: 350px;
    }

    .large-nexus {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 30px;
    }

    .nexus-logo-container {
        width: 250px;
        height: 250px;
    }
}

.nexus-features-modern {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Increased gap for better separation */
    margin: 50px 0;
}

.nexus-feature-large {
    background: rgba(0, 128, 255, 0.08);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.nexus-feature-large:hover {
    background: rgba(0, 128, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 128, 255, 0.15);
}

.feature-icon {
    font-size: 2.5em;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #0080ff, #00d4ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 128, 255, 0.3);
}

.feature-content h4 {
    color: #00d4ff;
    margin-bottom: 12px;
    font-size: 1.3em;
    font-weight: 600;
}

.feature-content p {
    color: rgba(232, 233, 234, 0.9);
    font-size: 1.05em;
    line-height: 1.6;
    margin: 0;
}

.social-proof {
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.4) 0%, rgba(27, 43, 77, 0.4) 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(232, 233, 234, 0.1);
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(0, 128, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
}

.client-logo span {
    color: rgba(232, 233, 234, 0.8);
    font-size: 0.9em;
    text-align: center;
    font-weight: 500;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(0, 128, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.testimonial p {
    color: rgba(232, 233, 234, 0.9);
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    color: #00d4ff;
    font-weight: 600;
    font-size: 1em;
}

@media (max-width: 768px) {
    .nexus-feature-large {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .client-logos {
        flex-direction: column;
        gap: 40px;
    }
}

.contact-form-container {
    max-width: 600px;
    margin: 50px auto 0;
    background: rgba(27, 43, 77, 0.3);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(232, 233, 234, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(232, 233, 234, 0.2);
    background: rgba(15, 20, 25, 0.5);
    color: #ffffff;
    font-size: 1em;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(232, 233, 234, 0.6);
}

.contact-form button {
    width: 100%;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes nodeGlow {

    0%,
    100% {
        opacity: 0.6;
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    }
}

@keyframes dataFlow {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

@media (max-width: 1024px) {
    .hero-logo-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        min-width: auto;
    }

    .hero h1 {
        font-size: 3.5em;
    }

    .nexus-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .nexus-visual {
        height: 350px;
    }

    .large-nexus {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 30px;
    }

    .nexus-logo-container {
        width: 250px;
        height: 250px;
    }
}

.nexus-features-modern {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Increased gap for better separation */
    margin: 50px 0;
}

.nexus-feature-large {
    background: rgba(0, 128, 255, 0.08);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.nexus-feature-large:hover {
    background: rgba(0, 128, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 128, 255, 0.15);
}

.feature-icon {
    font-size: 2.5em;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #0080ff, #00d4ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 128, 255, 0.3);
}

.feature-content h4 {
    color: #00d4ff;
    margin-bottom: 12px;
    font-size: 1.3em;
    font-weight: 600;
}

.feature-content p {
    color: rgba(232, 233, 234, 0.9);
    font-size: 1.05em;
    line-height: 1.6;
    margin: 0;
}

.social-proof {
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.4) 0%, rgba(27, 43, 77, 0.4) 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(232, 233, 234, 0.1);
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(0, 128, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
}

.client-logo span {
    color: rgba(232, 233, 234, 0.8);
    font-size: 0.9em;
    text-align: center;
    font-weight: 500;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(0, 128, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.testimonial p {
    color: rgba(232, 233, 234, 0.9);
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    color: #00d4ff;
    font-weight: 600;
    font-size: 1em;
}

@media (max-width: 768px) {
    .nexus-feature-large {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .client-logos {
        flex-direction: column;
        gap: 40px;
    }
}

.contact-form-container {
    max-width: 600px;
    margin: 50px auto 0;
    background: rgba(27, 43, 77, 0.3);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(232, 233, 234, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(232, 233, 234, 0.2);
    background: rgba(15, 20, 25, 0.5);
    color: #ffffff;
    font-size: 1em;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(232, 233, 234, 0.6);
}

.contact-form button {
    width: 100%;
}