.home-hero-section {
    padding: 110px 0 90px;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(8, 102, 255, 0.16), transparent 32%),
        radial-gradient(circle at bottom right, rgba(8, 102, 255, 0.10), transparent 35%),
        linear-gradient(
            135deg,
            #f4f8ff 0%,
            #eaf3ff 45%,
            #ffffff 100%
        );
    position: relative;
    overflow: hidden;
}

.home-hero-section h1 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.1;
    font-weight: 800;
    color: #07142f;
    margin: 0 auto 30px;
    max-width: 1200px;
}

.home-hero-section p {
    max-width: 820px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.7;
    color: #52677f;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 34px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.primary-btn {
    background: #0866ff;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(8, 102, 255, 0.25);
}

.primary-btn:hover {
    background: #0052d6;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(8, 102, 255, 0.35);
    color: #ffffff;
}

.secondary-btn {
    background: #ffffff;
    color: #07142f;
    border: 1px solid #dbe4f0;
}

.secondary-btn:hover {
    background: #eef6ff;
    color: #0866ff;
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .home-hero-section {
        padding: 80px 0 60px;
    }

    .home-hero-section h1 {
        font-size: 36px;
    }

    .home-hero-section p {
        font-size: 16px;
    }
}

.why-participate-section {
    padding: 85px 0;
    background: #f8fbff;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 50px;
    font-weight: 800;
    color: #07142f;
    margin: 0 0 15px;
}

.section-heading p {
    font-size: 18px;
    color: #52677f;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-participate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
	margin-left: 60px;
	margin-right: 60px;
}

.participate-card {
    background: #ffffff;
    border: 1px solid #dbe4f0;
    border-radius: 18px;
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: 0.35s ease;
}

.participate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.18);
    border-color: #93c5fd;
}

.participate-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: #eaf2ff;
    color: #0866ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
}

.participate-content h3 {
    margin: 0 0 10px;
    font-size: 32px;
    color: #07142f;
}

.participate-content p {
    margin: 0;
    font-size: 17px;
    color: #52677f;
    line-height: 1.7;
}

@media (max-width: 768px) {

    .why-participate-section {
        padding: 60px 0;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .why-participate-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .participate-card {
        padding: 24px;
    }

    .participate-content h3 {
        font-size: 24px;
    }
}

.home-showcase-section {
    padding: 85px 0;
    background: linear-gradient(180deg, #f9fbff 0%, #fffaf7 100%);
}

.home-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    margin-left: 60px;
    margin-right: 60px;
    align-items: center;
}

.showcase-content h2 {
    font-size: 42px;
    margin: 0 0 26px;
    color: #07142f;
}

.showcase-content p {
    color: #52677f;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.showcase-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 34px;
}

.showcase-content li {
    margin-bottom: 18px;
    font-size: 18px;
    color: #07142f;
}

.showcase-content li::before {
    content: "✓";
    color: #0866ff;
    margin-right: 12px;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 15px 36px;
    background: #0866ff;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}

.showcase-btn:hover {
    background: #0052d6;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(8, 102, 255, 0.35);
    color: #ffffff;
}

.timeline-box {
    padding: 42px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eef6ff, #fff7f2);
    border: 1px solid #dbe4f0;
    transition: all 0.35s ease;
}

.timeline-box:hover {
    transform: translateY(-6px);
    border-color: rgba(8, 102, 255, 0.28);
    box-shadow: 0 22px 50px rgba(8, 102, 255, 0.14);
}

.timeline-box h3 {
    font-size: 30px;
    margin: 0 0 28px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-radius: 14px;
    padding: 14px;
}

.timeline-item:hover {
    background: rgba(8, 102, 255, 0.08);
    transform: translateX(6px);
}

.timeline-number {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: #0866ff;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-number {
    background: #0866ff;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(8, 102, 255, 0.25);
}

.timeline-item h4 {
    margin: 0 0 6px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.timeline-item p {
    margin: 0;
    color: #52677f;
    transition: all 0.3s ease;
}

.timeline-item:hover h4 {
    color: #0866ff;
}

.timeline-item:hover p {
    color: #334155;
}

@media (max-width: 768px) {
    .home-showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}