* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header */
header {
    background: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: #3b6fb6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '🔒';
    font-size: 24px;
    filter: brightness(0) invert(1);
}

.logo-text h1 {
    color: #3b6fb6;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text p {
    color: #666;
    font-size: 12px;
    margin-top: -5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #3b6fb6;
}

.cta-button {
    background: #3b6fb6;
    color: white !important;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #2d5489;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a2332 0%, #2d4a73 50%, #3b6fb6 100%);
    color: white;
    padding: 100px 40px 150px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 70%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.badge::before {
    content: '🔒';
    margin-right: 8px;
}

.hero h2 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero h2 .highlight {
    color: #ff9933;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary {
    background: #ff9933;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #3b6fb6;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    gap: 30px;
    font-size: 14px;
}

.hero-features span::before {
    content: '✓';
    color: #4caf50;
    margin-right: 8px;
    font-weight: bold;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.badge-stat {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 10px 30px rgba(76,175,80,0.3);
}

.badge-stat small {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
}

.hero-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    color: #333;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-card-icon {
    width: 50px;
    height: 50px;
    background: #3b6fb6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* About Section */
.about {
    padding: 100px 40px;
    background: #f8f9fa;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: #e3f2fd;
    color: #3b6fb6;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.section-description {
    font-size: 18px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-icon.blue { background: #3b6fb6; color: white; }
.feature-icon.green { background: #4caf50; color: white; }
.feature-icon.orange { background: #ff9933; color: white; }
.feature-icon.cyan { background: #00bcd4; color: white; }

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    background: #f8f9fa;
    padding: 60px 40px;
    margin: 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    background: linear-gradient(135deg, #3b6fb6 0%, #2d9cdb 100%);
    border-radius: 20px;
    padding: 50px 40px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 100px 40px;
    background: white;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    position: relative;
}

.service-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.service-icon.blue { background: #3b6fb6; }
.service-icon.cyan { background: #00bcd4; }
.service-icon.green { background: #4caf50; }
.service-icon.orange { background: #ff9933; }
.service-icon.purple { background: #9c27b0; }
.service-icon.teal { background: #009688; }

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b6fb6;
    font-size: 14px;
    font-weight: 600;
}

.service-tag::before {
    content: '🔹';
}

/* Experience Section */
.experience {
    background: #f5f7fa;
    color: white;
    padding: 80px 40px;
}

.experience-container {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #3b6fb6 0%, #2d9cdb 100%);
    border-radius: 24px;
    padding: 60px 50px;
}

.experience-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.experience-subtitle {
    font-size: 18px;
    text-align: center;
    opacity: 0.95;
    margin-bottom: 60px;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.experience-list h4 {
    font-size: 22px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.experience-list ul {
    list-style: none;
}

.experience-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.experience-list li::before {
    content: '🌍';
    font-size: 20px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.industry-item::before {
    content: '📊';
    font-size: 20px;
}

.experience-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-white {
    background: white;
    color: #3b6fb6;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Why URSECURE Section */
.why-us {
    padding: 100px 40px;
    background: white;
}

.why-us-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.why-us-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.why-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.why-feature-icon {
    width: 30px;
    height: 30px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 5px;
}

.why-feature-icon::before {
    content: '✓';
}

.why-feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.why-feature-content p {
    color: #666;
    line-height: 1.6;
}

.why-us-link {
    color: #3b6fb6;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.why-us-link:hover {
    gap: 12px;
}

.why-us-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
    padding: 100px 40px;
    background: #f8f9fa;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-method-icon.blue { background: #3b6fb6; color: white; }
.contact-method-icon.green { background: #4caf50; color: white; }

.contact-method-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.contact-method-content a {
    color: #3b6fb6;
    text-decoration: none;
    font-weight: 500;
}

.contact-method-content p {
    color: #666;
}

.contact-offer {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-offer h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-offer ul {
    list-style: none;
}

.contact-offer li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
}

.contact-offer li::before {
    content: '✓';
    color: #4caf50;
    font-weight: bold;
    font-size: 18px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b6fb6;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    background: #3b6fb6;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #2d5489;
}

.form-note {
    text-align: center;
    color: #999;
    font-size: 13px;
    margin-top: 15px;
}

/* CTA Section */
.cta-section {
    background: #f5f7fa;
    padding: 100px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    display: none;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #3b6fb6 0%, #2d9cdb 100%);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    background: rgba(255,153,51,0.2);
    color: #ff9933;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.cta-title {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.cta-description {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 50px;
    line-height: 1.8;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.cta-stat {
    text-align: center;
}

.cta-stat-value {
    font-size: 42px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.cta-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 14px;
    opacity: 0.9;
}

.cta-features span::before {
    content: '✓';
    margin-right: 8px;
}

.cta-footer {
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 40px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: #3b6fb6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.footer-logo-text h3 {
    color: #3b6fb6;
    font-size: 28px;
    font-weight: 700;
}

.footer-logo-text p {
    color: #999;
    font-size: 12px;
}

.footer-description {
    color: #ccc;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #3b6fb6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s;
}

.social-icon:hover {
    background: #2d5489;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3b6fb6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-container,
    .about-content,
    .why-us-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero h2 {
        font-size: 36px;
    }

    .section-title,
    .why-us-content h2,
    .contact-info h2 {
        font-size: 32px;
    }
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: none;
}

.animate-on-scroll.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up {
    animation-name: fadeInUp;
}

.fade-in-left {
    animation-name: fadeInLeft;
}

.fade-in-right {
    animation-name: fadeInRight;
}

/* Parallax effects */
.parallax-element {
    transition: transform 0.3s ease-out;
}

/* Hover effects enhanced */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.stat-value {
    display: inline-block;
}

.counting {
    animation: pulse 0.5s ease-in-out;
}

/* Smooth scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9933, #3b6fb6);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* Floating animation for hero image */
.hero-image {
    animation: float 6s ease-in-out infinite;
}

/* Glowing effect on CTA buttons */
.btn-primary, .cta-button {
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before, .cta-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Typing effect */
.typing-effect {
    overflow: hidden;
    border-right: 3px solid #ff9933;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #ff9933 }
}

/* Mouse trail effect */
.mouse-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(59, 111, 182, 0.3);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease-out;
}

/* Card tilt effect */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

/* Particle background for hero */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    animation: particleFloat 15s infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Progress ring for stats */
.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle {
    transition: stroke-dashoffset 1s ease-in-out;
}
