.page-hero {
    min-height: 30vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: var(--spacing-3xl) 0;
    margin-top: 80px;
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

[data-animate] {
    opacity: 100%;
    transform: translateY(50px);
}

/* ========================================
   STATS SECTION - UPDATED LIGHT THEME
======================================== */
.stats-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(193, 0, 1, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(0, 212, 255, 0.02) 0%, transparent 60%),
        linear-gradient(135deg, transparent 0%, rgba(193, 0, 1, 0.01) 50%, transparent 100%);
    animation: statsBgPulse 30s ease-in-out infinite;
    pointer-events: none;
}

@keyframes statsBgPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.05) rotate(1deg);
        opacity: 0.8;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    position: relative;
}

.stat-card {
    background: var(--bg-card);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 2px solid rgba(193, 0, 1, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(193, 0, 1, 0.05),
            rgba(193, 0, 1, 0.08),
            transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(45deg,
            transparent 0%,
            var(--primary-red) 25%,
            var(--accent-blue) 50%,
            var(--primary-red) 75%,
            transparent 100%);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    animation: statBorderFlow 4s linear infinite;
    transition: opacity 0.4s ease;
}

@keyframes statBorderFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(193, 0, 1, 0.3);
    box-shadow:
        0 25px 50px rgba(193, 0, 1, 0.2),
        0 0 40px rgba(193, 0, 1, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stats-section .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-lg);
    color: var(--primary-red);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.stats-section .stat-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    background: rgba(193, 0, 1, 0.08);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.stats-section .stat-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid transparent;
    border-top-color: var(--primary-red);
    border-right-color: var(--accent-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: iconRingRotate 3s linear infinite;
    transition: opacity 0.3s ease;
    z-index: -1;
}

@keyframes iconRingRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 15px rgba(193, 0, 1, 0.4));
}

.stat-card:hover .stat-icon::before {
    opacity: 1;
    width: 110px;
    height: 110px;
    background: rgba(193, 0, 1, 0.15);
}

.stat-card:hover .stat-icon::after {
    opacity: 0.8;
}

.stats-section .stat-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(193, 0, 1, 0.2));
}

.stat-card:hover .stat-icon svg {
    filter: drop-shadow(0 4px 12px rgba(193, 0, 1, 0.5));
    color: var(--primary-red);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-red);
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    margin-bottom: 0;
    position: relative;
    text-shadow: 0 2px 8px rgba(193, 0, 1, 0.2);
    transition: all 0.3s ease;
    z-index: 2;
    display: inline-block;
}

.stat-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(15px);
    opacity: 0.15;
    z-index: -1;
}

.stat-suffix {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-red);
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
    margin-left: 4px;
    position: relative;
    z-index: 2;
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-suffix {
    transform: scale(1.1);
    text-shadow:
        0 4px 15px rgba(193, 0, 1, 0.4),
        0 0 30px rgba(193, 0, 1, 0.2);
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
    margin-top: var(--spacing-sm);
}

.stat-card:hover .stat-label {
    color: var(--text-primary);
}

.stat-card.counting .stat-number {
    animation: numberPulse 0.1s ease-in-out;
}

