/* ============================================
   NOC PAGE STYLES
   ============================================ */

/* ================================
   MONITORING GRID
   ================================ */

.noc-monitoring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.noc-monitoring-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.noc-monitoring-card:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.noc-monitoring-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: #00d4ff;
}

.noc-monitoring-icon svg {
    width: 100%;
    height: 100%;
}

.noc-monitoring-card h4 {
    font-family: var(--font-main);
    font-size: 1.4rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.noc-monitoring-card p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .noc-monitoring-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .noc-monitoring-card {
        padding: 1.5rem;
    }
}

/* ================================
   TABS SECTION
   ================================ */

/* NOC Hero Section */
.noc-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #030033 0%, #004651 50%, #2d1b69 100%);
    overflow: hidden;
    padding: 10rem 0 4rem;
}

.noc-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center,
            rgba(0, 188, 212, 0.15) 0%,
            transparent 70%);
    pointer-events: none;
}

.noc-hero-grid {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.noc-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.noc-logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.noc-logo-svg {
    width: 120px;
    height: auto;
    animation: rotateOnScroll 1s ease-out;
}

@keyframes rotateOnScroll {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.noc-logo-text {
    display: flex;
    flex-direction: column;
}

.noc-title {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg,
            #00d4ff 0%,
            #0396ff 50%,
            #2bace2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0;
}

.noc-version {
    font-size: 2.5rem;
    margin-left: 0.3rem;
}

.noc-tagline {
    font-size: 1rem;
    color: rgba(0, 212, 255, 0.8);
    margin: 0.5rem 0 0 0;
    font-weight: 400;
}

.noc-headline {
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
    font-weight: 800;
}

.noc-highlight {
    color: #00d4ff;
    font-weight: 600;
}

/* Hero Image */
.noc-hero-image {
    position: relative;
}

/* Electric Border Container */
.noc-electric-container {
    position: relative;
    padding: 3px;
    border-radius: 24px;
    background: linear-gradient(-30deg,
            rgba(0, 212, 255, 0.3) 0%,
            transparent 30%,
            transparent 70%,
            rgba(0, 212, 255, 0.3) 100%),
        linear-gradient(to bottom,
            rgba(10, 0, 51, 0.8),
            rgba(10, 0, 51, 0.8));
}

.noc-electric-inner {

    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    bottom: 0px;
}

.noc-electric-border-outer {
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 15px;
    position: absolute;
    width: 99%;
    height: 98%;
    top: 0px;
    bottom: 0px;
}

.noc-electric-main {
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-radius: 20px;
    border: 2px solid #00d4ff;
    margin-top: -4px;
    margin-left: -4px;
    filter: url(#electric-filter);
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

/* Glow Layers */
.noc-electric-glow-1 {
    border: 2px solid rgba(0, 212, 255, 0.6);
    border-radius: 20px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    position: absolute;
    top: -2px;
    left: -2px;
    filter: blur(2px);
    z-index: 9;
    pointer-events: none;
}

.noc-electric-glow-2 {
    border: 2px solid #00b8d4;
    border-radius: 20px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    position: absolute;
    top: -4px;
    left: -4px;
    filter: blur(6px);
    z-index: 8;
    pointer-events: none;
}

/* Overlay Effects */
.noc-electric-overlay-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    opacity: 0.8;
    mix-blend-mode: overlay;
    transform: scale(1.05);
    filter: blur(16px);
    background: linear-gradient(-30deg,
            #00d4ff,
            transparent 30%,
            transparent 70%,
            #00d4ff);
    pointer-events: none;
    z-index: 11;
}

.noc-electric-overlay-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    opacity: 0.4;
    mix-blend-mode: overlay;
    transform: scale(1.05);
    filter: blur(20px);
    background: linear-gradient(-30deg,
            #00d4ff,
            transparent 30%,
            transparent 70%,
            #00d4ff);
    pointer-events: none;
    z-index: 11;
}

/* Background Glow */
.noc-electric-bg-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    filter: blur(40px);
    transform: scale(1.15);
    opacity: 0.4;
    z-index: -1;
    background: linear-gradient(-30deg,
            #00d4ff,
            transparent,
            #00b8d4);
    pointer-events: none;
}

/* Image Wrapper - ajustado para trabajar con el borde eléctrico */
.noc-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    z-index: 5;
}

.noc-image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 212, 255, 0.15) 0%,
            transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.noc-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
}

/* KPIs Premium Section */
.noc-kpis-section {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 0 3rem;
}

.noc-kpis-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.noc-kpi-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.noc-kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--kpi-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.noc-kpi-card:hover::before {
    opacity: 1;
}

.noc-kpi-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--kpi-color) 0%, transparent 70%);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.noc-kpi-card:hover::after {
    opacity: 0.08;
}

