    /* Container & Grid Layout */
    .wppcb-container {
    width: 100%;
    margin: 2em 0;
    box-sizing: border-box;
    }
    .wppcb-grid {
    display: grid;
    gap: 32px;
    width: 100%;
    box-sizing: border-box;
    }

    /* Columns Per Row Classes */
    .wppcb-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .wppcb-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .wppcb-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .wppcb-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .wppcb-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .wppcb-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

    /* Column Item Card Styles (Premium look) */
    .wppcb-column {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    }
    .wppcb-column:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    /* Image Styling */
    .wppcb-image-wrapper {
    position: relative !important;
    width: 100% !important;
    padding-top: 60% !important; /* 5:3 Aspect Ratio */
    overflow: hidden !important;
    background: #f7f7f7 !important;
    display: block !important;
    }
    .wppcb-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
    display: block !important;
    }
    .wppcb-column:hover .wppcb-image {
    transform: scale(1.05);
    }

    /* Column Content */
    .wppcb-content {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    text-align: center;
    }
    .wppcb-title, .gutenberg__wrap .contentImagetextbox .image__box .image__box_wrap.overlap_title h3 {
    font-size: 1.4rem;
    margin: 24px 0 16px 0;
    font-weight: 700;
    color: #3094AC !important;
    line-height: 1.3;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    box-sizing: border-box;
    text-align: center !important;
    }
    .wppcb-short-desc {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    box-sizing: border-box;
    }
    .wppcb-short-desc p {
    margin: 0;
    }

    /* Interactive Button Styling */
    .wppcb-button {
    display: inline-block;
    background: #0073aa; /* Default WordPress Blue style */
    color: #ffffff;
    text-align: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
    align-self: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 115, 170, 0.15);
    }
    .wppcb-button:hover {
    background: #005177;
    box-shadow: 0 6px 12px rgba(0, 115, 170, 0.25);
    }
    .wppcb-button:active {
    transform: scale(0.98);
    }

    /* Responsive Grid Tweaks */
    @media (max-width: 900px) {
    .wppcb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    }
    @media (max-width: 600px) {
    .wppcb-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }
    }

    /* Modal Popup Styling */
    .wppcb-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
    }
    .wppcb-modal.wppcb-modal-active {
    opacity: 1;
    visibility: visible;
    }
    .wppcb-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65); /* Rich dark transparent */
    backdrop-filter: blur(8px);
    transition: opacity 0.3s ease;
    }
    .wppcb-modal-wrapper {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 640px;
    max-height: 80vh;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 10;
    overflow-y: auto;
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0;
    margin-bottom: 30px;
    }
    .wppcb-modal.wppcb-modal-active .wppcb-modal-wrapper {
    transform: scale(1);
    }

    /* Prevent body scroll when modal is active */
    body.wppcb-modal-prevent-scroll {
    overflow: hidden;
    }

    /* Modal Close Button */
    .wppcb-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 15;
    transition: background-color 0.2s, transform 0.2s;
    }
    .wppcb-modal-close:hover {
    background: #f1f5f9;
    transform: rotate(90deg);
    }

    /* Modal Internal Body */
    .wppcb-modal-body {
    padding: 40px 32px 32px 32px;
    }
    .wppcb-modal-image-wrapper {
    margin: -40px -32px 24px -32px;
    max-height: 300px;
    overflow: hidden;
    background: #f1f5f9;
    }
    .wppcb-modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    }
    .wppcb-modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
    line-height: 1.25;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
    }
    .wppcb-modal-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
    }
    .wppcb-modal-text p {
    margin: 0 0 1.2em 0;
    }
    .wppcb-modal-text p:last-child {
    margin: 0;
    }

    /* Backend block custom editor layout styling */
    .wppcb-column-editor {
    background: #fcfcfc;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    }
    .wppcb-column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    margin-bottom: 12px;
    font-weight: bold;
    }
    .wppcb-editor-wrapper {
    border: 2px dashed #ccd0d4;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 8px;
    }

    .wppcb-short-desc p, .wppcb-title, .gutenberg__wrap .contentImagetextbox .image__box .image__box_wrap.overlap_title h3,
    .wppcb-modal-title, .wppcb-modal-text p {
    padding-right: 30px !important;
    padding-left: 30px !important;
    }

    .wppcb-button {
    margin: 30px;
    }

    .wppcb-modal-text p {
    margin-bottom: 30px !important;
    }

    .wppcb-image-wrapper {
    margin-bottom: 30px !important;
    }

    .wppcb-title, h3.wppcb-title, .wppcb-short-desc p {
    text-align: center !important;
    }
    