@keyframes numberPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        max-width: 400px;
        margin: 0 auto;
    }

    .stat-card {
        padding: var(--spacing-xl);
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-suffix {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stat-card {
        padding: var(--spacing-lg);
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-suffix {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes statCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-card {
    animation: statCardFadeIn 0.8s ease forwards;
    opacity: 0;
}

.stat-card:nth-child(1):hover {
    box-shadow:
        0 25px 50px rgba(193, 0, 1, 0.2),
        0 0 40px rgba(193, 0, 1, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat-card:nth-child(2):hover {
    box-shadow:
        0 25px 50px rgba(76, 175, 80, 0.15),
        0 0 40px rgba(76, 175, 80, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat-card:nth-child(2):hover .stat-icon {
    color: #4CAF50;
}

.stat-card:nth-child(3):hover {
    box-shadow:
        0 25px 50px rgba(103, 58, 183, 0.15),
        0 0 40px rgba(103, 58, 183, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat-card:nth-child(3):hover .stat-icon {
    color: #673AB7;
}

.stat-card:nth-child(4):hover {
    box-shadow:
        0 25px 50px rgba(33, 150, 243, 0.15),
        0 0 40px rgba(33, 150, 243, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat-card:nth-child(4):hover .stat-icon {
    color: #2196F3;
}

.stat-card.loaded {
    animation: statCardLoaded 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes statCardLoaded {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   INTRODUCTION SECTION - LIGHT THEME
======================================== */
.intro-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-dark);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.intro-video .video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(193, 0, 1, 0.1);
}

.intro-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* About Dashboard Container */
.about-dashboard-container {
    width: 100%;
    background: var(--bg-card);
    border: 2px solid var(--primary-red);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(193, 0, 1, 0.15);
    position: relative;
    transition: all var(--transition-normal);
}

.about-dashboard-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(193, 0, 1, 0.25);
}

/* About Dashboard Header */
.about-dashboard-header {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-bottom: 1px solid rgba(193, 0, 1, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-dashboard-controls {
    display: flex;
    gap: var(--spacing-sm);
}

.about-control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-control-dot.red {
    background: #ff5f56;
    animation: aboutControlPulse 3s ease-in-out infinite;
}

.about-control-dot.yellow {
    background: #ffbd2e;
    animation: aboutControlPulse 3s ease-in-out infinite 1s;
}

.about-control-dot.green {
    background: #27ca3f;
    animation: aboutControlPulse 3s ease-in-out infinite 2s;
}

@keyframes aboutControlPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.about-dashboard-title {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.about-live-indicator {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.75rem;
    color: #27ca3f;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27ca3f;
    animation: aboutLivePulse 2s infinite;
    box-shadow: 0 0 10px #27ca3f;
}

@keyframes aboutLivePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 10px #27ca3f;
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
        box-shadow: 0 0 20px #27ca3f;
    }
}

/* About Dashboard Content */
.about-dashboard-content {
    padding: var(--spacing-2xl);
}

.about-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.about-metric-card {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(193, 0, 1, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.about-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(193, 0, 1, 0.05), transparent);
    transition: left var(--transition-slow);
}

.about-metric-card:hover::before {
    left: 100%;
}

.about-metric-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(193, 0, 1, 0.15);
}

.about-metric-icon {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
    filter: drop-shadow(0 2px 4px rgba(193, 0, 1, 0.2));
}

.about-metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: var(--spacing-xs);
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 2px 8px rgba(193, 0, 1, 0.2);
}

.about-metric-label {
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Animated Chart Elements */
.about-chart-bars {
    display: flex;
    align-items: end;
    gap: 3px;
    height: 30px;
    justify-content: center;
}

.about-chart-bar {
    width: 6px;
    background: var(--gradient-1);
    border-radius: 3px;
    animation: aboutBarGrow 3s ease-in-out infinite;
    box-shadow: 0 2px 6px rgba(193, 0, 1, 0.3);
}

.about-chart-bar:nth-child(1) {
    height: 60%;
    animation-delay: 0s;
}

.about-chart-bar:nth-child(2) {
    height: 80%;
    animation-delay: 0.5s;
}

.about-chart-bar:nth-child(3) {
    height: 45%;
    animation-delay: 1s;
}

.about-chart-bar:nth-child(4) {
    height: 90%;
    animation-delay: 1.5s;
}

@keyframes aboutBarGrow {

    0%,
    100% {
        transform: scaleY(0.8);
        opacity: 0.7;
        box-shadow: 0 2px 6px rgba(193, 0, 1, 0.3);
    }

    50% {
        transform: scaleY(1.2);
        opacity: 1;
        box-shadow: 0 4px 12px rgba(193, 0, 1, 0.5);
    }
}

/* About Signal Waves */
.about-signal-waves {
    display: flex;
    justify-content: center;
    align-items: end;
    height: 30px;
    gap: 2px;
}

.about-signal-wave {
    width: 4px;
    background: #27ca3f;
    border-radius: 2px;
    animation: aboutWaveAnimation 1.5s ease-in-out infinite;
    box-shadow: 0 2px 4px rgba(39, 202, 63, 0.3);
}

.about-signal-wave:nth-child(1) {
    height: 15px;
    animation-delay: 0s;
}

.about-signal-wave:nth-child(2) {
    height: 25px;
    animation-delay: 0.2s;
}

.about-signal-wave:nth-child(3) {
    height: 20px;
    animation-delay: 0.4s;
}

.about-signal-wave:nth-child(4) {
    height: 30px;
    animation-delay: 0.6s;
}

.about-signal-wave:nth-child(5) {
    height: 18px;
    animation-delay: 0.8s;
}

@keyframes aboutWaveAnimation {

    0%,
    100% {
        transform: scaleY(0.5);
        opacity: 0.6;
        box-shadow: 0 2px 4px rgba(39, 202, 63, 0.3);
    }

    50% {
        transform: scaleY(1.5);
        opacity: 1;
        box-shadow: 0 4px 10px rgba(39, 202, 63, 0.5);
    }
}

/* About Accuracy Ring */
.about-accuracy-ring {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    position: relative;
}

.about-ring-background {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(193, 0, 1, 0.15);
    border-radius: 50%;
    position: absolute;
}

.about-ring-progress {
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid var(--primary-red);
    border-right: 3px solid var(--primary-red);
    border-bottom: 3px solid var(--primary-red);
    border-radius: 50%;
    animation: aboutRingRotate 2s linear infinite;
    box-shadow: 0 2px 8px rgba(193, 0, 1, 0.3);
}

@keyframes aboutRingRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* About Data Stream */
.about-data-stream {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
}

.about-stream-line {
    height: 3px;
    background: var(--accent-blue);
    border-radius: 2px;
    animation: aboutDataFlow 2s ease-in-out infinite;
    box-shadow: 0 2px 6px rgba(0, 212, 255, 0.3);
}

.about-stream-line:nth-child(1) {
    width: 25px;
    animation-delay: 0s;
}

.about-stream-line:nth-child(2) {
    width: 35px;
    animation-delay: 0.3s;
}

.about-stream-line:nth-child(3) {
    width: 20px;
    animation-delay: 0.6s;
}

.about-stream-line:nth-child(4) {
    width: 30px;
    animation-delay: 0.9s;
}

@keyframes aboutDataFlow {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleX(0.7);
        box-shadow: 0 2px 6px rgba(0, 212, 255, 0.3);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.1);
        box-shadow: 0 4px 12px rgba(0, 212, 255, 0.5);
    }
}

/* About Channel Monitor */
.about-channel-monitor {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 2px solid rgba(193, 0, 1, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.about-channel-monitor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
    animation: aboutScanLine 3s linear infinite;
}

@keyframes aboutScanLine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.about-monitor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.about-monitor-title {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-channel-count {
    background: var(--gradient-1);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(193, 0, 1, 0.3);
}

.about-channels-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}

.about-channel-item {
    background: rgba(193, 0, 1, 0.08);
    border: 1px solid rgba(193, 0, 1, 0.2);
    border-radius: var(--radius-sm);
    padding: var(--spacing-sm);
    text-align: center;
    transition: all var(--transition-normal);
    animation: aboutChannelPulse 4s ease-in-out infinite;
    cursor: pointer;
    min-width: 2rem;
}

.about-channel-item:nth-child(odd) {
    animation-delay: 0s;
}

.about-channel-item:nth-child(even) {
    animation-delay: 2s;
}

@keyframes aboutChannelPulse {

    0%,
    100% {
        background: rgba(193, 0, 1, 0.08);
        border-color: rgba(193, 0, 1, 0.2);
        box-shadow: none;
    }

    50% {
        background: rgba(193, 0, 1, 0.15);
        border-color: rgba(193, 0, 1, 0.4);
        box-shadow: 0 2px 8px rgba(193, 0, 1, 0.15);
    }
}

.about-channel-item:hover {
    background: rgba(193, 0, 1, 0.2);
    border-color: var(--primary-red);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(193, 0, 1, 0.2);
}

.about-channel-name {
    font-size: 0.625rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-channel-status {
    font-size: 0.5rem;
    color: var(--primary-red);;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-floating-data {
    position: absolute;
    background: rgba(193, 0, 1, 0.95);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-full);
    font-size: 0.625rem;
    font-weight: 600;
    animation: aboutFloatUp 6s ease-in-out infinite;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(193, 0, 1, 0.4);
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.about-floating-data:nth-child(1) {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.about-floating-data:nth-child(2) {
    top: 60%;
    left: -15%;
    animation-delay: 2s;
}

.about-floating-data:nth-child(3) {
    bottom: 25%;
    right: -8%;
    animation-delay: 4s;
}

@keyframes aboutFloatUp {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.8;
        box-shadow: 0 4px 12px rgba(193, 0, 1, 0.4);
    }

    50% {
        transform: translateY(-20px) translateX(15px);
        opacity: 1;
        box-shadow: 0 8px 20px rgba(193, 0, 1, 0.5);
    }
}


/* ========================================
   INTRO TEXT & VISION MISSION - LIGHT THEME
======================================== */

/* Intro Text Styles */
.intro-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.intro-text p {
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    color: var(--text-secondary);
}

.intro-text h3 {
    margin: var(--spacing-xl) 0 var(--spacing-lg);
    color: var(--text-primary);
}

.expertise-list {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.expertise-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(193, 0, 1, 0.04);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-red);
    transition: all var(--transition-normal);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.expertise-list li:hover {
    background: rgba(193, 0, 1, 0.08);
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(193, 0, 1, 0.1);
}

.list-icon {
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 20px;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(193, 0, 1, 0.1);
    transition: all var(--transition-normal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(193, 0, 1, 0.15);
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--spacing-md);
    color: var(--primary-red);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(193, 0, 1, 0.2));
}

.feature-item h6 {
    color: var(--text-primary);
    font-weight: 600;
}

/* Vision Mission Section */
.vision-mission-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(193, 0, 1, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 212, 255, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(193, 0, 1, 0.01) 50%, transparent 100%);
    pointer-events: none;
}

.vm-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-3xl);
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.vm-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg,
            transparent,
            var(--primary-red) 20%,
            var(--accent-blue) 50%,
            var(--primary-red) 80%,
            transparent);
    border-radius: 2px;
    opacity: 0.3;
    animation: lineGlow 4s ease-in-out infinite;
}

@keyframes lineGlow {

    0%,
    100% {
        opacity: 0.3;
        box-shadow: 0 0 10px rgba(193, 0, 1, 0.2);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 20px rgba(193, 0, 1, 0.3);
    }
}

.vm-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.vm-item {
    flex: 1;
    padding: var(--spacing-xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(193, 0, 1, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.vm-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(45deg,
            transparent 0%,
            var(--primary-red) 25%,
            var(--accent-blue) 50%,
            var(--primary-red) 75%,
            transparent 100%);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderMove 3s linear infinite;
}

@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.vm-item::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(193, 0, 1, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
    animation: floatParticle 6s ease-in-out infinite;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.2);
    }
}

.vm-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(193, 0, 1, 0.2),
        0 0 40px rgba(193, 0, 1, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(193, 0, 1, 0.3);
}

.vm-item:hover::before {
    opacity: 1;
}

.vm-item:hover::after {
    opacity: 1;
}

.vm-item h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: var(--spacing-lg);
    position: relative;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vm-item h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vm-item:hover h2::after {
    width: 60%;
}

.vm-item p {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.vm-item:hover p {
    color: var(--text-primary);
}

.performance-metrics {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(193, 0, 1, 0.1);
    backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.performance-metrics::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at center,
            transparent 0deg,
            rgba(193, 0, 1, 0.02) 90deg,
            transparent 180deg,
            rgba(0, 212, 255, 0.015) 270deg,
            transparent 360deg);
    animation: conicRotate 20s linear infinite;
    pointer-events: none;
}

@keyframes conicRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.performance-metrics h3 {
    margin-bottom: var(--spacing-xl);
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1;
}

.performance-metrics h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.metrics-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
    flex: 1;
    justify-content: space-evenly;
}

.metric-item {
    background: var(--bg-card);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(193, 0, 1, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.metric-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(193, 0, 1, 0.05),
            transparent);
    transition: left 0.6s ease;
}

.metric-item:hover {
    transform: translateX(8px);
    border-color: rgba(193, 0, 1, 0.3);
    box-shadow:
        0 8px 25px rgba(193, 0, 1, 0.15),
        0 0 20px rgba(193, 0, 1, 0.1);
}

.metric-item:hover::before {
    left: 100%;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.metric-header span {
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.metric-item:hover .metric-header span {
    color: var(--primary-red);
}
.metric-check {
    stroke: #00c853; 
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.metric-item:hover .metric-check {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(0, 200, 83, 0.4)); 
}


.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(193, 0, 1, 0.08);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.progress-fill {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 6px;
    width: 0;
    transition: width 2.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 2px 8px rgba(193, 0, 1, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.5) 50%,
            transparent 100%);
    animation: progressShine 3s ease-in-out infinite;
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.progress-fill[data-progress="100"] {
    width: 100%;
}

@media (max-width: 968px) {
    .vm-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .vm-content::before {
        display: none;
    }
}

@media (max-width: 768px) {

    .vm-item,
    .performance-metrics {
        padding: var(--spacing-lg);
    }

    .vm-item h2 {
        font-size: 1.8rem;
    }

    .performance-metrics h3 {
        font-size: 1.5rem;
    }

    .metric-header span {
        font-size: 0.85rem;
    }

    .metric-check {
        width: 20px;
        height: 20px;
    }
}

.metric-item:nth-child(1) {
    animation-delay: 0.1s;
}

.metric-item:nth-child(2) {
    animation-delay: 0.2s;
}

.metric-item:nth-child(3) {
    animation-delay: 0.3s;
}

.metric-item:nth-child(4) {
    animation-delay: 0.4s;
}

.metric-item:nth-child(5) {
    animation-delay: 0.5s;
}

.metric-item:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.metric-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* ========================================
   PHILOSOPHY SECTION - LIGHT THEME
======================================== */
.philosophy-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(193, 0, 1, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255, 217, 0, 0.02) 0%, transparent 60%),
        conic-gradient(from 45deg at 50% 50%, transparent, rgba(193, 0, 1, 0.01), transparent);
    animation: philosophyFloat 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes philosophyFloat {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }

    33% {
        transform: rotate(2deg) scale(1.05);
        opacity: 0.8;
    }

    66% {
        transform: rotate(-2deg) scale(0.95);
        opacity: 0.9;
    }
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
    position: relative;
}

/* Hexagonal connection pattern */
.philosophy-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background:
        linear-gradient(60deg, transparent 35%, rgba(193, 0, 1, 0.05) 50%, transparent 65%),
        linear-gradient(-60deg, transparent 35%, rgba(255, 217, 0, 0.04) 50%, transparent 65%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    opacity: 0.3;
    z-index: 0;
}

.philosophy-card {
    background: var(--bg-card);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 2px solid rgba(193, 0, 1, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Honeycomb pattern overlay */
.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 217, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(193, 0, 1, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* Animated border effect */
.philosophy-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(255, 217, 0, 0.6) 25%,
            rgba(193, 0, 1, 0.8) 50%,
            rgba(255, 217, 0, 0.6) 75%,
            transparent 100%);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    animation: borderFlow 4s linear infinite;
    transition: opacity 0.4s ease;
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.philosophy-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(193, 0, 1, 0.3);
    box-shadow:
        0 25px 50px rgba(193, 0, 1, 0.2),
        0 0 40px rgba(193, 0, 1, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.philosophy-card:hover::before {
    opacity: 1;
}

.philosophy-card:hover::after {
    opacity: 1;
}

/* Philosophy Icon - Honeycomb inspired */
.philosophy-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    box-shadow:
        0 8px 25px rgba(193, 0, 1, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Hexagon overlay for bee theme */
.philosophy-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 217, 0, 0.25);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: hexagonPulse 3s ease-in-out infinite;
}

@keyframes hexagonPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.4;
    }
}

/* Rotating golden ring */
.philosophy-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 3px solid transparent;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            transparent 0deg,
            rgba(255, 217, 0, 0.8) 90deg,
            transparent 180deg,
            rgba(193, 0, 1, 0.6) 270deg,
            transparent 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: iconRotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes iconRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.philosophy-card:hover .philosophy-icon {
    transform: scale(1.1);
    box-shadow:
        0 12px 35px rgba(193, 0, 1, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.philosophy-card:hover .philosophy-icon::after {
    opacity: 1;
}

.philosophy-letter {
    color: white;
    font-size: 2.2rem;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(255, 217, 0, 0.4);
    z-index: 2;
    position: relative;
    font-family: 'Arial Black', sans-serif;
}

.philosophy-card h3 {
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease;
}

.philosophy-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 217, 0, 0.8), var(--primary-red));
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.philosophy-card:hover h3 {
    color: var(--primary-red);
}

.philosophy-card:hover h3::after {
    width: 80%;
}

/* Enhanced Philosophy List */
.philosophy-list {
    list-style: none;
    text-align: left;
    padding: 0;
}

.philosophy-list li {
    padding: var(--spacing-md) 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(193, 0, 1, 0.08);
    position: relative;
    padding-left: var(--spacing-xl);
    transition: all 0.3s ease;
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
}

/* Honeycomb bullet points */
.philosophy-list li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-red);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(193, 0, 1, 0.2);
}

.philosophy-list li::after {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 217, 0, 0.8);
    font-weight: bold;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.philosophy-list li:hover {
    color: var(--text-primary);
    padding-left: calc(var(--spacing-xl) + 8px);
    transform: translateX(5px);
}

.philosophy-list li:hover::before {
    background: rgba(255, 217, 0, 0.8);
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 3px 8px rgba(255, 217, 0, 0.4);
}

.philosophy-list li:hover::after {
    opacity: 1;
    left: -8px;
}

.philosophy-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Percentage highlights in text */
.philosophy-list li:contains("100%"),
.philosophy-list li:contains("400%"),
.philosophy-list li:contains("70%"),
.philosophy-list li:contains("60%") {
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .philosophy-grid::before {
        display: none;
    }

    .philosophy-card {
        padding: var(--spacing-xl);
    }

    .philosophy-icon {
        width: 70px;
        height: 70px;
    }

    .philosophy-letter {
        font-size: 1.8rem;
    }

    .philosophy-card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .philosophy-card {
        padding: var(--spacing-lg);
    }

    .philosophy-list li {
        padding-left: var(--spacing-lg);
        font-size: 0.9rem;
        padding-left: 22px;
    }
}

/* Staggered animations */
.philosophy-card:nth-child(1) {
    animation-delay: 0.1s;
}

.philosophy-card:nth-child(2) {
    animation-delay: 0.2s;
}

.philosophy-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Smooth entrance animation */
@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.philosophy-card {
    animation: cardSlideUp 0.8s ease forwards;
    opacity: 0;
}


/* Team Section */
.team-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(193, 0, 1, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
    animation: teamBgFloat 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes teamBgFloat {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.section-header .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Slider Container */
.team-slider-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 70px;
}

.team-slider {
    position: relative;
    overflow: hidden;
}

/* Team Slides */
.team-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.team-slide.active {
    display: block;
    opacity: 1;
    animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Team Cards Wrapper - 2 Cards Per Slide */
.team-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
}

/* Team Card */
.team-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid rgba(193, 0, 1, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg,
            transparent 0%,
            var(--primary-red) 50%,
            var(--accent-blue) 100%);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderFlow 3s linear infinite;
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(193, 0, 1, 0.3);
    box-shadow:
        0 30px 60px rgba(193, 0, 1, 0.2),
        0 0 40px rgba(193, 0, 1, 0.15);
}

.team-card:hover::before {
    opacity: 1;
}

/* Team Image */
.team-image {
    position: relative;
    overflow: hidden;
    height: 290px;
    background: linear-gradient(135deg, rgba(193, 0, 1, 0.03), rgba(0, 212, 255, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

/* Team Overlay */
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(193, 0, 1, 0.90) 0%,
            rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

/* Team Social */
.team-social {
    display: flex;
    gap: var(--spacing-md);
}

.team-social a {
    color: white;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    transform: translateY(20px) scale(0.9);
    opacity: 0;
}

.team-card:hover .team-social a {
    transform: translateY(0) scale(1);
    opacity: 1;
    transition-delay: 0.15s;
}

.team-social a:hover {
    background: white;
    color: var(--primary-red);
    transform: scale(1.2) rotate(8deg);
    border-color: white;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

.team-social svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

/* Team Info */
.team-info {
    padding: var(--spacing-xl);
}

.team-info h4 {
    color: var(--text-primary);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    transition: color 0.3s ease;
}

.team-card:hover .team-info h4 {
    color: var(--primary-red);
}

.team-role {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-lg);
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(193, 0, 1, 0.1) 0%, rgba(193, 0, 1, 0.05) 100%);
    border-radius: var(--radius-full);
    border: 1px solid rgba(193, 0, 1, 0.25);
    transition: all 0.3s ease;
}

.team-card:hover .team-role {
    background: linear-gradient(135deg, rgba(193, 0, 1, 0.18) 0%, rgba(193, 0, 1, 0.1) 100%);
    border-color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(193, 0, 1, 0.2);
}

.team-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
    transition: color 0.3s ease;
}

.team-info p:last-child {
    margin-bottom: 0;
}

.team-card:hover .team-info p {
    color: var(--text-primary);
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid rgba(193, 0, 1, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(193, 0, 1, 0.3);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-red);
    transition: stroke 0.3s ease;
}

.slider-btn:hover svg {
    stroke: white;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(193, 0, 1, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: rgba(193, 0, 1, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-red);
    width: 32px;
    border-radius: var(--radius-full);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .team-cards-wrapper {
        gap: var(--spacing-xl);
    }

    .team-image {
        height: 350px;
    }
}

@media (max-width: 968px) {
    .team-slider-container {
        padding: 0 50px;
    }

    .team-cards-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .slider-btn {
        width: 45px;
        height: 45px;
    }

    .slider-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .team-image {
        height: 350px;
    }

    .team-info {
        padding: var(--spacing-lg);
    }

    .team-info h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .team-slider-container {
        padding: 0 40px;
    }

    .team-image {
        height: 300px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn svg {
        width: 18px;
        height: 18px;
    }

    .team-info h4 {
        font-size: 1.3rem;
    }

    .team-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: var(--spacing-2xl) 0;
    }

    .team-slider-container {
        padding: 0 35px;
    }

    .team-image {
        height: 280px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 28px;
    }
}