/* KPI Color Variants */
.noc-kpi-primary {
    --kpi-color: #00d4ff;
}

.noc-kpi-success {
    --kpi-color: #3ecf8e;
}

.noc-kpi-warning {
    --kpi-color: #ffb800;
}

.noc-kpi-info {
    --kpi-color: #8b5cf6;
}

.noc-kpi-card:hover {
    transform: translateY(-8px);
    border-color: var(--kpi-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 40px var(--kpi-color-alpha, rgba(0, 212, 255, 0.15));
}

.noc-kpi-primary:hover {
    --kpi-color-alpha: rgba(0, 212, 255, 0.15);
}

.noc-kpi-success:hover {
    --kpi-color-alpha: rgba(62, 207, 142, 0.15);
}

.noc-kpi-warning:hover {
    --kpi-color-alpha: rgba(255, 184, 0, 0.15);
}

.noc-kpi-info:hover {
    --kpi-color-alpha: rgba(139, 92, 246, 0.15);
}

.noc-kpi-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--kpi-color) 0%, var(--kpi-color-dark, #0099cc) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.noc-kpi-card:hover .noc-kpi-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px var(--kpi-color-alpha, rgba(0, 212, 255, 0.3));
}

.noc-kpi-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.noc-kpi-card:hover .noc-kpi-icon i {
    transform: scale(1.1);
}

.noc-kpi-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.noc-kpi-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--kpi-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-headings);
    line-height: 1;
    text-shadow: 0 0 30px var(--kpi-color-alpha, rgba(0, 212, 255, 0.3));
    letter-spacing: -2px;
}

.noc-kpi-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.noc-kpi-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-top: 0.8rem;
}

.noc-kpi-badge {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--kpi-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px var(--kpi-color-alpha, rgba(0, 212, 255, 0.3));
    transition: all 0.3s ease;
    z-index: 5;
}

.noc-kpi-card:hover .noc-kpi-badge {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 20px var(--kpi-color-alpha, rgba(0, 212, 255, 0.5));
}

/* Clases diferenciadores para cada badge */
.noc-badge-primary {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
}

.noc-badge-success {
    background: linear-gradient(135deg, #3ecf8e, #2aa876);
}

.noc-badge-warning {
    background: linear-gradient(135deg, #ffb800, #cc9300);
}

.noc-badge-info {
    background: linear-gradient(135deg, #8b5cf6, #6d44cc);
}

/* Responsive */
@media (max-width: 992px) {
    .noc-kpis-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .noc-kpis-section {
        padding: 0 2rem;
        margin-top: 3rem;
    }

    .noc-kpis-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .noc-kpi-card {
        padding: 2rem 1.5rem;
    }

    .noc-kpi-value {
        font-size: 2.8rem;
    }

    .noc-kpi-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .noc-kpi-icon i {
        font-size: 1.7rem;
    }
}

/* Description Section */
.noc-description {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.noc-description-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.noc-description-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

@media (max-width: 768px) {
    .noc-description-video-bg video {
        display: none;
    }
}

.noc-description-dots-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    --circle_w: 2px;
    --circle_color: rgb(0, 188, 212, 0.3);
    --bg_color: transparent;
    --m_bet_circle: 8px;
    --A: calc(var(--circle_w) + var(--m_bet_circle));
    --B: calc(var(--circle_w) / 2);
    background: radial-gradient(circle at center, rgb(0 0 0 / 30%) var(--B), var(--bg_color) var(--B)) 0 0 / var(--A) var(--A);
}

.noc-description-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    BACKGROUND: #000a287d;
}

.noc-description-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.noc-description h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0396ff 50%, #2bace2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.noc-description p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 4rem;
}

.noc-description-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.noc-description-icon-item {
    text-align: center;
}

.noc-icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(3, 150, 255, 0.1) 100%);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
}

.noc-icon-circle::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #00d4ff, #0396ff, #2bace2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.noc-icon-circle svg {
    width: 45px;
    height: 45px;
    fill: url(#icon-gradient);
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

.noc-description-icon-item:hover .noc-icon-circle {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(3, 150, 255, 0.2) 100%);
    border-color: #00d4ff;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3), 0 0 15px rgba(0, 212, 255, 0.2);
}

.noc-description-icon-item:hover .noc-icon-circle::before {
    opacity: 1;
}

.noc-description-icon-item:hover .noc-icon-circle svg {
    transform: scale(1.15);
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.6));
}

