/* Main Container */
.j-new-design-container {
    width: 100%;
    max-width: 1700px;
    margin: 30px auto;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 380px;
    gap: 0;
}

@media (max-width: 1450px) {
    .j-new-design-container {
        border-radius: 0px;
    }
}

/* Responsive Grid Breakpoints */
@media (min-width: 768px) {
    .j-new-design-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .j-new-design-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Generic Tile Styles */
.j-new-design-tile {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Wide Tile (Spans 2 columns on desktop) */
.j-new-design-tile-wide {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .j-new-design-tile-wide {
        grid-column: span 2;
    }
}

/* --- Image Tile Styles --- */
.j-new-design-image-wrapper {
    cursor: pointer;
}

.j-new-design-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.j-new-design-image-wrapper:hover .j-new-design-bg-img {
    transform: scale(1.1);
}

.j-new-design-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    transition: background 0.5s ease;
}

.j-new-design-image-wrapper:hover .j-new-design-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.j-new-design-image-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    color: white;
    max-width: 350px;
}

.j-new-design-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.j-new-design-headline {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 8px 0;
}

.j-new-design-subtext {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
    display: none;
}

@media (min-width: 768px) {
    .j-new-design-subtext {
        display: block;
    }
}

/* Decorative Arrow Button on Image */
.j-new-design-circle-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.j-new-design-image-wrapper:hover .j-new-design-circle-icon {
    background: white;
    color: black;
}

/* --- Info Card Styles --- */
.j-new-design-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    position: relative;
    transition: ease-in-out .5s;

}

