/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #fff;
    padding-top: 80px;
}

.waves-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50vh; /* Half screen height */
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
}

.particle-wave-canvas {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Background Text (Hero) */
.hero-bg-text {
    top: 10%;
    right: -5%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
    color: var(--text-main);
    letter-spacing: -2px;
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 32px;
    color: var(--text-main);
    font-weight: 700;
}

.stat-item p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Platform Section Layout */
.platform-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.platform-layout .section-header {
    flex: 0 0 380px;
    margin-bottom: 0;
    text-align: left;
}

.platform-layout .section-header p {
    margin-left: 0;
    max-width: 100%;
}

.platform-layout .grid-3 {
    flex: 1;
}

@media (max-width: 1024px) {
    .platform-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .platform-layout .section-header {
        flex: none;
        width: 100%;
    }
}

/* Services Section Styles */
.services-bg-text {
    top: 30%;
    left: -5%;
}

.title-blue {
    color: var(--accent-color) !important;
}

.service-card {
    background: #f7f9fc !important;
    border: none !important;
    padding: 60px 40px !important;
    border-radius: 40px !important;
    box-shadow: none !important;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
}

.service-icon-box {
    background: transparent !important;
    border: 1.5px solid var(--accent-color) !important;
    border-radius: 20px !important;
    width: 70px !important;
    height: 70px !important;
    margin-bottom: 30px !important;
    color: var(--accent-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-box i {
    width: 32px !important;
    height: 32px !important;
}

.service-card h3 {
    font-size: 26px !important;
    margin-bottom: 16px !important;
    font-weight: 700;
}

.service-card p {
    color: #8a94a6 !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

@media (max-width: 768px) {
    .service-card {
        padding: 40px 30px !important;
    }
}
