.text_justify {
	text-align: justify;
}
.project-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.meta-box {
    margin-bottom: 15px;
}

.meta-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.meta-link:hover {
    background-color: #6421FF;
    color: white;
    transform: translateY(-5px);
}

.meta-link .meta-title {
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.meta-link .meta-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.meta-link:hover .meta-arrow {
    transform: translateX(5px);
}

.meta-link.active {
    background-color: #6421FF;
    color: white;
}

.meta-link.active .meta-title {
    color: white;
}

.meta-link.active .meta-arrow {
    color: white;
}

.meta-box {
    display: flex;
    align-items: stretch;
}

.meta-box a {
    display: block;
    width: 100%;
    height: 100%;
}

.meta-wrapper {
    display: flex;
    flex-direction: column; /* Stack items vertically */
}
.project-details-meta .meta-box:not(:first-child) {
	margin: 5px;
	padding: 5px;
}
.project-details-meta {
	padding: 10px;
}
.wcolor{
    color: #fff !important;
}



/*wishlist extention css*/
/* =====================================================
       ROOT FIX: Your .navbar-area is position:fixed in
       style.css — so page content renders behind it.
       This padding-top pushes the page body below the
       navbar on initial load. Adjust 80px to match your
       exact navbar height if needed.
    ====================================================== */
    
    .main-nav {
        position: absolute;
        background-color: #2966be;
        top: 0;
        left: 0;
        padding: 0;
        width: 100%;
        z-index: 999;
        height: auto;
    }

    @media (max-width: 991px) {
        body {
            /*padding-top: 60px !important;*/
        }
    }

    /* ===== BREADCRUMB ===== */
    .breadcrumb-bar {
        background: #fff;
        border-bottom: 1px solid #e8e8e8;
        padding: 12px 0;
    }

    .breadcrumb-bar ol {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: #888;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .breadcrumb-bar ol li + li::before {
        content: '/';
        margin-right: 8px;
        color: #ccc;
    }

    .breadcrumb-bar ol li a { color: #001f3f; font-weight: 500; text-decoration: none; }
    .breadcrumb-bar ol li a:hover { color: #ff7043; }
    .breadcrumb-bar ol li:last-child { color: #ff7043; font-weight: 600; }

    /* ===== MAIN WRAPPER ===== */
    .product-page-wrapper {
        padding: 50px 0;
        background-color: #f5f6fa;
    }

    /* ===== PRODUCT LAYOUT ===== */
    .product-flex-row {
        display: flex;
        flex-wrap: wrap;
        gap: 60px;
        align-items: flex-start;
        background: #fff;
        border-radius: 10px;
        padding: 50px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    }

    /* ===== LEFT COLUMN ===== */
    .product-column-left {
        flex: 1;
        /*min-width: 300px;*/
        max-width: 420px;
    }

    .image-background-box {
        background: #001f3f;
        padding: 60px 40px;
        border-radius: 8px;
        text-align: center;
    }

    .image-background-box img {
        width: 100%;
        height: auto;
        max-width: 280px;
        object-fit: contain;
    }

    .compatibility-strip {
        background: #f1f4f8;
        border-left: 4px solid #001f3f;
        padding: 12px 16px;
        margin-top: 18px;
        font-size: 13px;
        font-weight: 600;
        color: #333;
        border-radius: 0 4px 4px 0;
    }

    .marketplace-approval {
        margin-top: 12px;
        font-size: 13px;
        color: #28a745;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 500;
    }

    .thumb-strip {
        display: flex;
        gap: 10px;
        margin-top: 18px;
    }

    .thumb-strip div {
        background: #e8edf3;
        border: 2px solid transparent;
        border-radius: 6px;
        width: 60px;
        height: 60px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        color: #555;
        transition: border-color 0.2s;
    }

    .thumb-strip div:hover,
    .thumb-strip div.active { border-color: #ff7043; }

    /* ===== RIGHT COLUMN ===== */
    .product-column-right {
        flex: 1.5;
        /*min-width: 320px;*/
    }

    .product-badge {
        display: inline-block;
        background: #e8f5e9;
        color: #2e7d32;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 20px;
        margin-bottom: 14px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .product-column-right h1 {
        font-size: 30px;
        font-weight: 700;
        color: #111;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .review-stars {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .review-stars .stars { color: #ffcc00; font-size: 15px; letter-spacing: 1px; }
    .review-stars .review-text { font-size: 13px; color: #888; }
    .review-stars .add-review { font-size: 13px; color: #ff7043; font-weight: 600; cursor: pointer; }
    .review-stars .add-review:hover { text-decoration: underline; }

    .product-price {
        font-size: 36px;
        font-weight: 800;
        color: #001f3f;
        margin-bottom: 6px;
    }

    .price-note {
        font-size: 12px;
        color: #28a745;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .product-description {
        font-size: 14px;
        color: #666;
        line-height: 1.8;
        margin-bottom: 28px;
        padding-bottom: 28px;
        border-bottom: 1px solid #eee;
    }

    /* Form */
    .product-form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .field-wrap { flex: 1; min-width: 180px; }

    .field-wrap label {
        display: block;
        font-size: 12px;
        font-weight: 700;
        color: #444;
        margin-bottom: 7px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .field-wrap select,
    .field-wrap input[type="text"] {
        width: 100%;
        padding: 11px 14px;
        border: 1.5px solid #dde1e8;
        border-radius: 6px;
        font-size: 14px;
        color: #333;
        background: #fafbfc;
        transition: border-color 0.2s, box-shadow 0.2s;
        outline: none;
    }

    .field-wrap select:focus,
    .field-wrap input:focus {
        border-color: #ff7043;
        box-shadow: 0 0 0 3px rgba(255,112,67,0.12);
        background: #fff;
    }

    .free-install-note {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #fffbf0;
        border: 1px solid #ffe08a;
        border-radius: 6px;
        padding: 10px 14px;
        font-size: 13px;
        font-weight: 600;
        color: #7a5c00;
        margin-bottom: 24px;
    }

    /* Buttons */
    .product-btn-group {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
    }

    .btn-add-cart {
        background: #ff7043;
        color: #fff !important;
        border: none;
        padding: 14px 34px;
        font-size: 14px;
        font-weight: 700;
        border-radius: 6px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
        box-shadow: 0 4px 14px rgba(255,112,67,0.35);
        text-decoration: none;
    }

    .btn-add-cart:hover {
        background: #e64a19;
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(255,112,67,0.4);
        color: #fff !important;
    }

    .btn-live-demo {
        background: #fff;
        color: #001f3f !important;
        border: 2px solid #001f3f;
        padding: 14px 34px;
        font-size: 14px;
        font-weight: 700;
        border-radius: 6px;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: background 0.2s, color 0.2s, transform 0.15s;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-live-demo:hover {
        background: #001f3f;
        color: #fff !important;
        transform: translateY(-1px);
    }

    /* ===== BOTTOM FEATURES ===== */
    .bottom-features {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 40px;
        padding: 30px 50px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    }

    .product-feature-box {
        text-align: center;
        flex: 1;
        min-width: 120px;
    }

    .product-feature-box i {
        font-size: 30px;
        color: #001f3f;
        margin-bottom: 10px;
        display: block;
    }

    .product-feature-box .feat-title {
        font-size: 13px;
        font-weight: 700;
        color: #222;
        line-height: 1.5;
    }

    .product-feature-box .feat-sub {
        font-size: 11px;
        color: #888;
        margin-top: 2px;
    }

    .feature-divider {
        width: 1px;
        background: #eee;
        align-self: stretch;
    }

    @media (max-width: 900px) {
        .product-flex-row {
            flex-direction: column;
            padding: 30px 20px;
            gap: 30px;
        }
        .product-column-left { max-width: 100%; }
        .bottom-features { padding: 24px 20px; }
        .feature-divider { display: none; }
    }

.add-to-cart-btn {
    background-image: linear-gradient(to right, #ff2500, #ff7100);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


/*limit offer tag*/
.case-study-card {
    position: relative;
    overflow: hidden;
}

.offer-badge {
    position: absolute;
    top: 30px;
    right: -60px;
    background-image: linear-gradient(to right, #ff2500, #ff7100);
    color: #fff;
    padding: 8px 50px;
    font-size: 15px;
    font-weight: bold;
    transform: rotate(41deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 10;
}

/*custom inquery model*/
/* Modal */
.custom-modal {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  background: #fff;
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(to right, #ff2500, #ff7100);
  border: none;
  color: #fff;
  border-radius: 8px;
  transition: 0.3s;
}
.btn-gradient:hover {
  opacity: 0.9;
}

/* Inputs */
.modern-input {
  border-radius: 10px;
  border: 1px solid #eee;
  padding: 12px;
  font-size: 14px;
  transition: all 0.25s ease;
}

/* Focus Effect */
.modern-input:focus {
  border-color: #2966be;
  box-shadow: 0 0 0 3px rgba(255,37,0,0.1);
}

/* Hover subtle */
.modern-input:hover {
  border-color: #2966be;
}