/* --- Common & Section Titles --- */
.section-title-orange {
    color: #f16e22;
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
}

.section-title-blue {
    color: #0b2545;
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
}

/* --- Section 1: Advantages Table --- */
.table-container {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.custom-table thead {
    background-color: #ff823b;
    color: white;
}

.custom-table th,
.custom-table td {
    padding: 15px 20px;
    vertical-align: middle;
    border-bottom: 1px solid #f2f2f2;
}

.text-success-custom {
    color: #198754;
    font-weight: 600;
}

/* --- Section 2: Trust Cards & Accent Cards --- */
.trust-card {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    display: block;
    text-decoration: none;
    position: relative;
    transition: 0.35s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.09);
}

.trust-card:hover {
    transform: translateY(-3px);
}

.trust-icon svg {
    width: 36px;
    height: 36px;
    margin-bottom: 15px;
}

.trust-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}

.custom-accent-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a), 0 2px 4px -2px #00000017;
    border: 1px solid #e8edf5;
    border-left: 5px solid #ff6a00;
}

.custom-accent-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.card-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.card-icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: #ff6a00;
    flex-shrink: 0;
}

.card-icon-wrapper .title4,
.title4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ff6a00;
    margin: 0;
}

.card-desc {
    font-size: 0.92rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* --- Section: Streamindus Line-items --- */
.streamindus-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.streamindus-card svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.streamindus-text {
    font-size: 1rem;
    font-weight: 600;
    color: #2b3a4a;
    margin: 0;
}

/* --- Section 3: Technical Specifications --- */
.spec-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    height: 100%;
    margin-bottom: 30px;
}

.spec-header {
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.spec-header svg {
    width: 42px;
    height: 42px;
    fill: currentColor;
    margin-bottom: 12px;
}

.spec-header .title3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.spec-header p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0;
    color: #fff;
}

.bg-ms {
    background-color: #e65c00;
}

.bg-ss {
    background-color: #ff7300;
}

.bg-rcc {
    background-color: #cc4400;
}

.spec-body {
    padding: 20px;
}

.spec-item {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-left: 4px solid #ff7300;
    border-radius: 6px;
    padding: 10px 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.spec-item svg {
    width: 14px;
    height: 14px;
    fill: #ff7300;
    margin-right: 12px;
    flex-shrink: 0;
}

.spec-item-text strong {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: #777;
    letter-spacing: 0.5px;
}

.spec-item-text span {
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
}

.btn-quote {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    color: white;
    margin-top: 15px;
    transition: opacity 0.2s;
}

.btn-quote:hover {
    opacity: 0.9;
    color: white;
}

/* --- Footer/Help Section --- */
.help-container {
    background-color: #fff1e6;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-top: 35px;
}

.help-title {
    color: #cc4400;
    font-weight: 700;
    margin-bottom: 15px;
}

.help-text p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.btn-consult {
    background-color: #e65c00;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-consult svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.table>:not(:first-child) {
    border-top: 1px solid rgb(159 159 159);
}

.singleItem.h-100.p-1.m-0 {
    box-shadow: 0 0 10px rgba(0, 0, 0, .13);
    border-radius: 12px;
    overflow: hidden;
}

.singleItem.h-100.p-1.m-0 .feature_item {
    box-shadow: none;
    border-radius: 0px;
    margin: 0px;
}

.singleItem.h-100.p-1.m-0 .feature_item .feature_image,
.singleItem.h-100.p-1.m-0 .feature_item .feature_image img {
    aspect-ratio: inherit;
    height: 100%;
    object-fit: cover;
}

.singleItem.h-100.p-1.m-0 .feature_sec {
    display: block;
    overflow-y: auto;
    padding: 9px;
    max-height: 230px;
}

.box-table.bg-white.overflow-hidden th {
    padding: 10px 15px;
}

.text-dark-blue {
    color: var(--dark-blue);
}

.text-orange {
    color: var(--primary-orange);
}

/* Orange Bottom Bar for Headings */
.heading-border {
    width: 60px;
    height: 3px;
    background-color: var(--primary-orange);
    margin: 12px auto;
}

/* Generic Card Styling */
.custom-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background: #fff;
    height: 100%;
}

/* Left Orange Border Design for specific sections */
.border-left-orange {
    border-left: 4px solid var(--primary-orange) !important;
}

/* SECTION 1: Material Handling */
.mhe-card .card-img-wrapper {
    position: relative;
}

.mhe-card .badge-category {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.mhe-card .card-title-inline {
    position: absolute;
    bottom: 12px;
    left: 170px;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
}

.product-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.product-link:hover {
    text-decoration: underline;
}

/* SECTION 2: Silos */
.advantage-box {
    background-color: #fdf8f4;
    border: 1px solid #feeade;
    border-radius: 12px;
    padding: 24px;
}

.silo-img-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.silo-badge-top {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    border: 1px solid #feeade;
    padding: 8px 16px;
    border-radius: 12px;
    text-align: center;
}

.silo-overlay-text {
    position: absolute;
    bottom: 80px;
    left: 20px;
    color: #fff;
    font-weight: bold;
    font-size: 1.3rem;
}

.silo-bottom-badges {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
}

.silo-blur-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
}

