/* VVRC Custom Homepage Premium CSS */

/* Hero Section */
.vvrc-hero-section {
    position: relative;
    background: radial-gradient(circle at 10% 20%, #1e1b4b 0%, #0f172a 90%);
    padding: 100px 0 140px;
    overflow: hidden;
    color: #ffffff;
}

.vvrc-hero-glow-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.vvrc-hero-glow-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.vvrc-hero-content {
    position: relative;
    z-index: 2;
}

.vvrc-hero-tagline {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.05);
}

.vvrc-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    color: #ffffff !important;
}

.vvrc-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #94A3B8;
    margin-bottom: 35px;
    max-width: 580px;
}

/* Floating Card Graphics */
.vvrc-hero-graphic-container {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.vvrc-hero-main-circle {
    width: 360px;
    height: 360px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 1px dashed rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: spin-slow 20s linear infinite;
}

.vvrc-hero-inner-logo {
    width: 140px;
    height: 140px;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(124, 58, 237, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    animation: reverse-spin 20s linear infinite;
}

.vvrc-floating-badge {
    position: absolute;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    animation: float-y-homepage 6s ease-in-out infinite;
}

.vvrc-floating-badge.badge-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.vvrc-floating-badge.badge-2 {
    bottom: 15%;
    right: 5%;
    animation-delay: 1.5s;
}

.vvrc-floating-badge.badge-3 {
    top: 50%;
    right: -10%;
    animation-delay: 3s;
}

.vvrc-badge-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.vvrc-badge-text h6 {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #94A3B8;
    margin: 0;
}

.vvrc-badge-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Stats Ribbon */
.vvrc-stats-ribbon-section {
    position: relative;
    margin-top: -60px;
    z-index: 10;
    padding-bottom: 50px;
}

.vvrc-stats-ribbon-container {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.08);
}

.vvrc-stat-box {
    text-align: center;
    padding: 15px;
}

.vvrc-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.vvrc-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    margin: 0;
}

/* Bento Grid */
.vvrc-bento-section {
    padding: 80px 0;
    background: #F8FAFC;
}

.vvrc-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 25px;
}

.vvrc-bento-card {
    border-radius: 24px;
    padding: 35px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vvrc-bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
}

.vvrc-bento-card-large {
    grid-column: span 6;
}

.vvrc-bento-card-small {
    grid-column: span 4;
}

.vvrc-bento-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.vvrc-bento-details h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 12px;
}

.vvrc-bento-details p {
    font-size: 14px;
    line-height: 1.5;
    color: #64748B;
    margin-bottom: 20px;
}

