@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #0070C0;
    --primary-hover: #005999;
    --text-primary: #000000;
    --text-secondary: #475569;
    --text-light: #525252;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #05314E !important;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --font-primary: 'Roboto', sans-serif;
}

/* ===== GLOBAL STYLES ===== */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: #E8E8E88F;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content h1 .highlight {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-custom, .btn-secondary-custom {
    background: var(--primary-color);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 112, 192, 0.3);
    color: white;
    text-decoration: none;
}

.btn-secondary-custom:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.hero-image {
    position: relative;
    justify-content: center;
    display: flex;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20px;
    right: 0px;
    width: 200px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20px;
    left: 0px;
    width: 130px;
    animation-delay: 2s;
    background: #0E4366;
    color: white;
}

.floating-card.card-3 {
    top: 30px;
    right: 0px;
    width: 190px;
    animation-delay: 1s;
}

.floating-card.card-03 {
    bottom: -60px;
    right: -0px;
    width: 190px;
    animation-delay: 1s;
    background-color: #ffdfc9;
    width: 100%;
    max-width: 236px;
    font-size: 12px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: white;
}
.stats-section .row>div:first-child{
    border-left: none;
}
.stats-section .row>div{
    padding: 0;
    border-left: 2px solid var(--primary-color);
}

/* Remove borders on small devices */
@media (max-width: 767.98px) {
    .stats-section .row>div{
        border-left: none;
    }
}
.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
}

/* ===== PLATFORM SECTION ===== */
.platform-section {
    padding: 80px 0;
    background: #F6F6F6;

}

.platform-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.platform-section h2 .highlight {
    color: var(--primary-color);
}

.platform-section>p {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    align-items: center;
}

/* Play/Pause Button Styling */
#playPauseBtn {
    background: rgba(224, 242, 254, 0.3);
    border: 2px solid transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

#playPauseBtn:hover {
    background: rgba(8, 31, 55, 0.1);
    border-color: #081F37;
}

#playPauseBtn.playing {
    background: #081F37;
    border-color: #081F37;
}

#playPauseBtn.playing i {
    color: white;
}

#playPauseBtn i {
    font-size: 18px;
    color: #081F37;
    transition: color 0.3s ease;
}