.j-new-design-card:hover {
    z-index: 10;
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Card Colors */
.j-new-design-card-1 {
    background: linear-gradient(to bottom right, #2C5F8A, #101047);
}

.j-new-design-card-2 {
    background: linear-gradient(to bottom right, #1F2533, #3E465E);
}

.j-new-design-card-3 {
    background: linear-gradient(to bottom right, #3E465E, #1F2533);
}

.j-new-design-card-4 {
    background: linear-gradient(to bottom right, #101047, #2C5F8A);
}

/* Card Header */
.j-new-design-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.j-new-design-card-num {
    font-size: 2.5rem;
    font-weight: 700;
    opacity: 0.2;
    line-height: 1;
}

.j-new-design-card-icon {
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Card Content */
.j-new-design-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.j-new-design-card-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Link/Button */
.j-new-design-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.j-new-design-card:hover .j-new-design-link {
    transform: translateX(5px);
}

.j-new-design-link-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 12px;
    border-radius: 4px;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.j-new-design-card:hover .j-new-design-link .j-new-design-link-box {
    background: white;
    color: #e11d48;
}


.j-new-design-card-point-box {
    font-size: 0.875rem;
    margin: 10px 5px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.j-new-design-card-point {
    align-items: center;
    display: flex;
    gap: 10px;
}

/* -----------------------------------------         */

.j-new-design-table-contact-box {
    display: flex;
    margin: 0 auto;
    align-items: center;
    gap: 10px;
    background: #101047;
    width: max-content;
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    transition: ease-in-out 0.3s;
    font-size: 16px;
}

.j-new-design-table-contact-box:hover {
    background: #ffffff;
    color: #dd0030;
    border: 1px solid;
}

#j-new-design-software-table td[data-column="Price"] {
    text-align: center !important;
}

/* ---------------------------------- */
.j-new-design-image-center {
    margin: auto;
}

.br-st2 {
    border-radius: 10px;
}

/* ------------------------------------------------- */
/* --- Base Reset --- */

/* --- Main Banner Class --- */
.j-new-sub-banner {
    position: relative;
    width: 100%;
    min-height: 420px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    display: flex;
    overflow: hidden;
    color: #1e293b;
    margin-top: 120px;
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1600px) {
    .j-new-sub-banner {
        margin-top: 160px;
    }
}

@media (max-width: 1200px) {
    .j-new-sub-banner {
        margin-top: 115px;
    }
}
@media (max-width: 799px) {
    .j-new-sub-banner {
        margin-top: 180px;
    }
}

/* SHAPE 1: Soft Abstract Wave on the Right */
.j-new-sub-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    /* Very soft blue wash */
    background: radial-gradient(ellipse at center, rgba(219, 234, 254, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(-15deg);
    z-index: 1;
    pointer-events: none;
}

/* SHAPE 2: Subtle "Swoosh" Line (Replaces the Ring/Dash) */
.j-new-sub-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 1200 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,600 C300,500 400,300 1200,600' stroke='rgba(239, 68, 68, 0.05)' stroke-width='100' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: bottom right;
    z-index: 0;
    pointer-events: none;
}

/* --- Left Content Side --- */
.j-new-sub-banner .j-content {
    flex: 1;
    padding: 0 5% 0 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 15px;
    /* Clean Red Accent Line */
    border-left: 4px solid #ef4444;
}

.j-new-sub-banner .j-breadcrumbs {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.j-new-sub-banner .j-breadcrumbs a {
    text-decoration: none;
    color: #64748b;
    transition: color 0.3s;
}

.j-new-sub-banner .j-breadcrumbs a:hover {
    color: #0f172a;
}

.j-new-sub-banner .j-breadcrumbs .active {
    color: #ef4444;
}

.j-new-sub-banner h1 {
    font-size: 50px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -1px;
}

@media (max-width: 1500px) {
    .j-image-container img {
        width: 100% !important;
    }

    .j-new-sub-banner h1 {
        font-size: 45px;
    }
}

@media (max-width: 1199px) {
    .j-new-sub-banner h1 {
        font-size: 36px;
    }

}

.j-new-sub-banner h1 span {
    color: #ef4444;
}

.j-new-sub-banner p {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    max-width: 550px;
}

/* --- Right Container --- */
.j-new-sub-banner .j-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding-right: 5%;
}

.j-image-container img {
    width: 70%;
    border-radius: 20px;
    box-shadow: rgba(239, 68, 68, 0.35) 0px 5px 15px;

}

/* --- Diagram Window Design --- */
.j-diagram-window {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 300px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow:
        0 20px 40px -5px rgba(15, 23, 42, 0.1),
        0 0 0 1px rgba(226, 232, 240, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.j-diagram-window:hover {
    transform: translateY(-5px);
    box-shadow:
        0 25px 50px -5px rgba(239, 68, 68, 0.1),
        0 0 0 1px rgba(239, 68, 68, 0.2);
}

/* Header */
.j-diagram-header {
    height: 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.j-dots {
    display: flex;
    gap: 8px;
}

.j-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.j-dot.red {
    background: #fee2e2;
    border: 1px solid #fca5a5;
}

.j-dot.yellow {
    background: #fef9c3;
    border: 1px solid #fde047;
}

.j-dot.green {
    background: #dcfce7;
    border: 1px solid #86efac;
}

.j-status {
    margin-left: auto;
    font-size: 11px;
    font-weight: 800;
    color: #b91c1c;
    letter-spacing: 0.5px;
}

/* Visualization Area */
.j-diagram-body {
    flex: 1;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

/* Columns */
.j-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

/* Icons */
.j-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.j-icon-red {
    background: #fff1f2;
    color: #e11d48;
}

.j-icon-green {
    background: #f0fdf4;
    color: #16a34a;
}

.j-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    margin-top: 5px;
}

/* Lines */
.j-line {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
    margin: 0 15px;
    position: relative;
    overflow: hidden;
}

/* Particles */
.j-particle-red {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #e11d48;
    border-radius: 50%;
    animation: slideRight 1.2s linear infinite;
}

.j-particle-green {
    position: absolute;
    width: 20px;
    height: 2px;
    background: #16a34a;
    animation: slideRight 1.5s linear infinite;
}

/* Shield - Minimalist Red Theme */
.j-shield-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.j-ring-1 {
    position: absolute;
    inset: 0;
    border: 2px solid #b5c6ff;
    border-radius: 50%;
}

.j-shield-core {
    width: 36px;
    height: 36px;
    background: #101047;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
    animation: pulseShield 2s infinite;
}

.j-shield-svg {
    color: white;
    width: 18px;
    height: 18px;
}

/* Footer */
.j-diagram-footer {
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
}

.j-stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.j-stat-label {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
}

.j-stat-val {
    font-size: 16px;
    color: #0f172a;
    font-weight: 700;
    font-family: monospace;
}

.j-stat-bar-mini {
    width: 100%;
    height: 3px;
    border-radius: 2px;
    margin-top: 4px;
}

.j-bg-red {
    background: #ef4444;
    width: 40px;
}

.j-bg-green {
    background: #22c55e;
    width: 40px;
}

/* Animations */
@keyframes j-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes j-fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

@keyframes slideRight {
    0% {
        left: -20%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        left: 120%;
        opacity: 0;
    }
}

@keyframes pulseShield {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 16, 71, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* Apply Animations */
.j-new-sub-banner .j-breadcrumbs {
    animation: j-fadeInUp 0.6s ease-out 0.1s backwards;
}

.j-new-sub-banner h1 {
    animation: j-fadeInUp 0.6s ease-out 0.2s backwards;
}

.j-new-sub-banner p {
    animation: j-fadeInUp 0.6s ease-out 0.3s backwards;
}

.j-new-sub-banner .j-image-container {
    animation: j-fadeInUp 0.8s ease-out 0.4s backwards;
}

.j-new-sub-banner .j-button-container {
    animation: j-fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .j-new-sub-banner {
        flex-direction: column;
        height: auto;
        padding-bottom: 3rem;
    }

    .j-new-sub-banner .j-content {
        padding: 1rem 2rem 2rem 2rem;
        border-left: none;
        text-align: center;
        align-items: center;
    }

    .j-new-sub-banner .j-image-container {
        padding: 0 1rem;
        width: 100%;
    }

    .j-new-sub-banner h1 {
        font-size: 36px;
    }

    .j-new-sub-banner::before {
        top: auto;
        bottom: 0;
        height: 40%;
        width: 100%;
        right: 0;
    }

    .j-image-container {
        display: none !important;
    }
}

.secondary-title-colur {
    color: #df0e0e;
}

.j-new-design-section-1 {
    max-width: 1700px;
    width: 90%;
    margin: 0 auto;
    padding: 60px 0;
    border-radius: 20px;
}

/* 1. Header Styling (Gradient Text) */
.j-new-design-section-1 h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 700;
    /* Removed Opacity and Animation */
}

/* 2. Flex Row Container */
.j-new-design-section-1 .j-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.j-row-2 {
    margin-top: 10px;
}

/* 3. Column Styling */
.j-new-design-section-1 .j-column {
    flex: 1;
    padding: 40px;
    background: linear-gradient(to bottom right, #3E465E, #1F2533);
    border-radius: 16px;
    position: relative;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


/* Inner Typography */
.j-new-design-section-1 .j-column h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 20px;
}

.j-new-design-section-1 .j-column p {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Custom List Styling */
.j-new-design-section-1 .j-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
    /* Remove default bullets */
}

.j-new-design-section-1 .j-column li {
    color: #d0d0d0;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
}

/* Custom Checkmark Icon */
.j-new-design-section-1 .j-column li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00c6ff;
    /* Neon Blue */
    font-weight: bold;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .j-new-design-section-1 .j-row {
        flex-direction: column;
        gap: 30px;
    }

    .j-new-design-section-1 {
        padding: 40px 20px;
    }

    .j-new-design-section-1 h2 {
        font-size: 2rem;
    }
}

.j-new-design-sec-1-span {
    color: white;
}

.j-new-design-section-2 {
    padding: 30px;
    /* background-color: #f5f5f5; */
}


.j-container {
    max-width: 1700px;
    margin: 0 auto;
}

/* Section Header */
.j-header {
    text-align: center;
    margin: 0 auto 30px auto;
}

.j-eyebrow {
    font-size: 1rem;
    font-weight: 600;
    color: #4f46e5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.j-title {
    font-size: 2.5rem;
    /* line-height: 2.25rem; */
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    margin-top: 0;
}

@media (min-width: 640px) {
    .j-title {
        /* font-size: 2.25rem; */
        /* line-height: 2.5rem; */
    }
}

.j-desc {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #4b5563;
    margin: 0;
}

/* Grid System */
.j-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .j-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .j-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* Card Styles */
.j-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.j-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.j-card-image-wrapper {
    height: 14rem;
    overflow: hidden;
}

.j-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.j-card:hover .j-card-image {
    transform: scale(1.05);
}

.j-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.j-card-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.j-card-desc {
    color: #4b5563;
    line-height: 1.625;
    margin: 0;
}

.j-card-content .j-new-design-card-point-box span b {
    color: #df0e0e;
}

.j-card-content .j-new-design-card-point-box span i {
    color: #1f194c;
}

/* Container styling */
.j-new-design-section-3-wrapper {
    max-width: 1700px;
    margin: 0 auto;
    padding: 30px 0;
}

/* Section Title (Reverted to Top) */
.j-new-design-section-3-main-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
    position: relative;
    display: block;
    width: 100%;
}

/* Grid Layout */
.j-new-design-section-3-grid-container {
    display: grid;
    /* Left Card | Center Card | Right Card */
    /* grid-template-columns: 1fr 320px 1fr;
            grid-template-rows: auto auto auto; */
    grid-template-areas:
        ". top ."
        "left center right"
        ". bottom .";
    gap: 30px;
    justify-items: center;
    align-items: center;
    position: relative;
}

/* Connecting Lines */
.j-new-design-section-3-grid-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 90%;
    background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
    z-index: 0;
}

.j-new-design-section-3-grid-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 2px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
    z-index: 0;
}

/* Card Base Styling */
.j-new-design-section-3-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    /* max-width: 600px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: left;
    background: linear-gradient(to bottom right, #3E465E, #1F2533);
}

.j-new-design-section-3-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Assigning Grid Areas */
.j-new-design-section-3-pos-top {
    grid-area: top;
}

.j-new-design-section-3-pos-left {
    grid-area: left;
    justify-self: end;
    /* Push towards center */
}

.j-new-design-section-3-pos-center {
    grid-area: center;
    background: linear-gradient(to bottom right, #101047, #2C5F8A);
    border: 2px solid #e8f0fe;
    transform: scale(1.05);
    /* Slight emphasis */
}

.j-new-design-section-3-pos-center:hover {
    transform: scale(1.05) translateY(-5px);
}

.j-new-design-section-3-pos-right {
    grid-area: right;
    justify-self: start;
    /* Push towards center */
}

.j-new-design-section-3-pos-bottom {
    grid-area: bottom;
}

/* Card Content Styles */
.j-new-design-section-3-card-head {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.j-new-design-section-3-card-icon {
    background-color: #e8f0fe;
    color: #1a73e8;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.j-new-design-section-3-card-icon i {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.j-new-design-section-3-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.j-new-design-section-3-card-body {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .j-new-design-section-3-grid-container {
        /* Slightly narrower center column if needed */
        grid-template-columns: 1fr 280px 1fr;
    }
}

@media (max-width: 900px) {
    .j-new-design-section-3-grid-container {
        /* Switch to vertical stack on tablets/mobile */
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .j-new-design-section-3-grid-container::before,
    .j-new-design-section-3-grid-container::after {
        display: none;
    }

    .j-new-design-section-3-card {
        max-width: 100%;
        transform: none !important;
        /* Reset center card scale on mobile */
    }

    .j-new-design-section-3-pos-left,
    .j-new-design-section-3-pos-right {
        justify-self: center;
    }
}

.j-new-design-row-details {
    align-items: center;
}


.hero-img img {
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

/* --- Main Container --- */
.j-new-design-faq-container {
    max-width: 1700px;
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    margin: 20px auto;
}

/* --- Header Section --- */
.j-new-design-faq-header {
    padding: 40px 32px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.j-new-design-faq-label {
    color: #ef4444;
    /* Brand Red */
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.j-new-design-faq-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    /* Slate 900 */
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .j-new-design-faq-header h2 {
        font-size: 2.25rem;
    }
}


/* --- Layout: Columns --- */
.j-new-design-faq-list {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .j-new-design-faq-list {
        flex-direction: row;
        align-items: flex-start;
    }

    .j-new-design-faq-column {
        width: 50%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

/* Mobile fallback for column class when stacked */
.j-new-design-faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* --- Accordion Item Styles --- */
.j-new-design-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
    overflow: hidden;
}

.j-new-design-faq-item:hover {
    border-color: #fecaca;
    /* Red 200 */
}

.j-new-design-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    outline: none;
}

.j-new-design-faq-question-text {
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s ease;
}

/* Active & Hover States */
.j-new-design-faq-item:hover .j-new-design-faq-question-text,
.j-new-design-faq-item.active .j-new-design-faq-question-text {
    color: #df0e0e;
}

/* Icon Styling */
.j-new-design-faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-left: 16px;
    color: #94a3b8;
    transition: transform 0.3s ease, color 0.3s ease;
}

.j-new-design-faq-item.active .j-new-design-faq-icon {
    transform: rotate(180deg);
    color: #df0e0e;
}

/* SVG rendering fix */
.j-new-design-faq-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* --- Accordion Content Animation --- */
.j-new-design-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.j-new-design-faq-content {
    padding: 0 20px 24px 20px;
    color: #000000;
    line-height: 1.6;
    border-top: 1px solid transparent;
    font-size: 0.95rem;
}

.j-new-design-faq-item.active .j-new-design-faq-content {
    border-top-color: #f1f5f9;
    padding-top: 16px;
    /* Add padding when open */
}

/* Content Internal Elements */
.j-new-design-faq-content a {
    color: #df0e0e;
    text-decoration: none;
    font-weight: 500;
}

.j-new-design-faq-content a:hover {
    text-decoration: underline;
}

.j-new-design-faq-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 8px;
}

.j-new-design-faq-content li {
    margin-bottom: 4px;
}

.j-new-design-faq-highlight {
    color: #df0e0e;
    font-weight: 600;
    margin-top: 8px;
    display: block;
}

/* --- Footer Section --- */
.j-new-design-faq-footer {
    background-color: #f8fafc;
    border-top: 1px solid #f1f5f9;
    padding: 32px;
    text-align: center;
}

.j-new-design-faq-footer-text {
    color: #64748b;
    margin-bottom: 16px;
}

.j-new-design-faq-btn {
    display: inline-block;
    background-color: #1e293b;
    /* Slate 800 */
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s, box-shadow 0.2s;
}

.j-new-design-faq-btn:hover {
    background-color: #df0e0e;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* -------------------------------------------- */
:root {
    --j-bg-color: #f3f4f6;
    --j-card-bg: #ffffff;
    --j-text-main: #111827;
    --j-text-sub: #4b5563;
    --j-border-color: #f3f4f6;
    --j-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --j-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Layout Container */
.j-new-box-design-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 2rem;
}

/* Page Header */
.j-new-box-design-header {
    margin-bottom: 2rem;
    text-align: center;
}

.j-new-box-design-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--j-text-main);
}

.j-new-box-design-subtitle {
    color: var(--j-text-sub);
    margin: 0;
}

/* Split Layout */
.j-new-box-design-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Columns */
.j-new-box-design-col-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    ;
    gap: 1.5rem;
}

/* Responsive Breakpoints */
@media (min-width: 640px) {

    .j-new-box-design-header {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .j-new-box-design-row {
        flex-direction: row;
        align-items: center;
    }

}

/* Card Component */
.j-new-box-design-card {
    background-color: var(--j-card-bg);
    border-radius: 0.75rem;
    box-shadow: var(--j-shadow);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.j-new-box-design-card:hover {
    box-shadow: var(--j-shadow-hover);
}

/* Card Header */
.j-new-box-design-card-head {
    padding: 1.5rem;
    border-bottom: 1px solid var(--j-border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Compact padding for right column cards */
.j-new-box-design-card-compact .j-new-box-design-card-head {
    padding: 1rem;
}

.j-new-box-design-card-title-text {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: var(--j-text-main);
}

/* Compact title text */
.j-new-box-design-card-compact .j-new-box-design-card-title-text {
    font-size: 1rem;
}

/* Card Icon Wrapper */
.j-new-box-design-icon-box {
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.j-new-box-design-card-compact .j-new-box-design-icon-box {
    padding: 0.375rem;
}

/* Theme Colors for Icons */
.j-new-box-design-theme-primary {
    background-color: #dbdbfd;
    color: #101047;
}

.j-new-box-design-theme-seondary {
    background-color: #f7d5d5;
    color: #df0e0e;
}


/* Card Body */
.j-new-box-design-card-body {
    padding: 1.5rem;
}

.j-new-box-design-card-compact .j-new-box-design-card-body {
    padding: 1rem;
}

.j-new-box-design-para {
    margin: 0;
    font-size: 16px;
    color: black;
}

.j-new-box-design-card-compact .j-new-box-design-para {
    font-size: 0.75rem;
}

/* --------------------------------------------- */
.j-new-design-sub-heading {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    color: black;
}

.j-new-design-sub-description {
    font-size: 16px;
    color: black;
    width: 80%;
    text-align: center;
    margin: 0 auto 20px auto;
}

.j-new-design-sub-description a {
    text-decoration: none;
    color: #df0e0e;
}

.j-new-design-sub-heading span {
    color: #df0e0e;
}

/* --------------------------- */

.diagram-container {
    display: grid;
    grid-template-columns: 1fr 200px 1fr;
    grid-template-rows: 1fr 200px 1fr;
    gap: 2rem;
    max-width: 900px;
    width: 100%;
    height: 600px;
    margin: 0 auto;
    position: relative;
}

/* Mobile Responsive adjustment */
@media (max-width: 768px) {
    .diagram-container {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 1.5rem;
        padding: 1rem;
    }

    /* Hide connecting lines on mobile for cleaner look */
    .connector-line {
        display: none;
    }

    .center-node {
        order: -1;
        /* Keep center at top on mobile, or remove to put in middle */
        margin: 2rem auto;
    }
}

/* The 4 Corner Boxes */
.corner-box {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 10;
}

.corner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: var(#4F46E5);
}

.icon-wrapper {
    background-color: #EEF2FF;
    color: var(#4F46E5);
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Positioning the boxes in the Grid */
.box-tl {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    align-self: end;
}

.box-tr {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
    align-self: end;
}

.box-bl {
    grid-column: 1;
    grid-row: 3;
    justify-self: end;
    align-self: start;
}

.box-br {
    grid-column: 3;
    grid-row: 3;
    justify-self: start;
    align-self: start;
}

/* The Center Circle */
.center-node {
    grid-column: 2;
    grid-row: 2;
    width: 180px;
    height: 180px;
    background: var(#4F46E5);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: 0 0 0 10px rgba(79, 70, 229, 0.2);
    /* Outer glow ring */
    z-index: 20;
    place-self: center;
    position: relative;
}

/* Connecting Lines (Absolute positioned SVG behind everything) */
.connections-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Dashed lines styling */
.connection-path {
    stroke: #CBD5E1;
    stroke-width: 2;
    stroke-dasharray: 6;
    fill: none;
    animation: dash 30s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 1000;
    }
}

/* --------------------------- */
.j-new-design-highlight {
    display: flex;
    justify-content: space-evenly;
}

.j-new-design-highligh-section {
    background: #0b1f38;
    color: white;
}

.j-new-design-highlight-sub-head-des {
    text-align: center;
    color: #8d8d8d;
}

.j-new-design-highlight-sub-head span {
    color: #df0e0e;
}

.j-new-design-highlight-sub-head {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
}

.j-new-design-highligh-div {
    padding: 20px 25px;
    max-width: 1700px;
    margin: auto;
}

@media (max-width: 1500px) {
    .j-new-design-highligh-div {
        padding: 20px 30px;
    }
}

@media (max-width: 992px) {
    .j-new-design-highligh-div {
        padding: 20px 25px;
    }
}

@media (max-width: 500px) {
    .j-new-design-highligh-div {
        padding: 20px 10px;
    }
}


.j-new-design-highlight-head {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 1024px) {

    .j-image-container img {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .j-new-design-highlight-head {
        font-size: 2rem;
    }

    .j-new-design-highlight-sub-head {
        font-size: 2rem;
    }

}

@media (max-width: 600px) {
    .j-new-design-highlight-head {
        font-size: 1.5rem;
    }

    .j-new-design-highlight-sub-head {
        font-size: 1.5rem;
    }
}

@media (max-width: 400px) {
    .j-new-design-highlight-head {
        font-size: 1rem;
    }

    .j-new-design-highlight-body {
        font-size: 12px;
    }

}

.j-new-design-section {
    padding: 30px 0 0 0;
}

.j-new-design-4-card-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    text-align: center;
    gap: 30px;
    margin-top: 50px;
}

.j-new-design-4-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.j-new-design-4-card-img {
    width: 90px;
}

.j-new-design-4-card-img img {
    width: 100%;
}

.j-new-design-highlight-sub-head-h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #101047;
    margin-bottom: 20px;
}

.j-new-design-highlight-sub-body-para {
    font-size: 16px !important;
}

@media (max-width: 1239px) {
    .j-new-design-4-card-box {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 499px) {
    .j-new-design-4-card-box {
        grid-template-columns: 1fr;
    }

    .j-new-design-highlight-sub-head-h3 {
        font-size: 1rem;
    }
}

.j-new-design-icon-box-1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;
    gap: 20px;
}

.j-new-design-icon-box-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;
    gap: 20px;
    margin-top: 20px;
}

.j-new-design-icon-box-3 {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;
    gap: 20px;
    margin-top: 20px;
}

.j-new-design-icon-box-3 .j-new-design-icon-box-list {
    width: max-content;
}

.j-new-design-icon-box-list {
    display: flex;
    gap: 15px;
    background: white;
    border-radius: 15px;
    padding: 10px 20px;
    width: 100%;
    height: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.j-new-design-icon-box-list-icon span {
    font-size: 60px;
    color: #df0e0e;
}

.j-new-design-icon-box-list-text-point {
    font-size: 15px;
}

.j-new-design-icon-box-list-text-point div {
    display: flex;
    gap: 15px;
}

.j-new-design-icon-box-list-text {
    padding-top: 15px;
}

.j-new-design-icon-box-list-text-point div span {
    color: #16a34a;
}

@media (max-width: 992px) {
    .j-new-design-icon-box-1 {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 600px) {
    .j-new-design-icon-box-1 {
        grid-template-columns: 1fr
    }

    .j-new-design-icon-box-2 {
        grid-template-columns: 1fr
    }

    .j-new-design-icon-box-list-icon span {
        font-size: 40px;
    }

    .j-new-design-icon-box-3 .j-new-design-icon-box-list {
        width: 100%;
    }
}

.j-new-design-3-card-design {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    width: 100%;
}

@media (min-width: 768px) {
    .j-new-design-3-card-design {
        grid-template-columns: repeat(3, 1fr);
    }
}

.j-new-design-3-card-design .card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.j-new-design-3-card-design .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(30, 58, 138, 0.1), 0 10px 10px -5px rgba(30, 58, 138, 0.04);
    border-color: #febfdb;
}

/* Decorative top accent line */
.j-new-design-3-card-design .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.j-new-design-3-card-design .card:hover::before {
    opacity: 1;
}

.j-new-design-3-card-design .icon-box {
    width: 60px;
    height: 60px;
    background-color: #eff6ff;
    color: #101047;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.j-new-design-3-card-design .card:hover .icon-box {
    background-color: #df0e0e;
    color: white;
}

/* Typography */
.j-new-design-3-card-design h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem 0;
}

.j-new-design-3-card-design p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    /* Slate gray */
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

/* Button / Link */
.j-new-design-3-card-design .card-link {
    font-weight: 600;
    color: #ef4444;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease;
    padding: 5px 10px;
    border-radius: 15px;
}

.j-new-design-3-card-design .card-link:hover {
    gap: 0.8rem;
    color: #ef4444;
    background: #ef44441c;
    padding: 5px 10px;
    border-radius: 15px;
}

/* ------------------------------------------------ */
/* Reset/Base for the section */
.j-new-design-sri-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    padding: 60px 20px;
    box-sizing: border-box;
}

.j-new-design-sri-section * {
    box-sizing: border-box;
}

/* Container */
.j-new-design-sri-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Header */
.j-new-design-sri-header {
    text-align: center;


}

.j-new-design-sri-label {
    color: #ef4444;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.j-new-design-sri-title {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin: 0 0 20px 0;
    font-weight: 800;
}

.j-new-design-sri-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Content Grid (SEO Paragraphs) */
.j-new-design-sri-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.j-new-design-sri-content-card {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.j-new-design-sri-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.j-new-design-sri-content-card p {
    font-size: 15px;
}

.j-new-design-sri-card-blue {
    border-left: 5px solid #101047;
}

.j-new-design-sri-card-orange {
    border-left: 5px solid #df0e0e;
}

.j-new-design-sri-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #1a1a2e;
}

.j-new-design-sri-card-title i {
    margin-right: 10px;
}

.j-new-design-sri-text-blue {
    color: #101047;
}

.j-new-design-sri-text-orange {
    color: #df0e0e;
}

/* Banner */
.j-new-design-sri-banner {
    background: linear-gradient(185deg, #334254 0%, #0b1f38 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.j-new-design-sri-badge {
    background-color: #df0e0e;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.j-new-design-sri-banner h3 {
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.j-new-design-sri-banner p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #e0e7ff;
}

/* Tech Grid */
.j-new-design-sri-tech-header {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.j-new-design-sri-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 15px;
}

.j-new-design-sri-tech-card {
    border: 1px solid #e5e7eb;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border-radius: 10px;
    padding: 25px;
    background: white;
    transition: all 0.3s ease;
}

.j-new-design-sri-tech-card:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.j-new-design-sri-tech-title-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.j-new-design-sri-tech-title-group i {
    font-size: 1.8rem;
    margin-right: 15px;
}

.j-new-design-sri-tech-title-group h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.j-new-design-sri-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.j-new-design-sri-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #4b5563;
    display: flex;
    align-items: center;
}

.j-new-design-sri-list li i {
    color: #10b981;
    /* Green checkmark */
    margin-right: 10px;
    font-size: 0.8rem;
}

.j-new-design-sri-full-width {
    grid-column: 1 / -1;
}

.j-new-design-sri-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.j-new-design-sri-tag {
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    color: #374151;
    display: flex;
    align-items: center;
}

.j-new-design-sri-tag img {
    margin-right: 8px;
    width: 100px;
}

/* CTA */
.j-new-design-sri-cta {
    text-align: center;
    padding-bottom: 10px;
}

.j-new-design-sri-btn {
    display: inline-block;
    background-color: #101047;
    color: white;
    padding: 15px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.j-new-design-sri-btn:hover {
    background-color: #111827;
    transform: scale(1.02);
}

.j-new-design-sri-cta p {
    margin-top: 15px;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .j-new-design-sri-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .j-new-design-sri-content-grid {
        grid-template-columns: 1fr;
    }

    .j-new-design-sri-tech-grid {
        grid-template-columns: 1fr;
    }

    .j-new-design-sri-title {
        font-size: 2rem;
    }

    .j-new-design-sri-banner {
        padding: 30px 20px;
    }
}

.j-new-design-sri-tech-card-point {
    display: flex;
    justify-content: space-between;
}

/* -------------------------------- */
.j-new-design-sri-tag-img {
    width: 100px;
}

.j-new-design-sri-tag-img img {
    width: 100%;
}

/* ----------------------------------------------- */
/* Wrapper */
.j-new-design-new-wrapper {
    max-width: 1700px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section */
.j-new-design-new-hero-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    color: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.j-new-design-new-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.j-new-design-new-hero-sub {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    color: #94a3b8;
    font-weight: 300;
}

/* Grid Layout */
.j-new-design-new-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Cards */
.j-new-design-new-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

.j-new-design-new-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Card Colors */
.j-new-design-new-card-network {
    border-color: #101047;
}

.j-new-design-new-card-malware {
    border-color: #ef4444;
}

.j-new-design-new-card-core {
    border-color: #101047;
}

.j-new-design-new-card-perf {
    border-color: #ef4444;
}

/* Card Header */
.j-new-design-new-card-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.j-new-design-new-card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.j-new-design-new-icon-network {
    background: #eff6ff;
    color: #101047;
}

.j-new-design-new-icon-malware {
    background: #fef2f2;
    color: #ef4444;
}

.j-new-design-new-icon-core {
    background: #eff6ff;
    color: #101047;
}

.j-new-design-new-icon-perf {
    background: #fef2f2;
    color: #ef4444;
}

.j-new-design-new-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.j-new-design-new-card-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

/* Feature Lists inside Cards */
.j-new-design-new-feature-list {
    list-style: none;
    flex-grow: 1;
}

.j-new-design-new-feature-item {
    margin-bottom: 16px;
    font-size: 16px;
}

.j-new-design-new-feature-term {
    display: block;
    font-weight: 700;
    color: #334155;
    margin-bottom: 2px;
}

.j-new-design-new-feature-def {
    color: #64748b;
    font-size: 0.85rem;
}

/* 3rd Party Section */
.j-new-design-new-third-party-section {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.j-new-design-new-tp-header {
    text-align: center;
    margin-bottom: 40px;
}

.j-new-design-new-tp-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.j-new-design-new-tp-sub {
    font-size: 1.1rem;
    color: #64748b;
}

/* Stack Categories */
.j-new-design-new-stack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.j-new-design-new-stack-category {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.j-new-design-new-stack-cat-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
}

.j-new-design-new-stack-icon {
    font-size: 1.5rem;
}

.j-new-design-new-stack-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #334155;
}

.j-new-design-new-pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.j-new-design-new-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
    transition: all 0.2s;
    cursor: default;
}

.j-new-design-new-pill:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: #eff6ff;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .j-new-design-new-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .j-new-design-new-main-title {
        font-size: 1.75rem;
    }

    .j-new-design-new-grid-container {
        grid-template-columns: 1fr;
    }

    .j-new-design-new-stack-grid {
        grid-template-columns: 1fr;
    }

    .j-new-design-new-third-party-section {
        padding: 40px 20px;
    }
}

.j-button-container {
    display: inline-block;
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ef4444;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 2px solid #ef4444;
}

.btn-quote:hover {
    background-color: #dc2626;
    /* Darker red on hover */
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

/* ------------------ */
.j-no-stock {
    position: absolute;
    top: 73%;
    background-color: #d9534f;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 5px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .j-no-stock {
        top: 76%;
    }
}

.g-new-product-pricing-table-data:last-child {
    position: relative;
}

.tooltip-soft {
    visibility: hidden;
    background-color: #0e104c;
    color: #fff;
    text-align: center;
    border-radius: 20px;
    /* Pill shape */
    padding: 8px 16px;

    position: absolute;
    z-index: 100;
    bottom: 150%;
    left: 50%;
    width: 200px;
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
    /* Bouncy transition */
    transition: opacity 0.3s, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.39);
}

.tooltip-soft::after {
    content: "";
    position: absolute;
    top: 98%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #6366f1 transparent transparent transparent;
}

.j-no-stock:hover .tooltip-soft {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.g-blog-article-content-part h2 {
    font-size: 25px !important;
}
.g-blog-article-content-part h3 {
    font-size: 25px !important;
    text-transform: math-auto;
    margin-top: 30px;
}

.pricing-tick-flex {
    align-items: center !important;
    gap: 10px
}

.j-new-blog-cta-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

/* -------------web hosting page section------------------------------- */
.j-new-use-case-sec-wrapper {
    max-width: 1700px;
    margin: 0 auto;
    box-sizing: border-box;
}

.j-new-use-case-sec-header {
    text-align: center;
    padding-bottom: 15px;

}

.j-new-use-case-sec-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.j-new-use-case-sec-highlight {
    color: #c50808;
}

.j-new-use-case-sec-desc {}

.j-new-use-case-sec-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Responsive Grid for Tablet and Desktop */
@media (min-width: 768px) {
    .j-new-use-case-sec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .j-new-use-case-sec-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.j-new-use-case-sec-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}


.j-new-use-case-sec-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.j-new-use-case-sec-icon-box svg {
    width: 1.75rem;
    height: 1.75rem;
}

/* Icon Colors */
.j-new-use-case-sec-icon-blue {
    background-color: #eff6ff;
    color: #2563eb;
}

.j-new-use-case-sec-icon-indigo {
    background-color: #eef2ff;
    color: #4f46e5;
}

.j-new-use-case-sec-icon-pink {
    background-color: #fdf2f8;
    color: #db2777;
}

.j-new-use-case-sec-icon-purple {
    background-color: #faf5ff;
    color: #9333ea;
}

.j-new-use-case-sec-icon-yellow {
    background-color: #fefce8;
    color: #ca8a04;
}

.j-new-use-case-sec-icon-red {
    background-color: #fef2f2;
    color: #dc2626;
}

.j-new-use-case-sec-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1rem 0;
}

.j-new-use-case-sec-card-desc {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
}

.j-new-use-case-sec-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
    /* Pushes footer to bottom */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.j-new-use-case-sec-list-item {
    display: flex;
    align-items: flex-start;
}

.j-new-use-case-sec-check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #22c55e;
    margin-right: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.j-new-use-case-sec-list-text {
    font-size: 16px;
    color: #374151;
    line-height: 1.5;
}

.j-new-use-case-sec-list-text strong {
    font-weight: 600;
    color: #111827;
}

.j-new-use-case-sec-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.j-new-use-case-sec-card-footer p {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* -----------web hosting brand compare table-------------------- */
.j-new-branf-com-table-wrapper {
    max-width: 1700px;
    margin: 0 auto;
    box-sizing: border-box;
}

.j-new-branf-com-table-header {
    text-align: center;
    margin: 0 auto 3rem auto;
}

.j-new-branf-com-table-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.j-new-branf-com-table-desc {
    margin: 0;
}

.j-new-branf-com-table-container {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    margin-top: 2rem;
}

.j-new-branf-com-table-subtitle-wrap {
    background-color: #101047;
    /* Deep blue header for the table */
    padding: 1.5rem 2rem;
    text-align: center;
}

.j-new-branf-com-table-subtitle {
    margin: 0;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
}

.j-new-branf-com-table-responsive {
    /* overflow-x: auto; */
    /* For mobile horizontal scroll */
}

.j-new-branf-com-table-main {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    
}

.j-new-branf-com-table-main th,
.j-new-branf-com-table-main td {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

.j-new-branf-com-table-main th {
    background-color: #f3f4f6;
    font-weight: 700;
    color: #374151;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Highlighting the Host Asia Column */
.j-new-branf-com-table-main th.j-new-branf-com-table-highlight-col,
.j-new-branf-com-table-main td.j-new-branf-com-table-highlight-col {
    background-color: #eff6ff;
    /* Light blue tint */
    border-left: 2px solid #bfdbfe;
    border-right: 2px solid #bfdbfe;
}

.j-new-branf-com-table-main th.j-new-branf-com-table-highlight-col {
    color: #c50808;
    border-top: 2px solid #bfdbfe;
}

/* Last row bottom border removal */
.j-new-branf-com-table-main tr:last-child td {
    border-bottom: none;
}

/* Typography inside table */
.j-new-branf-com-table-feature-name {
    font-weight: 600;
    color: #047857;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.j-new-branf-com-table-cell-title {
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.j-new-branf-com-table-highlight-col .j-new-branf-com-table-cell-title {
    color: #c50808;
    
}

.j-new-branf-com-table-normal-col .j-new-branf-com-table-cell-title {
    color:black;

}

.j-new-branf-com-table-cell-desc {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* Icons for rows */
.j-new-branf-com-table-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #6b7280;
    flex-shrink: 0;
}
@media (max-width: 1024px) {
    .j-new-branf-com-table-main thead {
        display: none;
    }
    .j-new-branf-com-table-main {
        text-align: center;
    }
    .j-new-branf-com-table-feature-name {
       justify-content: center; 
    }
}