.vvrc-bento-link {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

/* Success Stories Ticker */
.vvrc-ticker-section {
    background: #090D1A;
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vvrc-ticker-wrapper {
    display: flex;
    white-space: nowrap;
}

.vvrc-ticker-track {
    display: flex;
    animation: scroll-marquee 30s linear infinite;
}

.vvrc-ticker-item {
    font-family: 'Outfit', sans-serif;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vvrc-ticker-item span.highlight-tag {
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
}

/* Course Swiper Slider */
.vvrc-courses-section {
    padding: 100px 0;
    background: #ffffff;
}

.vvrc-courses-slider-container {
    position: relative;
    padding: 20px 0 60px;
}

.vvrc-course-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vvrc-course-header {
    height: 120px;
    padding: 25px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.vvrc-course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.vvrc-course-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.vvrc-course-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin: 5px 0 0 0;
    color: #ffffff;
}

.vvrc-course-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vvrc-course-instructor {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 12px;
}

.vvrc-course-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.vvrc-course-features-list li {
    font-size: 13px;
    color: #475569;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vvrc-course-features-list li i {
    font-size: 12px;
}

.vvrc-course-price-row {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vvrc-course-price {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #1E293B;
}

.vvrc-course-duration {
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
    background: #F1F5F9;
    padding: 4px 10px;
    border-radius: 50px;
}

/* Trust Section */
.vvrc-trust-section {
    padding: 80px 0;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
}

.vvrc-trust-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.vvrc-trust-logo-box {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    padding: 20px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    min-width: 180px;
    flex: 1;
}

.vvrc-trust-logo-box i {
    font-size: 28px;
    margin-bottom: 10px;
}

.vvrc-trust-logo-box h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 4px;
}

.vvrc-trust-logo-box p {
    font-size: 11px;
    color: #64748B;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Keyframes */
@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes reverse-spin {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes float-y-homepage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .vvrc-hero-title { font-size: 44px; }
    .vvrc-hero-section { padding: 60px 0 100px; }
    .vvrc-hero-graphic-container { height: 350px; margin-top: 40px; }
    .vvrc-bento-card-large { grid-column: span 12; }
    .vvrc-bento-card-small { grid-column: span 12; }
}

@media (max-width: 767px) {
    .vvrc-hero-title { font-size: 36px; }
    .vvrc-stats-ribbon-section { margin-top: -40px; }
}

/* ==========================================
   VVRC INSTRUCTORS (TEAM) SECTION OVERHAUL
   ========================================== */
.vvrc-team-section {
    position: relative;
    padding: 120px 0 100px;
    background: #F8FAFC !important;
    overflow: hidden;
}

.vvrc-team-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7C3AED;
    background: rgba(124, 58, 237, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.vvrc-team-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 0;
}

.vvrc-team-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    margin-bottom: 35px;
    position: relative;
}

.vvrc-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.25);
}

.vvrc-team-img-box {
    position: relative;
    overflow: hidden;
    background: #F1F5F9;
    aspect-ratio: 4 / 4.5;
}

.vvrc-team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.vvrc-team-card:hover .vvrc-team-img-box img {
    transform: scale(1.05);
}

.vvrc-team-dept-pill {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.vvrc-team-details {
    padding: 28px;
    text-align: center;
    border-top: 1px solid #F1F5F9;
}

.vvrc-team-name {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 4px;
}

.vvrc-team-expert-title {
    font-size: 13px;
    font-weight: 600;
    color: #7C3AED;
    margin-bottom: 6px;
}

.vvrc-team-role-sub {
    font-size: 12px;
    color: #64748B;
    margin-bottom: 20px;
}

.vvrc-team-social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    border-top: 1px solid #F1F5F9;
    padding-top: 20px;
}

.vvrc-team-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.vvrc-team-social-links a:hover {
    background: #7C3AED;
    color: #ffffff;
    border-color: #7C3AED;
    transform: translateY(-2px);
}

.vvrc-team-social-links a svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ==========================================
   VVRC LATEST BLOG SECTION OVERHAUL
   ========================================== */
.vvrc-blog-section {
    position: relative;
    padding: 120px 0;
    background: #ffffff !important;
}

.vvrc-blog-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2563EB;
    background: rgba(37, 99, 235, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.vvrc-blog-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 0;
}

.vvrc-home-blog-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vvrc-home-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.25);
}

.vvrc-home-blog-cover {
    position: relative;
    overflow: hidden;
    height: 140px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
}

