/* Entrance Animations */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-fade-up {
        animation: fadeUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
        opacity: 0;
    }

    .delay-1 {
        animation-delay: 0.1s;
    }

    .delay-2 {
        animation-delay: 0.2s;
    }

    .delay-3 {
        animation-delay: 0.3s;
    }

    .delay-4 {
        animation-delay: 0.4s;
    }

    /* --- SCROLL REVEAL UTILITY --- */
    .reveal-on-scroll {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .reveal-on-scroll.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-delay-1 {
        transition-delay: 0.1s;
    }

    .reveal-delay-2 {
        transition-delay: 0.2s;
    }

    .reveal-delay-3 {
        transition-delay: 0.3s;
    }

    /* j-new-chennai-data-center-overview-section */
    .j-new-chennai-data-center-overview-section {
        padding: 50px 20px;
        background-color: #ffffff;
        font-family: 'Inter', sans-serif;
        overflow: hidden;
    }

    .j-new-chennai-data-center-overview-section .chn-overview-container {
        max-width: 1500px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    @media (min-width: 1024px) {
        .j-new-chennai-data-center-overview-section .chn-overview-container {
            flex-direction: row;
            align-items: center;
            gap: 80px;
        }
    }

    /* Image Column */
    .j-new-chennai-data-center-overview-section .chn-overview-img-col {
        flex: 1;
        position: relative;
    }

    .j-new-chennai-data-center-overview-section .chn-overview-img-wrapper {
        position: relative;
        z-index: 2;
        border-radius: 20px;
    }

    .j-new-chennai-data-center-overview-section .chn-overview-img-wrapper::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        width: 50%;
        height: 50%;
        background-color: rgba(197, 8, 8, 0.08);
        border-radius: 20px;
        z-index: -1;
        transition: transform 0.5s ease;
    }

    .j-new-chennai-data-center-overview-section .chn-overview-img-wrapper:hover::before {
        transform: scale(1.05) translate(-10px, -10px);
    }

    .j-new-chennai-data-center-overview-section .chn-overview-img {
        width: 100%;
        height: auto;
        min-height: 400px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15);
        display: block;
    }

    /* Content Column */
    .j-new-chennai-data-center-overview-section .chn-overview-content-col {
        flex: 1.1;
    }

    .j-new-chennai-data-center-overview-section .chn-overview-tag {
        color: #c50808;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 1.5px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    .j-new-chennai-data-center-overview-section .chn-overview-tag::before {
        content: "";
        display: block;
        width: 40px;
        height: 2px;
        background-color: #c50808;
    }

    .j-new-chennai-data-center-overview-section .chn-overview-title {
        font-size: 35px;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 15px;
        line-height: 1.25;
        letter-spacing: -0.5px;
    }

    .j-new-chennai-data-center-overview-section .chn-overview-text {
        font-size: 16px;
        line-height: 1.8;
        color: #475569;
        margin-bottom: 20px;
    }

    .j-new-chennai-data-center-overview-section .chn-overview-text strong {
        color: #0f172a;
        font-weight: 700;
    }

    /* Stats Grid */
    .j-new-chennai-data-center-overview-section .chn-overview-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 40px;
        padding-top: 40px;
        border-top: 1px solid #e2e8f0;
    }

    .j-new-chennai-data-center-overview-section .chn-stat-box {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .j-new-chennai-data-center-overview-section .chn-stat-number {
        font-size: 36px;
        font-weight: 800;
        color: #c50808;
        line-height: 1;
    }

    .j-new-chennai-data-center-overview-section .chn-stat-label {
        font-size: 14px;
        font-weight: 600;
        color: #0f172a;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .j-new-chennai-data-center-overview-section .chn-stat-desc {
        font-size: 15px;
        color: #64748b;
        line-height: 1.5;
    }

    /* j-new-chennai-data-center-overview-section */

    /* j-new-chennai-data-center-why-section */
    .j-new-chennai-data-center-why-section {
        padding: 50px 20px;
        background-color: #f8fafc;
        border-top: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
    }

    .j-new-chennai-data-center-why-section .chn-why-container {
        max-width: 1500px;
        margin: 0 auto;
    }

    .j-new-chennai-data-center-why-section .chn-why-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .j-new-chennai-data-center-why-section .chn-why-tag {
        color: #c50808;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 2px;
        display: inline-block;
        margin-bottom: 16px;
    }

    .j-new-chennai-data-center-why-section .chn-why-maintitle {
        color: #0f172a;
        font-size: 35px;
        font-weight: 800;
        letter-spacing: -1px;
        line-height: 1.2;
        margin: 0 auto;
    }

    .j-new-chennai-data-center-why-section .chn-why-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    @media (min-width: 768px) {
        .j-new-chennai-data-center-why-section .chn-why-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .j-new-chennai-data-center-why-section .chn-why-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .j-new-chennai-data-center-why-section .chn-why-card {
        background-color: #ffffff;
        border-radius: 20px;
        padding: 40px 32px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.02);
        transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
        display: flex;
        flex-direction: column;
    }

    .j-new-chennai-data-center-why-section .chn-why-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px -5px rgba(15, 23, 42, 0.08);
        border-color: #c50808;
    }

    /* Span Utilities for Bento Layout */
    .j-new-chennai-data-center-why-section .chn-why-card.span-2 {
        grid-column: span 1;
    }

    @media (min-width: 1024px) {
        .j-new-chennai-data-center-why-section .chn-why-card.span-2 {
            grid-column: span 2;
        }
    }

    /* Dark Theme Card Variant */
    .j-new-chennai-data-center-why-section .chn-why-card.card-dark {
        background-color: #0f172a;
        border-color: #0f172a;
        color: #ffffff;
    }

    .j-new-chennai-data-center-why-section .chn-why-card.card-dark:hover {
        border-color: #c50808;
        box-shadow: 0 20px 40px -5px rgba(197, 8, 8, 0.2);
    }

    /* Card Internals */
    .j-new-chennai-data-center-why-section .chn-why-icon {
        width: 60px;
        height: 60px;
        background-color: rgba(197, 8, 8, 0.08);
        color: #c50808;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        margin-bottom: 24px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .j-new-chennai-data-center-why-section .chn-why-card.card-dark .chn-why-icon {
        background-color: #c50808;
        color: #ffffff;
    }

    .j-new-chennai-data-center-why-section .chn-why-title {
        font-size: 22px;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .j-new-chennai-data-center-why-section .chn-why-card.card-dark .chn-why-title {
        color: #ffffff;
    }

    .j-new-chennai-data-center-why-section .chn-why-text {
        font-size: 15px;
        color: #475569;
        line-height: 1.7;
    }

    .j-new-chennai-data-center-why-section .chn-why-card.card-dark .chn-why-text {
        color: #cbd5e1;
    }

    /* j-new-chennai-data-center-why-section */

    /* j-new-chennai-data-glance-section */

    .j-new-chennai-data-glance-section {
        padding: 50px 20px;
        background-color: #ede5dc;
        /* Client requested background */
        color: #0f172a;
        font-family: 'Inter', sans-serif;
    }

    .j-new-chennai-data-glance-section .chn-tabs-container {
        max-width: 1500px;
        margin: 0 auto;
    }

    .j-new-chennai-data-glance-section .chn-tabs-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .j-new-chennai-data-glance-section .chn-tabs-tag {
        color: #c50808;
        background-color: rgba(197, 8, 8, 0.08);
        padding: 6px 16px;
        border-radius: 20px;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 2px;
        display: inline-block;
        margin-bottom: 16px;
    }

    .j-new-chennai-data-glance-section .chn-tabs-maintitle {
        color: #0f172a;
        font-size: 35px;
        font-weight: 800;
        letter-spacing: -1px;
        line-height: 1.2;
        margin: 0 auto;
    }

    /* Tab Navigation Controls */
    .j-new-chennai-data-glance-section .chn-tabs-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-bottom: 40px;
    }

    .j-new-chennai-data-glance-section .chn-tab-btn {
        background-color: #ffffff;
        border: 1px solid rgba(15, 23, 42, 0.08);
        color: #475569;
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 600;
        padding: 14px 28px;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.02);
    }

    .j-new-chennai-data-glance-section .chn-tab-btn i {
        font-size: 18px;
    }

    .j-new-chennai-data-glance-section .chn-tab-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.08);
        color: #0f172a;
    }

    .j-new-chennai-data-glance-section .chn-tab-btn.active {
        background-color: #c50808;
        color: #ffffff !important;
        border-color: #c50808;
        box-shadow: 0 10px 20px -5px rgba(197, 8, 8, 0.3);
    }

    /* Tab Content Area */
    .j-new-chennai-data-glance-section .chn-tabs-content-wrapper {
        background-color: #ffffff;
        border-radius: 24px;
        padding: 40px;
        box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
        min-height: 400px;
        border: 1px solid rgba(15, 23, 42, 0.05);
    }

    @media (min-width: 768px) {
        .j-new-chennai-data-glance-section .chn-tabs-content-wrapper {
            padding: 60px;
        }
    }

    .j-new-chennai-data-glance-section .chn-tab-pane {
        display: none;
        animation: fadeInTab 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    }

    .j-new-chennai-data-glance-section .chn-tab-pane.active {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    @media (min-width: 1024px) {
        .j-new-chennai-data-glance-section .chn-tab-pane.active {
            flex-direction: row;
            align-items: flex-start;
            gap: 60px;
        }
    }

    @keyframes fadeInTab {
        from {
            opacity: 0;
            transform: translateY(15px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Pane Layout: Left Intro / Right Details */
    .j-new-chennai-data-glance-section .chn-pane-left {
        flex: 0.8;
        display: flex;
        flex-direction: column;
    }

    .j-new-chennai-data-glance-section .chn-pane-right {
        flex: 1.2;
    }

    .j-new-chennai-data-glance-section .chn-pane-icon {
        width: 70px;
        height: 70px;
        background-color: rgba(197, 8, 8, 0.08);
        color: #c50808;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        margin-bottom: 24px;
    }

    .j-new-chennai-data-glance-section .chn-pane-title {
        font-size: 28px;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .j-new-chennai-data-glance-section .chn-pane-desc {
        font-size: 16px;
        color: #64748b;
        line-height: 1.7;
    }

    /* Details Grid */
    .j-new-chennai-data-glance-section .chn-pane-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    @media (min-width: 640px) {
        .j-new-chennai-data-glance-section .chn-pane-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .j-new-chennai-data-glance-section .chn-pane-item {
        background-color: #f8fafc;
        border: 1px solid #f1f5f9;
        padding: 20px 24px;
        border-radius: 16px;
        transition: all 0.3s ease;
    }

    .j-new-chennai-data-glance-section .chn-pane-item:hover {
        background-color: #ffffff;
        border-color: rgba(197, 8, 8, 0.2);
        box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.05);
        transform: translateY(-2px);
    }

    .j-new-chennai-data-glance-section .chn-pane-item-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
    }

    .j-new-chennai-data-glance-section .chn-pane-item-icon {
        color: #c50808;
        font-size: 18px;
    }

    .j-new-chennai-data-glance-section .chn-pane-item-title {
        font-weight: 700;
        color: #0f172a;
        font-size: 16px;
    }

    .j-new-chennai-data-glance-section .chn-pane-item-text {
        color: #475569;
        font-size: 16px;
        line-height: 1.6;
    }

    /* j-new-chennai-data-glance-section */

    /* j-new-chennai-data-center-mgmt-section */
    .j-new-chennai-data-center-mgmt-section {
        position: relative;
        padding: 50px 20px;
        background-color: #f8fafc;
    }

    /* The dark background block for the overlap effect */
    .j-new-chennai-data-center-mgmt-section .chn-mgmt-bg-dark {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 520px;
        background-color: #0f172a;
        z-index: 0;
    }

    .j-new-chennai-data-center-mgmt-section .chn-mgmt-bg-dark::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.05);
    }

    .j-new-chennai-data-center-mgmt-section .chn-mgmt-container {
        position: relative;
        z-index: 10;
        max-width: 1500px;
        margin: 0 auto;
    }

    .j-new-chennai-data-center-mgmt-section .chn-mgmt-header {
        text-align: center;
        margin-bottom: 60px;
        max-width: 1000px;
        margin-inline: auto;
    }

    .j-new-chennai-data-center-mgmt-section .chn-mgmt-tag {
        color: #c50808;
        background-color: rgba(197, 8, 8, 0.15);
        padding: 6px 16px;
        border-radius: 20px;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 1.5px;
        display: inline-block;
        margin-bottom: 24px;
    }

    .j-new-chennai-data-center-mgmt-section .chn-mgmt-maintitle {
        color: #ffffff;
        /* White text to contrast with dark bg */
        font-size: 35px;
        font-weight: 800;
        letter-spacing: -1px;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .j-new-chennai-data-center-mgmt-section .chn-mgmt-intro {
        font-size: 17px;
        color: #cbd5e1;
        line-height: 1.8;
        margin: 0;
    }

    .j-new-chennai-data-center-mgmt-section .chn-mgmt-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    @media (min-width: 768px) {
        .j-new-chennai-data-center-mgmt-section .chn-mgmt-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
    }

    .j-new-chennai-data-center-mgmt-section .chn-mgmt-card {
        background-color: #ffffff;
        border-radius: 16px;
        padding: 40px;
        box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15);
        border-top: 4px solid transparent;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .j-new-chennai-data-center-mgmt-section .chn-mgmt-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.25);
    }

    .j-new-chennai-data-center-mgmt-section .chn-mgmt-icon-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .j-new-chennai-data-center-mgmt-section .chn-mgmt-icon {
        width: 60px;
        height: 60px;
        background-color: #f1f5f9;
        color: #0f172a;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        transition: all 0.4s ease;
    }

    .j-new-chennai-data-center-mgmt-section .chn-mgmt-card:hover .chn-mgmt-icon {
        background-color: #c50808;
        color: #ffffff;
        transform: rotate(10deg) scale(1.1);
    }

    .j-new-chennai-data-center-mgmt-section .chn-mgmt-number {
        font-size: 40px;
        font-weight: 800;
        color: #e2e8f0;
        transition: color 0.4s ease;
    }

    .j-new-chennai-data-center-mgmt-section .chn-mgmt-card:hover .chn-mgmt-number {
        color: rgba(197, 8, 8, 0.15);
    }

    .j-new-chennai-data-center-mgmt-section .chn-mgmt-title {
        font-size: 22px;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .j-new-chennai-data-center-mgmt-section .chn-mgmt-text {
        font-size: 16px;
        color: #475569;
        line-height: 1.7;
        margin: 0;
    }

    /* j-new-chennai-data-center-mgmt-section */

    /* j-new-chennai-data-center-cta-pro-section */
    .j-new-chennai-data-center-cta-pro-section {
        padding: 50px 20px;
        background-color: #f8fafc;
        display: flex;
        justify-content: center;
    }

    .j-new-chennai-data-center-cta-pro-section .chn-cta-pro-container {
        width: 100%;
        max-width: 1200px;
    }

    .j-new-chennai-data-center-cta-pro-section .chn-cta-pro-card {
        background-color: #0f172a;
        /* Brand Dark */
        border-radius: 24px;
        padding: 60px 40px;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .j-new-chennai-data-center-cta-pro-section .chn-cta-pro-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 35px 60px -15px rgba(197, 8, 8, 0.2);
    }

    /* Ambient Glow Decor */
    .j-new-chennai-data-center-cta-pro-section .chn-cta-pro-glow {
        position: absolute;
        top: -50%;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(197, 8, 8, 0.15) 0%, transparent 60%);
        z-index: 0;
        pointer-events: none;
    }

    .j-new-chennai-data-center-cta-pro-section .chn-cta-pro-content {
        position: relative;
        z-index: 10;
        max-width: 800px;
    }

    .j-new-chennai-data-center-cta-pro-section .chn-cta-pro-title {
        font-size: 40px;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 24px;
        letter-spacing: -1px;
        line-height: 1.2;
    }

    .j-new-chennai-data-center-cta-pro-section .chn-cta-pro-text {
        font-size: 18px;
        color: #cbd5e1;
        line-height: 1.8;
        margin-bottom: 40px;
    }

    .j-new-chennai-data-center-cta-pro-section .chn-cta-pro-actions {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    @media (min-width: 640px) {
        .j-new-chennai-data-center-cta-pro-section .chn-cta-pro-actions {
            flex-direction: row;
        }
    }

    .j-new-chennai-data-center-cta-pro-section .chn-cta-pro-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-size: 16px;
        font-weight: 700;
        padding: 16px 36px;
        border-radius: 50px;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        text-decoration: none;
    }

    .j-new-chennai-data-center-cta-pro-section .chn-cta-pro-btn.primary {
        background-color: #c50808;
        /* Brand Red */
        color: #ffffff;
        box-shadow: 0 8px 20px -6px rgba(197, 8, 8, 0.5);
    }

    .j-new-chennai-data-center-cta-pro-section .chn-cta-pro-btn.primary:hover {
        background-color: #e50a0a;
        transform: translateY(-3px);
        box-shadow: 0 12px 25px -6px rgba(197, 8, 8, 0.6);
    }

    .j-new-chennai-data-center-cta-pro-section .chn-cta-pro-btn.secondary {
        background-color: transparent;
        color: #ffffff;
        border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .j-new-chennai-data-center-cta-pro-section .chn-cta-pro-btn.secondary:hover {
        border-color: #ffffff;
        background-color: rgba(255, 255, 255, 0.05);
        transform: translateY(-3px);
    }

    .j-new-chennai-data-center-cta-pro-section .chn-cta-pro-btn i {
        transition: transform 0.3s ease;
    }

    .j-new-chennai-data-center-cta-pro-section .chn-cta-pro-btn.primary:hover i {
        transform: translateX(4px);
    }

    /* j-new-chennai-data-center-cta-pro-section */