.ci-wrapper {
    position: relative;
    width: 17%;
}

.opprtunity-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px;
    display: none;
    justify-content: center;
    align-items: flex-start;
}

body.modal-open {
    overflow: hidden;
}

.opportunity-popup{
    width: 50%;
    height: 90%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeIn 0.2s ease-in-out;
    max-width: 500px;
}

.connect-now-btn{
    color: #fff;
    background-color: var(--color-text);
    font-size: 14px;
}

:root.dark .connect-now-btn{
    color: #000;
}

.connect-now-btn:hover{
    color: #fff;
    background-color: var(--color-text);
}

.opportunities-header p{
    color: #888;
}

:root.dark .opportunity-popup{
    background: rgba(15, 15, 15, 0.95);
}

@keyframes fadeIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.opportunity-popup .header{
    padding: 16px;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid #444;
}

.opportunity-popup button{
    background: transparent;
    border: none;
    font-size: 26px;
    color: var(--color-text);
    cursor: pointer;
    transition: 0.2s;
}

.opportunity-popup button:hover{
    color: #ff4b4b;
    transform: scale(1.1);
}

.opportunity-popup .body{
    padding: 20px;
    overflow-y: auto;
}

.popup-inner { color: #fff; }
.popup-inner img { width: 100%; border-radius: 10px; }

.info-box {
    background: transparent;
    border: 1px solid #222;
    padding: 12px 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    min-height: 1rem;
}

.status-badge {
    background: rgba(255, 255, 255, 0.5);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}

.status-badge.active {
    background-color: rgba(4, 50, 21, 1);
    color: rgba(22, 159, 81, 1);

}

.partner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.partner-tag {
    padding: 4px 10px;
    font-size: 13px;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    white-space: nowrap;
}

.blue-bullets li::marker {
    color: var(--color-primary);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    border: 1px solid var(--color-text);
    border-radius: 10px !important;
    transition: all 0.25s ease;
}

.case-study-card{
    background: #f3f9ff;
}

:root.dark .case-study-card{
    background: #0b121f;        
}
.btn-back i {
    font-size: 10px;
}

.blue-bullets li::marker {
    color: var(--color-primary);
}

.benefit-card i{
    color: #22c55e;
    border-radius: 50%;
    margin-right: 8px;        
}

.cta-section-get-started {
    padding: 40px 0;
    background: transparent;
}

.cta-box {
    background: oklch(0.96 0.02 225.77);
    border: 1px solid var(--color-primary);
    border-radius: 14px;
    padding: 20px 20px;        
}
:root.dark .cta-box{
    background: #08181f;        
}

.cta-text {
    font-size: 14px;
    color: #888;
    max-width: 620px;
    margin: 0 auto;
}


.project-info-box {
    background: linear-gradient(180deg, #0b1220, #070d1a);
    border: 1px solid rgba(59,130,246,0.25);
    border-radius: 12px;
    padding: 20px 24px;
}

.status-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;                          
}

.status-icon.green{
background: rgba(34,197,94,0.15);
    color: #22c55e;
    box-shadow: 0 0 12px rgba(34,197,94,0.45);
}

.status-icon.blue {
    background: rgba(59,130,246,0.15);
    color: #3b82f6;
    box-shadow: 0 0 12px rgba(59,130,246,0.45);
}

.status-icon.purple {
    background: rgba(168,85,247,0.15);
    color: #a855f7;
    box-shadow: 0 0 12px rgba(168,85,247,0.45);
}

@media (max-width:1000px){
    .ci-wrapper {
        position: relative;
        width: 100%;
    }
}

@media (max-width:992px){

    .opprtunity-overlay{
        align-items: flex-start;
    }

    .opportunity-popup{
        width: 50%;
    }

    .opportunity-popup p, .opportunity-popup li{
        font-size: 11px;
    }

    .opportunity-popup .heading-sm{
        font-size: 11px;
    }

    .opportunity-popup .modalTitle{
        font-size: 16px;
    }

    .opportunity-popup span{
        font-size: 11px;
    }
}

@media (max-width:592px){
    .opportunity-popup{
        width: 90%;
        height: 60%;
    }

    .ci-wrapper {
        width: 100%;
    }

    .cs-wrapper {
        width: 100%;
    }
    .custom-input{
        width: 100%;
    }

    .info-box {
        background: transparent;
        border: 1px solid #222;
        padding: 4px 10px;
        border-radius: 10px;
        min-height: 5rem;
    }
}