.vvrc-home-blog-badge {
    align-self: flex-start;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vvrc-home-blog-readtime {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 6px;
}

.vvrc-home-blog-bg-letter {
    position: absolute;
    bottom: -15px;
    left: 15px;
    font-size: 100px;
    font-weight: 900;
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.vvrc-home-blog-body {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vvrc-home-blog-meta {
    font-size: 12px;
    color: #64748B;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vvrc-home-blog-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    color: #1E293B;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.vvrc-home-blog-card-title a {
    color: inherit;
}

.vvrc-home-blog-card-title a:hover {
    color: #2563EB;
}

.vvrc-home-blog-excerpt {
    font-size: 13px;
    line-height: 1.5;
    color: #64748B;
    margin-bottom: 24px;
    flex-grow: 1;
}

.vvrc-home-blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #F1F5F9;
    padding-top: 20px;
    margin-top: auto;
}

.vvrc-home-blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vvrc-home-blog-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.vvrc-home-blog-author-info {
    text-align: left;
}

.vvrc-home-blog-author-name {
    font-size: 12px;
    font-weight: 700;
    color: #1E293B;
    display: block;
    line-height: 1.2;
}

.vvrc-home-blog-author-role {
    font-size: 10px;
    color: #94A3B8;
}

.vvrc-home-blog-link {
    font-size: 13px;
    font-weight: 700;
    color: #2563EB;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: transform 0.3s ease;
}

.vvrc-home-blog-link:hover {
    transform: translateX(3px);
}

/* ==========================================
   VVRC CTA SECTION OVERHAUL
   ========================================== */
.vvrc-cta-section {
    position: relative;
    background: radial-gradient(circle at 80% 20%, #1e1b4b 0%, #090d1a 90%) !important;
    padding: 100px 0 110px !important;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vvrc-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, rgba(37, 99, 235, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.vvrc-cta-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #F59E0B;
    margin-bottom: 15px;
    display: block;
}

.vvrc-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 20px;
}

.vvrc-cta-title span {
    background: linear-gradient(135deg, #A78BFA 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vvrc-cta-desc {
    font-size: 16px;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 600px;
}

.vvrc-cta-btn-shimmer {
    position: relative;
    overflow: hidden;
}

.vvrc-cta-btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(30deg);
    transition: none;
    animation: vvrc-shimmer 4s infinite linear;
}

.vvrc-cta-right-box {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vvrc-cta-graphic {
    max-width: 100%;
    height: auto;
    animation: float-y-homepage 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(124, 58, 237, 0.2));
}

/* Hiring Partners Marquee styling */
.vvrc-partners-section {
    position: relative;
    z-index: 1;
}

.vvrc-marquee-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

/* Faded edges effect */
.vvrc-marquee-wrapper::before,
.vvrc-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}
.vvrc-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #F8FAFC 0%, rgba(248, 250, 252, 0) 100%);
}
.vvrc-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, #F8FAFC 0%, rgba(248, 250, 252, 0) 100%);
}

.vvrc-marquee-content {
    display: flex;
    align-items: center;
    width: max-content;
}

/* Pause scroll animation on hover for easier clickability and reading */
.vvrc-marquee-wrapper:hover .vvrc-marquee-content {
    animation-play-state: paused;
}

.left-scrolling {
    animation: marquee-left 40s linear infinite;
}

.right-scrolling {
    animation: marquee-right 40s linear infinite;
}

.vvrc-partner-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 56px;
    margin: 0 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.015);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%);
    opacity: 0.55;
}

.vvrc-partner-card:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.25);
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.vvrc-partner-card img {
    max-height: 36px;
    max-width: 110px;
    object-fit: contain;
}

/* ==========================================
   VVRC COURSE CERTIFICATE SHOWCASE SECTION
   ========================================== */
@media (min-width: 992px) {
    .vvrc-certificates-section {
        height: 220vh; /* Scroll distance */
        position: relative;
        background: #ffffff;
        border-top: 1px solid #E2E8F0;
        border-bottom: 1px solid #E2E8F0;
        overflow: visible;
        padding: 0; /* Padding is handled by sticky flex alignment */
    }

    .vvrc-cert-sticky-wrapper {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        width: 100%;
        z-index: 1;
    }

    .vvrc-cert-track-outer {
        width: 100%;
        overflow: hidden;
        padding: 40px 0;
    }

    .vvrc-cert-track {
        display: flex;
        gap: 30px;
        will-change: transform;
        width: max-content;
        transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth slide transition */
    }

    .vvrc-cert-card-wrap {
        width: 380px;
        flex-shrink: 0;
    }
}

/* Background glows */
.vvrc-cert-glow-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.vvrc-cert-glow-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.vvrc-cert-info-sticky {
    position: relative;
    z-index: 2;
}

.vvrc-cert-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    color: #0F172A;
    margin-top: 12px;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.vvrc-cert-section-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 30px;
}