.feature-icon {
    background: #F6F6F6;
    padding: 1.5rem 2rem;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.feature-icon:hover {
    border-radius: 50px;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon.active {
    background: var(--bg-dark);
    color: white;
    border-radius: 50px;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 112, 192, 0.3);
}

.feature-icon.active i {
    color: white;
}

.feature-icon img {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.feature-icon.active img {
    width: 32px;
    height: 32px;
    transform: scale(1.3);
    filter: brightness(0) saturate(100%) invert(100%);
    /* White for active */
}

/* ===== MODULE SECTION ===== */
.module-section {
    display: none;
    overflow: hidden;
}

.module-section>div {
    position: relative;
    padding: 80px 70px;
    border-radius: 24px;
    background: var(--bg-dark);
    color: white;
}

.module-section.active {
    display: block;
}

.module-content {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}
.module-content .btn-primary-custom{
    background: none;
    border: 1px solid white;

}
.module-section h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.module-section h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 42px;
    text-align: left;
}

.module-section p {
    font-size: 1rem;
    line-height: 24px;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.module-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.module-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Module specific floating cards */
.card-hire {
    top: 20px;
    left: 0px;
    width: 200px;
    animation-delay: 0.5s;
}

.card-profile {
    bottom: 30px;
    right: 0px;
    width: 220px;
    padding: 0;
    animation-delay: 1.5s;
}

.card-leadership {
    padding: 0;
    bottom: 0px;
    right: 0px;
    /* width: 250px; */
    animation-delay: 1s;
}
 .card-leadership-icon{
    background-color: rgba(245, 222, 179, 0);
    padding: 0;
    left: 30px;
    top: 0;
    animation-delay: 1s;
    border: none;
    box-shadow: none;
 }
 .card-leadership-icon img{
    box-shadow: none;
 }
.card-skills {
    padding: 0; 
    bottom: 20px;
    left: 0px;
    /* width: 240px; */
    animation-delay: 2s;
}
.card-skills-icon{
    padding: 0;
    right: 40px;
    top: 0;
    animation-delay: 1s;

}

.card-mobility {
    bottom: 20px;
    left: -40px;
    width: 260px;
    animation-delay: 1.5s;
}

.card-chart {
    top: 20px;
    right: 20px;
    padding: 0;
    animation-delay: 0.5s;
}

/* Hire module cards */
.hire-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hire-label {
    font-weight: 600;
    color: var(--text-primary);
}

.candidate-avatars {
    display: flex;
    gap: -5px;
}

.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -5px;
}

.avatar-1 {
    background: #f59e0b;
}

.avatar-2 {
    background: #ef4444;
}

.avatar-3 {
    background: #3b82f6;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.profile-header i {
    font-size: 1.25rem;
}

.profile-header span {
    font-weight: 600;
    font-size: 0.9rem;
}

.profile-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

/* Leadership module cards */
.leadership-trait {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.leadership-trait span {
    font-size: 0.85rem;
    font-weight: 500;
}

.trait-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.trait-buttons .btn {
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #3b82f6);
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Skills module cards */
.skill-badge {
    background: #e0f2fe;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.75rem;
}

.skill-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.skill-tag {
    font-size: 0.6rem;
    padding: 0.125rem 0.5rem;
    border-radius: 10px;
    color: white;
    font-weight: 500;
}

.skill-tag.green {
    background: #10b981;
}

.skill-tag.blue {
    background: #3b82f6;
}

.skill-tag.orange {
    background: #f59e0b;
}

.skill-insight p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.insight-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.insight-action small {
    font-size: 0.7rem;
}

/* Market factors */
.market-factors {
    display: grid;
    grid-template-columns: 150px 150px;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 20px;
}

/* Staggered effect के लिए यह add करें */
.market-factors .factor-card:nth-child(even) {
    margin-top: 2rem;
}

.market-factors .factor-card:nth-child(odd) {
    margin-bottom: 2rem;
}

.factor-card {
    /* width: 100%;
    max-width: 150px; */
    background: #FFFFFF;
    padding: 13px 1rem;
    border-radius: 6px;
    text-align: center;
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.factor-card:hover {
    transform: translateY(-5px);
}

.factor-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.factor-icon img {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.factor-card h5 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

/* Sub-modules */
.sub-modules {
    margin: 2rem 0;
}

.sub-modules h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.module-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-features li {
    display: flex;
    align-items: center;
    /* margin-bottom: 0.75rem; */
    font-size: 1rem;
    color: #e2e8f0;
}

.module-features li::before {
    content: "•";
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.25rem;
    font-weight: bold;
}

/* Workforce cards */
.floating-card.card-mobility {
    background-color: #D3E9FF;
}

.mobility-header h6 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.mobility-header p {
    font-size: 0.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.mobility-stats {

    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
}

.stat-row span {
    color: var(--text-primary);
}

.stat-row strong {
    color: var(--text-primary);
}

.pie-chart {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(#f59e0b 0deg 185deg, #3b82f6 185deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 0.7rem;
    font-weight: 600;
}

.chart-a {
    position: absolute;
    top: 20%;
    left: 20%;
    color: #f59e0b;
    text-align: center;
    line-height: 1;
}

.chart-b {
    position: absolute;
    bottom: 20%;
    right: 20%;
    color: #3b82f6;
    text-align: center;
    line-height: 1;
    font-size: 0.6rem;
}

/* ===== POWER SECTION ===== */
.power-section {
    padding: 0;
    background: #D3E9FF;
}

.power-section>div {
    padding: 0;
}

.power-section .power-content {
    padding: 80px 30px;
}

.power-section div.p-0 {
    display: flex;
    align-items: stretch;
}

/* Image styling - full height */
.power-section div.p-0 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 12px; */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.power-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.power-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.25rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.power-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ===== DIFFERENT SECTION ===== */
.different-section {
    padding: 80px 0;
    background: white;
}

.different-section h2 {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.different-section h2 .highlight {
    color: var(--primary-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #F6F6F6;
    padding: 2rem;
    border-radius: 12px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-card .icon {
    width: 60px;
    height: 60px;
    /* background: #e0f2fe; */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.feature-card .icon img {
    width: 40px;
    height: 40px;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.feature-card .learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
    justify-content: flex-end;
}

.feature-card .learn-more:hover {
    color: var(--primary-hover);
    transform: translateX(3px);
    text-decoration: none;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--bg-dark);
    color: white;
}
.cta-section-content {
    padding: 80px 15px;
}
.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.platform-preview {
    position: relative;
}

.platform-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .hero-section {
        padding: 120px 0 70px;
    }

    .stats-section,
    .platform-section,
    .module-section,
    .different-section,
    .cta-section-content {
        padding: 70px 0;
    }
    .cta-section-content{
        padding: 70px 15px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .stats-section,
    .platform-section,
    .module-section,
    .different-section,
    .cta-section-content {
        padding: 60px 0;
    }
    .cta-section-content{
        padding: 60px 15px;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

}

@media (max-width: 768px) {
    .hero-section {
        padding: 90px 0 50px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    .module-section>div {
        padding: 50px 15px;
    }
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-bottom: 0;
    }

    .floating-card {
        display: none;
    }

    .stats-section {
        padding: 50px 0;
    }

    .stats-section .row>div {
        margin-bottom: 1.5rem;
    }

    .stats-section .row>div:last-child {
        margin-bottom: 0;
    }

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

    .platform-section,
    .different-section,
    .cta-section-content {
        padding: 50px 0;
    }
    .cta-section-content{
        padding: 50px 15px;
    }
    
    .module-section {
        padding: 50px 0;
    }

    .platform-section h2,
    .power-content h2,
    .different-section h2,
    .cta-section h2,
    .module-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .market-factors .factor-card:nth-child(even),
    .market-factors .factor-card:nth-child(odd) {
        margin-top: 0;
        margin-bottom: 1rem;
        /* Mobile پر normal spacing */
    }

    .platform-section>p,
    .cta-section p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .feature-icons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .feature-icon {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .module-section p,
    .power-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 3rem;
    }

    .cta-buttons .btn-primary-custom,
    .cta-buttons .btn-secondary-custom {
        width: 100%;
        max-width: 350px;
    }

    /* Fix column spacing issues */
    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .row>* {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-content,
    .module-content,
    .power-content {
        padding-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 80px 0 40px;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .stats-section,
    .platform-section,
    .different-section,
    .cta-section-content {
        padding: 40px 0;
    }
    .cta-section-content{
        padding: 40px 15px;
    }
    .module-section,
    .power-section {
        padding: 40px 0;
    }

    .platform-section h2,
    .power-content h2,
    .different-section h2,
    .cta-section h2,
    .module-section h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .platform-section>p,
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

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

    .feature-card {
        padding: 1.25rem;
    }

    .feature-card h4 {
        font-size: 1.125rem;
        line-height: 1.3;
    }

    /* Additional spacing fixes for small screens */
    .container-xxl {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .feature-icons {
        gap: 1rem;
    }

    .cta-buttons {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .btn-primary-custom, .btn-secondary-custom{
        padding: 0.875rem 0rem;  
    }
    /* Fix for column spacing in small devices */
    .row {
        --bs-gutter-x: 1rem;
    }

    .col-lg-6,
    .col-md-6 {
        margin-bottom: 2rem;
    }

    .col-lg-6:last-child,
    .col-md-6:last-child {
        margin-bottom: 0;
    }
}

/* ===== ANIMATION UTILITIES ===== */
@media (prefers-reduced-motion: no-preference) {

    .stat-card,
    .feature-card,
    .feature-icon {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-card {
        animation: none;
    }

    * {
        transition: none !important;
        animation: none !important;
    }
}