/* Scoped premium dark-theme styles for Arcavio About Us Page */
.about-premium-section {
    background-color: #05070e !important;
    position: relative;
    z-index: 1;
    padding: 120px 0 80px 0;
    overflow: hidden;
}

/* Ambient background light spots */
.about-premium-section::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 45%;
    height: 55%;
    background: radial-gradient(circle, rgba(68, 97, 223, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(90px);
    animation: floatGlowOne 14s infinite alternate;
}

.about-premium-section::after {
    content: "";
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 50%;
    background: radial-gradient(circle, rgba(69, 224, 255, 0.12) 0%, transparent 75%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
    animation: floatGlowTwo 12s infinite alternate;
}

@keyframes floatGlowOne {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(30px, 20px); }
}

@keyframes floatGlowTwo {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(-30px, -20px); }
}

/* Eyebrow badge */
.premium-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #45e0ff;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}

.premium-eyebrow i {
    font-size: 8px;
}

/* Glassmorphism Feature Cards */
.premium-feature-card {
    background: rgba(13, 20, 38, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.premium-feature-card:hover {
    border-color: rgba(69, 224, 255, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(69, 224, 255, 0.04);
}

.premium-feature-card h2 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.premium-feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* Social Proof details */
.premium-social-proof {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.social-img-stack {
    display: flex;
    align-items: center;
    gap: -10px;
}

.social-img-stack img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #05070e;
    margin-left: -12px;
}

.social-img-stack img:first-child {
    margin-left: 0;
}

.social-img-stack h4 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 16px;
    font-weight: 700;
    color: #45e0ff;
    margin: 0 0 0 12px;
}

.proof-count {
    font-family: 'Outfit', sans-serif !important;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-top: 24px;
}

.proof-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
}

/* Explore CTA button */
.explore-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4461DF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    margin-top: 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.explore-cta-btn:hover {
    background: #5370f1;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(68, 97, 223, 0.3);
    color: #ffffff;
}

.explore-cta-btn i {
    transition: transform 0.3s ease;
}

.explore-cta-btn:hover i {
    transform: translateX(4px);
}

/* Skills and progress bar styling */
.premium-skills-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.premium-skill-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skill-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.skill-progress-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.skill-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4461DF 0%, #45e0ff 100%);
    border-radius: 999px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.skill-progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15));
}

/* Video badge and spinning text */
.about-video-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    margin: 0 auto;
}

.video-play-btn {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #45e0ff;
    color: #05070e;
    font-size: 18px;
    box-shadow: 0 0 20px rgba(69, 224, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: #ffffff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
    color: #05070e;
}

.spinning-text-svg {
    width: 100%;
    height: 100%;
    animation: rotateText 12s linear infinite;
}

@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spinning-text-svg path {
    fill: none;
}

.spinning-text-svg text {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    fill: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Profile Card Styling */
.premium-profile-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(13, 20, 38, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.premium-profile-card:hover {
    border-color: rgba(69, 224, 255, 0.15);
    transform: translateY(-4px);
}

.premium-profile-card img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.premium-profile-card:hover img {
    opacity: 1;
}

.profile-details-wrap {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-details-wrap h5 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: 0.05em;
}

.profile-details-wrap p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Infinite Marquee section */
.premium-marquee-section {
    background-color: #05070e !important;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 30px 0;
    overflow: hidden;
}

.marquee-group {
    display: flex;
    gap: 40px;
    animation: infiniteScroll 25s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif !important;
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
}

.marquee-item img {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

@keyframes infiniteScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Responsiveness overrides */
@media (max-width: 991px) {
    .about-left-col {
        margin-bottom: 40px;
    }
}
