/* ==================== BASE SECTION STYLES ==================== */
.accreditationBody {
    padding: 80px 0px;
}

.text-accent-blue {
    color: var(--accent-blue);
}

.tracking-wider {
    letter-spacing: 0.15em;
}


/* Dynamic Background Layer */
.accreditation-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: radial-gradient(circle at 0% 0%, #f8fafc 0%, #e2e8f0 100%);
    pointer-events: none;
}

.acc-bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.acc-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    mix-blend-mode: multiply;
    animation: accFloat 14s ease-in-out infinite alternate;
}

.acc-blob-yellow {
    top: -10%;
    right: 25%;
    width: 300px;
    height: 300px;
    /*background: #fef08a;*/
}

.acc-blob-blue {
    top: -5%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: #bfdbfe;
    animation-duration: 18s;
    animation-delay: 2s;
}

.acc-blob-purple {
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: #e0e7ff;
    animation-duration: 22s;
    animation-delay: 4s;
}

@keyframes accFloat {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    100% {
        transform: translate(30px, 40px) scale(1.12);
    }
}

/* Modernized Grid Container inside Swiper Slide */
.brand-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    padding: 0.5rem;
}

/* Glassmorphism Card Style */
.brand-card {
    background: var(--card-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    height: 145px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    border-color: rgba(99, 102, 241, 0.25);
    background: #ffffff;
}

.brand-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.brand-image-container img {
    max-width: 85%;
    max-height: 58px;
    object-fit: contain;
    /*filter: grayscale(100%);
    opacity: 0.65;*/
    transition: all 0.3s ease;
}

.brand-card:hover .brand-image-container img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-title {
    background: rgba(248, 250, 252, 0.6);
    border-top: 1px solid var(--card-border);
    padding: 0.7rem 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-title {
    background: #f1f5f9;
    color: var(--accent-blue);
}

/* Swiper Dots Overrides */
.brand-swiper .swiper-pagination-bullet {
    background: #cbd5e1 !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.brand-swiper .swiper-pagination-bullet-active {
    background: var(--accent-blue) !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* Premium Desktop Circular Hero Badge */
.circle-outer-badge {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px dashed rgba(148, 163, 184, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: spinBadge 90s linear infinite;
}

.circle-inner-badge {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: #ffffff;
    border: 10px solid var(--accent-blue);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    text-align: center;
    position: absolute;
    animation: uprightBadge 90s linear infinite;
}

.circle-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
    font-weight: 600;
}

.circle-title {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--accent-blue);
}

@keyframes spinBadge {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes uprightBadge {
    100% {
        transform: rotate(-360deg);
    }
}

/* --- RESPONSIVE ADAPTATIONS --- */
@media (max-width: 991px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .hero-main-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 575px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-main-title {
        font-size: 1.5rem;
    }
}