/* Base Section Styles */
.st-service-premium {
    position: relative;
    background-color: #050507;
    overflow: hidden;
    padding: 100px 5%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
}

/* Glow Effects */
.st-glow { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5; z-index: 0; }
.st-glow-1 { top: -10%; left: -5%; width: 400px; height: 400px; background: #4b2382; }
.st-glow-2 { bottom: -10%; right: -5%; width: 500px; height: 500px; background: #3b1138; }

.st-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 2;
}

.st-title { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 30px; }
.st-gradient-text { background: linear-gradient(90deg, #b166ff 0%, #ff52a2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.st-feature-cards { display: flex; flex-direction: column; gap: 20px; }

/* Interactive Cards */
.st-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    transform: translateY(30px);
    opacity: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.st-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 82, 162, 0.4);
    transform: translateY(-5px) !important; /* Overrides GSAP slightly on hover */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.st-card-icon { color: #b166ff; font-size: 1.5rem; margin-right: 20px; }
.st-card-text p { margin: 0; color: #ccc; line-height: 1.5; font-size: 1rem; }
.st-card-text p strong { color: #fff; }
.st-read-more { display: block; margin-top: 10px; font-size: 0.85rem; color: #ff52a2; font-weight: 600; opacity: 0.8; transition: 0.2s; }
.st-card:hover .st-read-more { opacity: 1; transform: translateX(5px); }

/* --- MODAL STYLES (NEW) --- */
.st-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.st-modal-overlay.active { opacity: 1; visibility: visible; }

.st-modal-box {
    background: #ffffff; color: #333;
    width: 90%; max-width: 800px;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.st-modal-overlay.active .st-modal-box { transform: scale(1); }

.st-modal-close {
    position: absolute; top: 15px; right: 20px;
    font-size: 2rem; background: none; border: none;
    color: #888; cursor: pointer; transition: color 0.2s;
}
.st-modal-close:hover { color: #ff52a2; }

/* Responsive */
@media (max-width: 992px) {
    .st-service-grid { grid-template-columns: 1fr; }
    .st-title { font-size: 2.5rem; text-align: center; }
    .st-modal-box { padding: 30px 20px; }
}