.noc-description-icon-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 992px) {
    .noc-description-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .noc-description-icons {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .noc-description h2 {
        font-size: 2rem;
    }

    .noc-description p {
        font-size: 1rem;
    }
}

/* Carousel Section */
.noc-carousel-section {
    background: transparent;
    padding: 0;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.noc-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.noc-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: #000a28;
    box-shadow: none;
    padding: 0px;
    transition: background 0.6s ease;
    width: 100%;
}

.noc-carousel-slides {
    position: relative;
    min-height: 600px;
}

.noc-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6rem 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.noc-carousel-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.noc-slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.noc-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.noc-feature-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.noc-feature-card:hover {
    background: rgb(91 195 255);
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.noc-feature-icon {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.noc-carousel-arrows {
    position: absolute;
    top: 50%;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    padding: 0 4rem;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 20;
    left: 50%;
    margin-left: -50vw;
}

.noc-arrow {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.noc-arrow:hover {
    background: #00d4ff;
    color: #fff;
    border-color: #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .noc-slide-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .noc-carousel-slide {
        padding: 4rem 5%;
    }

    .noc-carousel-arrows {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .noc-features-grid {
        grid-template-columns: 1fr;
    }
}

.noc-slide-text h3 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nocfeatures h3 {
    font-family: var(--font-headings);
    font-size: 2.8rem !important;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #80f0ff 0%, #0097fb 35%, #00d4e8 70%, #40e0d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.noc-slide-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.noc-slide-features {
    list-style: none;
    padding: 0;
}

.noc-slide-features li {
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 500;
}

.noc-slide-features li::before {
    content: "✓";
    color: #00d4ff;
    font-weight: bold;
    margin-right: 1.2rem;
    font-size: 1.4rem;
}

.noc-slide-visual img {
    width: 100%;
    margin-top: 0px !important;
    height: auto !important;
}

.noc-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.noc-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.noc-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff1f;
    cursor: pointer;
    transition: all 0.3s ease;
}


.noc-nav-dot.active {
    background: #00d4ff;
    transform: scale(1.3);
}

.noc-carousel-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    text-align: right;
    width: fit-content;
    left: initial;
}

.noc-arrow-prev {
    left: 20px !important;
    text-align: left !important;
    margin-left: 0px !important;
}

.noc-arrow-next {
    right: 20px;
}

.noc-arrow {
    width: 50px;
    height: 50px;
    background: rgb(0 10 40 / 68%);
    border: 1px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.noc-counter-icon svg * {
    fill: #00d3fe;
}

.noc-arrow:hover {
    background: #00d4ff;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

/* Play/Pause Controls */
.noc-carousel-controls {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.noc-play-pause-btn {
    width: 50px;
    height: 50px;
    background: rgb(0 0 0 / 95%);
    border: 1px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.noc-play-pause-btn:hover {
    background: #00d4ff;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.noc-play-pause-btn i {
    transition: all 0.3s ease;
}

/* Tabs Section */
.noc-tabs-section {
    background: #000a28;
    /* Dark background */
    padding: 6rem 0;
    position: relative;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.noc-tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.noc-tabs-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: start;
}

.noc-tabs-nav {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    /* Glassmorphism */
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
}

.noc-tab-btn {
    padding: 1.2rem 1.5rem;
    text-align: left;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.noc-tab-btn:hover {
    background: rgba(0, 212, 255, 0.05);
    color: #00d4ff;
    border-color: rgba(0, 212, 255, 0.2);
}

.noc-tab-btn.active {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.02) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.noc-tabs-content {
    position: relative;
    min-height: 400px;
}

.noc-tab-panel {
    display: none;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
    /* Glassmorphism */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.noc-tab-panel.active {
    display: block;
}

.noc-tab-panel h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: var(--font-headings);
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.noc-tab-panel p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.noc-tab-panel ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.noc-tab-panel ul li {
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.05rem;
}

.noc-tab-panel ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.noc-tab-panel ul li strong {
    color: #ffffff;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .noc-tabs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .noc-tabs-nav {
        position: relative;
        top: 0;
        flex-direction: row;
        overflow-x: auto;
        border-radius: 12px;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.05);
    }

    .noc-tab-btn {
        white-space: nowrap;
        padding: 1rem 1.5rem;
        border-left: none;
        border-bottom: 3px solid transparent;
        border-radius: 8px;
        margin-right: 0.5rem;
    }

    .noc-tab-btn.active {
        border-left: none;
        border-bottom-color: #00d4ff;
        background: rgba(0, 212, 255, 0.1);
    }

    .noc-tab-btn:hover {
        border-left: none;
        border-bottom-color: rgba(0, 212, 255, 0.3);
        background: rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 768px) {
    .noc-tabs-section {
        padding: 4rem 0;
    }

    .noc-tabs-container {
        padding: 0 1.5rem;
    }

    .noc-tab-panel {
        padding: 2rem 1.5rem;
    }

    .noc-tab-panel h3 {
        font-size: 1.6rem;
    }

    .noc-tab-panel p {
        font-size: 1rem;
    }

    .noc-tab-btn {
        font-size: 0.85rem;
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 480px) {
    .noc-tab-panel {
        padding: 1.5rem 1rem;
    }

    .noc-tab-panel h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .noc-tab-panel p {
        font-size: 0.95rem;
    }

    .noc-tab-btn {
        font-size: 0.8rem;
    }
}

/* Video Section */
.noc-video-section {
    background: linear-gradient(135deg, #1a0033 0%, #2d1b69 100%);
    padding: 5rem 0;
    position: relative;
}

.noc-video-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.noc-video-header {
    text-align: center;
    margin-bottom: 3rem;
}

.noc-video-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.noc-video-section h2 {
    background: linear-gradient(90deg, #2bace2, #5cf6cb, #48ec82);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Barlow';
    font-size: 2.8rem !important;
    font-weight: 800 !important;
}

.noc-video-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.noc-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.noc-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Features Grid */
.noc-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.noc-feature-card {
    background: linear-gradient(135deg, #e5f9ff 0%, #b3e7f9 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.noc-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.noc-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.noc-feature-card h4 {
    color: #1a0033;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.noc-feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .noc-hero-grid {
        gap: 3rem;
    }

    .noc-title {
        font-size: 3.5rem;
    }

    .noc-headline {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .noc-hero {
        padding: 8rem 0 3rem;
    }

    .noc-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }

    .noc-logo-container {
        justify-content: center;
    }

    .noc-headline {
        text-align: center;
    }

    .noc-slide-content,
    .noc-features-grid {
        grid-template-columns: 1fr;
    }

    .noc-arrow-prev {
        left: 10px;
    }

    .noc-arrow-next {
        right: 10px;
    }

    .noc-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .noc-play-pause-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .noc-carousel-controls {
        bottom: 50px;
    }

    .noc-counters {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .noc-hero {
        padding: 7rem 0 2rem;
    }

    .noc-logo-svg {
        width: 80px;
    }

    .noc-title {
        font-size: 2.5rem;
    }

    .noc-version {
        font-size: 1.5rem;
    }

    .noc-headline {
        font-size: 1.2rem;
    }

    .noc-counters {
        grid-template-columns: 1fr;
    }

    .noc-counter-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .noc-counter-number {
        font-size: 2.5rem;
    }

    .noc-counters-section {
        margin-top: 3rem;
        padding: 0 1.5rem;
    }
}

h1.noc-title svg {
    height: 90px;
}

.noc-highlight {
    /* color: #00d4ff; */
    font-weight: 800;
    background: linear-gradient(90deg, #2bace2, #5cf6cb, #48ec82);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
}

.noc-slide-visual {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
    border: 2px solid #00d4ff;
    border-radius: 15px;
    height: fit-content !important;
    padding: 0px !important;
    min-height: fit-content;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: space-between;
    justify-content: center;
    overflow: hidden;
}

.noc-kpi-card.noc-kpi-primary {}

.noc-kpi-card {
    padding: 1.5rem 2rem 4.5rem 2rem !important;
}

.noc-kpi-badge {
    text-align: center;
}

/* Technical Features Section */
.noc-tech-features {
    background: #000a28;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.noc-tech-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.noc-tech-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6rem;
    gap: 4rem;
}

.noc-tech-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    max-width: 600px;
    text-transform: none;
    font-family: var(--font-headings);
    background: linear-gradient(90deg, #2bace2, #5cf6cb, #48ec82);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.noc-tech-cta-wrap {
    text-align: right;
}

.noc-tech-cta-wrap p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 300px;
    margin-left: auto;
}

.noc-tech-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border: 1px solid rgba(0, 212, 255, 0.5);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s ease;
    background: rgba(0, 212, 255, 0.05);
}

.noc-tech-btn:hover {
    background: #00d4ff;
    color: #000a28;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.noc-tech-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.noc-tech-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.noc-tech-item:hover {
    background: rgba(0, 212, 255, 0.03);
}

.noc-tech-item-left h3 {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.noc-tech-item-right p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 500px;
    margin: 0;
}

@media (max-width: 1024px) {
    .noc-tech-header {
        flex-direction: column;
        gap: 2rem;
    }

    .noc-tech-cta-wrap {
        text-align: left;
    }

    .noc-tech-cta-wrap p {
        margin-left: 0;
    }

    .noc-tech-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .noc-tech-container {
        padding: 0 2rem;
    }

    .noc-tech-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2.5rem 0;
    }

    .noc-tech-item-left h3 {
        font-size: 1.7rem;
    }
}