/* ================= SMM PAGE SPECIFIC ================= */

/* Platforms Strip */
.glass-strip {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.glass-strip img {
    height: 35px;
    filter: grayscale(100%) brightness(200%);
    /* White logos */
    opacity: 0.6;
    transition: 0.3s;
}

.glass-strip img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

/* Text Padding helper */
.p-50 {
    padding: 50px;
}

/* Consultancy Grid (2 Columns) */
.consultancy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 80px;
    /* Row Gap 50, Col Gap 80 */
    margin-top: 50px;
}

.consult-card {
    text-align: center;
    padding: 30px;
    transition: 0.3s;
    border-radius: 20px;
}

.consult-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Glowing Neon Circles */
.neon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    border: 2px solid var(--primary-orange);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: var(--primary-orange);
    box-shadow: 0 0 15px rgba(255, 90, 31, 0.2), inset 0 0 15px rgba(255, 90, 31, 0.1);
    transition: 0.4s ease;
    position: relative;
}

/* Partial ring effect (aesthetic) */
.neon-circle::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #fff;
    border-left-color: #fff;
    opacity: 0.3;
    transform: rotate(45deg);
    transition: 0.4s;
}

.consult-card:hover .neon-circle {
    background: var(--primary-orange);
    color: #fff;
    box-shadow: 0 0 40px rgba(255, 90, 31, 0.6);
    transform: scale(1.1);
}

.consult-card:hover .neon-circle::after {
    transform: rotate(225deg);
    border-color: var(--primary-orange);
}

.consult-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.consult-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .consultancy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .glass-strip {
        flex-direction: column;
    }

    .p-50 {
        padding: 30px;
    }
}