.vvrc-cert-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vvrc-cert-bullets li {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1E293B;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vvrc-cert-bullets li i {
    font-size: 15px;
}

/* Progress indicator */
.vvrc-scroll-progress-wrap {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vvrc-scroll-progress-line {
    width: 80%;
    height: 6px;
    background: #F1F5F9;
    border-radius: 10px;
    overflow: hidden;
}

.vvrc-scroll-progress-line .progress-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #7C3AED 0%, #2563EB 100%);
    transition: width 0.1s ease-out;
    border-radius: 10px;
}

.progress-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mouse Scroll Animation indicator */
.vvrc-scroll-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

.vvrc-scroll-indicator .mouse {
    width: 20px;
    height: 32px;
    border: 2px solid #7C3AED;
    border-radius: 10px;
    position: relative;
}

.vvrc-scroll-indicator .mouse .wheel {
    width: 3px;
    height: 6px;
    background: #7C3AED;
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s infinite;
}

@keyframes scroll-wheel {
    0% { top: 5px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

.vvrc-scroll-indicator .indicator-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #7C3AED;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Certificate Cards */
.vvrc-cert-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.vvrc-cert-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(226, 232, 240, 0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.vvrc-cert-card:hover {
    transform: translateY(-8px) rotate(0.5deg);
    box-shadow: 0 25px 50px -12px var(--shadow-color);
    border-color: rgba(124, 58, 237, 0.15);
}

.vvrc-cert-badge {
    position: absolute;
    top: 36px;
    left: 36px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--badge-gradient);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 100px;
    z-index: 5;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.vvrc-cert-img-container {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 15px;
    aspect-ratio: 1.414 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    transition: background 0.3s ease;
}

.vvrc-cert-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vvrc-cert-card:hover .vvrc-cert-img {
    transform: scale(1.03);
}

.vvrc-cert-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 4;
}

.vvrc-cert-img-container:hover .vvrc-cert-overlay {
    opacity: 1;
}

.vvrc-cert-zoom-btn {
    background: #ffffff;
    color: #0F172A !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    transform: translateY(10px);
    text-decoration: none;
}

.vvrc-cert-img-container:hover .vvrc-cert-zoom-btn {
    transform: translateY(0);
}

.vvrc-cert-zoom-btn:hover {
    background: #7C3AED;
    color: #ffffff !important;
    transform: scale(1.05);
}

.vvrc-cert-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vvrc-cert-body h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 10px;
}

.vvrc-cert-body p {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: #64748B;
    margin-bottom: 24px;
    flex-grow: 1;
}

.vvrc-cert-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #F1F5F9;
    padding-top: 18px;
    margin-top: auto;
}

.vvrc-cert-footer .cert-status {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #10B981;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vvrc-cert-footer .cert-authority {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #64748B;
    text-transform: uppercase;
    background: #F1F5F9;
    padding: 3px 10px;
    border-radius: 6px;
}

/* ==========================================
   MOBILE & TABLET RESPONSIVE FALLBACKS
   ========================================== */
@media (max-width: 991px) {
    .vvrc-certificates-section {
        padding: 80px 0;
        background: #ffffff;
        border-top: 1px solid #E2E8F0;
        border-bottom: 1px solid #E2E8F0;
        overflow: visible;
        height: auto;
    }

    .vvrc-cert-sticky-wrapper {
        position: relative;
        height: auto;
        display: block;
        overflow: visible;
        width: 100%;
    }

    .vvrc-cert-section-title {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .vvrc-cert-bullets {
        margin-bottom: 30px;
    }

    .vvrc-cert-track-outer {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 15px 0 25px 0;
        scroll-snap-type: x mandatory;
    }

    /* Hide native scrollbar but allow scrolling */
    .vvrc-cert-track-outer::-webkit-scrollbar {
        height: 6px;
    }
    .vvrc-cert-track-outer::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 10px;
    }
    .vvrc-cert-track-outer::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 10px;
    }

    .vvrc-cert-track {
        display: flex;
        gap: 20px;
        transform: none !important; /* Disables scroll-translate on mobile */
        width: max-content;
        padding-right: 30px; /* Padding offset for last card */
    }

    .vvrc-cert-card-wrap {
        width: 320px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .vvrc-cert-card {
        margin-bottom: 0;
    }
}


