/* Resellers Page - Modern Enhancements Matching Homepage */

/* Reseller Cards Using arv-service Style */
.arv-service {
    background: linear-gradient(135deg, rgba(25, 27, 45, 0.95) 0%, rgba(22, 24, 42, 0.95) 100%);
    border-radius: 16px;
    margin-bottom: 30px;
    color: #fff;
    overflow: hidden;
    border: 1px solid rgba(107, 2, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.arv-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 2, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.arv-service:hover::before {
    opacity: 1;
}

.arv-service:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(107, 2, 255, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(107, 2, 255, 0.2),
        0 0 60px rgba(107, 2, 255, 0.15);
}

.arv-service .arv-s-img {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(107, 2, 255, 0.1) 0%, rgba(140, 0, 255, 0.05) 100%);
}

.arv-service .arv-s-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 2, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.arv-service:hover .arv-s-img::after {
    opacity: 1;
}

.arv-service .arv-s-img img {
    width: 100%;
    max-width: 368px;
    height: auto;
    max-height: 209px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    border-radius: 12px;
    background: rgba(107, 2, 255, 0.05);
    padding: 15px;
}

.arv-service:hover .arv-s-img img {
    transform: scale(1.05);
}

.arv-service .arv-s-list {
    padding: 25px;
    flex-grow: 1;
}

.arv-service .arv-s-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.arv-service .arv-s-list ul li {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    min-height: 32px;
}

.arv-service .arv-s-list ul li i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 18px !important;
    min-width: 18px !important;
    height: 18px !important;
    font-size: 14px !important;
    flex-shrink: 0 !important;
    color: #6B02FF !important;
}

.arv-service .arv-s-list ul li span {
    flex: 1 1 auto !important;
    display: inline-block !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

.arv-service .arv-s-btn {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arv-service .arv-s-btn a {
    background: linear-gradient(135deg, #6B02FF 0%, #8c00ff 100%);
    color: white;
    padding: 14px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(107, 2, 255, 0.3);
}

.arv-service .arv-s-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(107, 2, 255, 0.5);
    background: linear-gradient(135deg, #8c00ff 0%, #6B02FF 100%);
}

.arv-service .arv-s-btn a:active {
    transform: translateY(0);
}

/* Best Seller Badge */
.arv-service.best-seller::after {
    content: 'BEST SELLER';
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #6B02FF 0%, #8c00ff 100%);
    color: white;
    padding: 8px 40px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(107, 2, 255, 0.4);
    z-index: 10;
}

/* Ensure resellers are visible */
.about .tab-content {
    padding: 0;
}

.about .tab-pane {
    display: block !important;
    opacity: 1 !important;
}

.arv-service {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6B02FF 0%, #8c00ff 100%);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(107, 2, 255, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 2, 255, 0.6);
}

.back-to-top i {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .arv-service {
        flex-direction: column;
    }
    
    .arv-service .arv-s-img {
        border-radius: 16px 16px 0 0;
    }
}

/* Section Heading */
.about h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 20px;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #6B02FF 0%, #8c00ff 100%);
    border-radius: 2px;
}

/* Ensure visibility */
#resellers .about {
    padding: 60px 0;
}

#resellers .container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Fix tab content visibility */
.tab-content {
    position: relative;
}

.tab-pane {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.tab-pane.fade {
    opacity: 1 !important;
}

.tab-pane.fade.in {
    opacity: 1 !important;
}

/* Ensure all reseller cards are visible */
#menu1 {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}