.silo-white-badge {
    background: #fff;
    color: var(--primary-orange);
    padding: 8px 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 0.85rem;
}

/* SECTION 3: Cold Storage Table */
.table-container {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.custom-table th {
    background-color: #ff823b;
    color: #fff;
    padding: 10px 24px;
    border-bottom: 2px solid #f2f4f5;
}

.custom-table td {
    padding: 10px 24px;
    vertical-align: middle;
    border-bottom: 1px solid #f2f4f5;
    line-height: normal;
}

.custom-table tr:last-child td {
    border-bottom: none;
}

.accordion-button {
    padding: 8px 15px;
}

/* SECTION 4: EPC Scope Cards */
.epc-card {
    border: none;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.epc-card-1 {
    border-left: 5px solid #f07d22;
    background: #fffcf9;
}

.epc-card-2 {
    border-left: 5px solid #227df0;
    background: #f8faff;
}

.epc-card-3 {
    border-left: 5px solid #22f07d;
    background: #f8fff9;
}

/* SECTION 5: Engineering Standards Boxes */
.standard-box {
    background: #fff;
    border: 1px solid #feeade;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    height: 100%;
}

.why-box {
    background: #fff;
    border: 1px solid #eef0f2;
    border-left: 4px solid var(--primary-orange);
    border-radius: 0 10px 10px 0;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* SVG Sizing */
.svg-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.svg-icon-lg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature_sec.text-start.ps-3 p {
    text-align: left;
    margin-top: 7px;
    color: #6b7280;
}

.title_h3.text-start svg {
    margin-right: 4px;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: 1px;
}

.ulinelisttab a {
    font-size: 15px;
    font-weight: 500;
    margin: 0px 5px;
    border: 0px solid #ccc;
    padding: 5px 20px;
    border-radius: 25px;
    background: #013277;
    color: #fff;
    letter-spacing: 1px;
}

.ulinelisttab.active a {
    background: #fd982a;
}

.industries-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    font-size: 2.2rem;
}

/* Circle Container Wrapper */
.circle-wrapper {
    position: relative;
    width: 500px;
    height: 390px;
    margin: 0 auto;
}

/* Dashed Circle Border */
.dashed-circle {
    position: absolute;
    top: 35px;
    left: 100px;
    width: 300px;
    height: 300px;
    border: 3px dashed #fcd9c3;
    border-radius: 50%;
    z-index: 1;
}

/* Common Industry Node Styling */
.industry-node {
    position: absolute;
    width: 160px;
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Orange Circle Icon with Gradient and Drop Shadow */
.icon-box {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #ff9e42, #ff761a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 15px rgba(255, 118, 26, 0.3);
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

/* Hover effect */
.industry-node:hover .icon-box {
    transform: scale(1.1);
}

/* SVG Sizing */
.icon-box svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

/* Label Texts */
.industry-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333333;
    line-height: 1.3;
    max-width: 140px;
}

/* Positioning of elements on the circle */

/* 1. Water & Wastewater (Top) */
.node-water {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* 2. Renewable Energy (Right-Top) */
.node-energy {
    top: 110px;
    right: 15px;
}

/* 3. Oil & Gas (Right-Bottom) */
.node-oil {
    bottom: 25px;
    right: 70px;
}

/* 4. Industrial Fabrication (Left-Bottom) */
.node-fabrication {
    bottom: 25px;
    left: 70px;
}

/* 5. Urban Infrastructure (Left-Top) */
.node-urban {
    top: 110px;
    left: 15px;
}

select.border.rounded.w-full.w-100 {
    width: 100%;
    padding: 9px .75rem !important;
    font-size: var(--paraText);
    font-weight: 400;
    line-height: 1.5;
    color: var(--textColor);
}

/* Responsive Styles for Mobile and Tablets */
/* services section start */
.service-card {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    text-decoration: none;
    color: #000000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Smooth Lift Effect on Hover */
.service-card:hover {
    transform: translateY(-5px);
    color: #000000;
}

/* White Inner circle with thin light border */
.service-card-inner {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    text-align: center;
    z-index: 2;
}

/* SVG Sizing and Styling */
.service-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
    fill: #000000;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* Text Label Styling */
.service-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: #013277;
    max-width: 205px;
}

/* --- Custom Rotating Orange Border Implementation --- */

/* Base Track (Pure CSS Semi-circle stroke effect) */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    padding: 4px;
    /* Border ki thickness */
    background: linear-gradient(0deg, transparent 92%, #ff8a1e 40%, #ff8a1e 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
    transform: rotate(65deg);
    /* Default positioned like image */
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover animation to rotate the orange arc smoothly */
.service-card:hover::before {
    transform: rotate(385deg);
    /* 360-degree rotational spin on hover */
}

.om-section {
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Outer Area Container */
.om-container {
    position: relative;
    width: 700px;
    height: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dashed Orbit Circle */
.orbit-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 3px dashed #ff761a;
    border-radius: 50%;
    z-index: 1;
    /* Rotate the entire orbit dashed line slowly */
    animation: rotateOrbit 40s linear infinite;
}


@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}







/* Center Circle with Zoom in Zoom out pulse */
.center-circle {
    position: absolute;
    width: 165px;
    height: 165px;
    background: linear-gradient(135deg, #ff9e42, #ff761a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 118, 26, 0.4);
    text-align: center;
    padding: 15px;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    animation: pulseCenter 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulseCenter {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* Cards Orbit Container Wrapper to move them in a circular path */
.cards-orbit-wrapper {
    position: absolute;
    width: 500px;
    height: 500px;
    z-index: 5;
    animation: rotateCards 35s linear infinite;
}

/* Cards style & reverse rotation so text inside card stays upright */
.om-card {
    position: absolute;
    width: 250px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    /* Keep content upright by counter-rotating */
    animation: counterRotate 35s linear infinite;
}

.om-card:hover {
    box-shadow: 0 15px 35px rgba(255, 118, 26, 0.15);
}

/* Stop animation on container hover for easy reading */
.om-container:hover .cards-orbit-wrapper,
.om-container:hover .om-card,
.om-container:hover .orbit-circle {
    animation-play-state: paused;
}

/* Positioning the 3 cards on the circular orbit path */
/* Card 1: Top Center */
.card-technician {
    top: -60px;
    left: 50%;
    margin-left: -125px;
    /* Half of width to center perfectly */
}

/* Card 2: Bottom Right */
.card-amc {
    bottom: 30px;
    right: -60px;
}

/* Card 3: Bottom Left */
.card-maintenance {
    bottom: 30px;
    left: -60px;
}

/* Main Rotation animations */
@keyframes rotateCards {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* Card Typography Styling */
.card-title {
    color: #ff761a;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.card-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    text-align: left;
}

.card-list li {
    font-size: 0.85rem;
    color: #555555;
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Bullet Points as Custom Styled Orange Dots */
.card-list li::before {
    content: "•";
    color: #333333;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 10px;
}

/* Mobile / Tablet Responsive - Stacked Grid Layout */
@media (max-width: 768px) {
    .om-container {
        width: 100%;
        height: auto;
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .orbit-circle,
    .cards-orbit-wrapper {
        display: none;
        /* Mobile par complex design dynamic circular code hide ho jata h */
    }

    .center-circle {
        position: relative;
        margin: 0 auto 20px auto;
        top: unset;
        left: unset;
        transform: none !important;
        animation: pulseCenter 4s ease-in-out infinite;
    }

    .om-card {
        position: relative !important;
        top: unset !important;
        bottom: unset !important;
        left: unset !important;
        right: unset !important;
        margin: 0 auto 10px !important;
        width: 100%;
        max-width: 100%;
        animation: none !important;
    }
}

/* services section end */
@media (max-width: 768px) {
    .circle-wrapper {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .dashed-circle {
        display: none;
        /* Hides dashed border on mobile */
    }

    .industry-node {
        position: static !important;
        transform: none !important;
        width: 45%;
        margin-bottom: 0px;
        background: #f9f9f9;
        padding: 20px;
        border: 1px solid #ddd;
    }
}

@media (max-width: 480px) {
    .industry-node {
        width: 100%;
    }
}

/* --- Tabs Styling --- */
.tabs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
    justify-content: center;
}

.custom-tab-btn {
    background-color: #ffffff;
    color: #64748b;
    border: 1px solid #cbd5e1;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-tab-btn:hover {
    border-color: #ff761a;
    color: #ff761a;
}

.custom-tab-btn.active {
    background-color: #ff761a;
    color: #ffffff;
    border-color: #ff761a;
    box-shadow: 0 4px 12px rgba(255, 118, 26, 0.25);
}

/* --- Description Panel Styling --- */
.description-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.description-pane.active {
    display: block;
}

.description-list {
    list-style: none;
    padding-left: 0;
}

.description-list li {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.description-list li::before {
    content: "•";
    color: #1e293b;
    font-weight: bold;
    font-size: 1.25rem;
    position: absolute;
    left: 0;
    top: -2px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Grid & Highlight Border Styling --- */
.image-showcase {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Main Image */
.image-showcase img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Overlay Grid defining 4 clickable/targetable zones */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    pointer-events: none;
    /* Allows click through if needed */
    z-index: 2;
}

/* The Orange Highlight Box */
.highlight-box {
    position: absolute;
    border: 4px solid #ff761a;
    border-radius: 14px;
    pointer-events: none;
    z-index: 3;
    /* Precise width & height for 1/4 of the parent container */
    width: 48%;
    height: 48%;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 0 15px rgba(255, 118, 26, 0.3);
}

/* Positioning states for the highlight box */
/* Tab 1: Top Left */
.pos-tab1 {
    top: 1%;
    left: 1%;
}

/* Tab 2: Top Right */
.pos-tab2 {
    top: 1%;
    left: 51%;
}

/* Tab 3: Bottom Left */
.pos-tab3 {
    top: 51%;
    left: 1%;
}

/* Tab 4: Bottom Right */
.pos-tab4 {
    top: 51%;
    left: 51%;
}