/* Card Design */
.ssp-container { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.ssp-title { text-align: center; color: #a9927a; font-size: 2.6rem; margin-bottom: 50px; }

.ssp-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.ssp-card {
    background: #a9927a;
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
    cursor: pointer;
}
.ssp-card:hover { transform: translateY(-5px); }

.ssp-card h2 { font-size: 18px; margin-bottom: 12px; line-height: 1.4; }
.ssp-card p { font-size: 14px; margin: 5px 0; opacity: 0.9; }

.ssp-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    border: 1px solid #fff;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
}
.ssp-btn:hover { background: #fff; color: #a9927a; }

/* Modal Design - Same as your original */
.ssp-modal {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 99999;
    padding: 20px;
    overflow-y: auto;
}
.ssp-modal-content {
    background: #fff;
    max-width: 1100px;
    margin: 40px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.ssp-modal-header {
    background: #a9927a;
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ssp-close { font-size: 32px; cursor: pointer; }

.ssp-modal-body { padding: 40px 30px; }

.projectdetails .content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
}
.sidebar {
    background: #F0F0F0;
    padding: 30px;
    border-radius: 12px;
}
.main-content { padding-left: 30px; }

.section-title { font-size:13px; font-weight:600; color:#c57a45; margin-bottom:15px; letter-spacing:1px; }
.grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:30px; }
.card-info { background:#f9fafb; padding:18px; border-radius:10px; border:1px solid #eee; }
.label { font-size:12px; color:#999; margin-bottom:5px; }
.value { font-size:15px; font-weight:600; color:#222; }
.full { grid-column: span 2; }

@media (max-width: 768px) {
    .projectdetails .content { grid-template-columns: 1fr; }
    .main-content { padding-left: 0; }
}

/* ==================== SHARE ICONS STYLING (New + Improved) ==================== */
.share {
    margin-top: 20px;
}

.share i{
font-family: "FontAwesome";
!Important;
}

.share span {
    font-size: 13px;
    color: #555;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.icons i {
    margin-right: 18px;
    font-size: 20px;
    color: #777777;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icons i:hover {
    color: #EF4135;           /* Red color on hover (jaise aapke original mein tha) */
    transform: scale(1.2);
}

/* Last icon (Heart) ke liye thoda alag */
.icons i:last-child {
    margin-right: 0;
}