﻿/* ==================================
   🔷 ACCOUNTS SECTION (CYBER SQUARE)
   ================================== */
.Acc-section {
    width: 100%;
    text-align: center;
    padding: 50px 0;
}

.Acc-title {
    font-family: "Vazirmatn", sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 35px;
    color: #fff;
    padding: 15px 25px;
    text-shadow: 0 0 8px rgba(180, 0, 255, 0.8);
    background: rgba(40, 0, 60, 0.85);
     border-radius: 30px 30px 0px 0px;
    box-shadow: 0 0 18px rgba(160, 0, 255, 0.4);
}



.Acc-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 45px;
}

/* === SQUARE CARD === */
.Acc-item {
    width: 170px;
    height: 200px;
    background: linear-gradient(145deg, #1a1a1f, #0f0f12);
    border-radius: 14px;
    padding: 12px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .35s ease;
    border: 2px solid rgba(150, 70, 255, 0.4);
    box-shadow: 0 0 15px rgba(160,80,255,0.25);
}

/* Cyber glow corners */
.Acc-item::before,
.Acc-item::after {
    content: "";
    position: absolute;
    width: 55px;
    height: 3px;
    background: #a35bff;
    transition: .4s ease;
}

.Acc-item::before {
    top: 10px;
    right: 10px;
}

.Acc-item::after {
    bottom: 10px;
    left: 10px;
}

/* Image Box */
.Acc-icon {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 0 12px rgba(150,70,255,0.25);
    transition: .35s ease;
}

.Acc-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text */
.Acc-item span {
    display: block;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: .3s ease;
}

/* Hover Effects 🔥 */
.Acc-item:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 0 35px rgba(160,80,255,0.75);
    border-color: rgba(180,120,255,0.7);
}

.Acc-item:hover::before {
    width: 85px;
    background: #d6b3ff;
}

.Acc-item:hover::after {
    width: 85px;
    background: #d6b3ff;
}

.Acc-item:hover .Acc-icon {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(160,80,255,0.6);
}

.Acc-item:hover span {
    color: #d9c5ff;
    text-shadow: 0 0 10px rgba(150,70,255,0.9);
}

