#mainSection{
	margin-top: -102px;
}
.btn-primary{
    background:linear-gradient(90deg,#6d28d9,#9333ea);
    padding:15px 30px;
    border-radius:10px;
    color:#fff;
}


.services-hero {
    text-align: center;
    background:
    radial-gradient(circle at top, rgba(111,0,255,.25), transparent 40%);
    min-height: 80vh; /* full screen height */
    padding: 100px 0 0 0;
    align-content: center;
}

.hero-content {
    max-width: 850px;
    margin: auto;
}


.hero-content p {
    max-width: 700px;
    margin: auto;
    color: #aaa;
}

.hero-btns {
    margin-top: 40px;
}

.hero-btns a {
    display: inline-block;
    padding: 14px 28px;
    margin: 0 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    border: 1px solid #8b5cf6;
}

.hero-btns a:first-child {
    background: linear-gradient(90deg,#6d28d9,#2563eb);
}

.our-services,
.why-choose,
.process-section,
.cta-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

/* SERVICES */

.our-services {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 25px;
}

.service-card {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    transition: .4s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #8b5cf6;
    box-shadow: 0 0 25px rgba(139,92,246,.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: rgba(139,92,246,.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 28px;
    color: #8b5cf6;
}

.service-card h3 {
    margin-top: 20px;
}

/* STATS */

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

.stats-box {
    background: rgba(255,255,255,.03);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    color: #8b5cf6;
}

/* PROCESS */

.process-section {
    padding: 100px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    text-align: center;
}

.circle {
    width: 90px;
    height: 90px;
    border: 2px solid #8b5cf6;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA */

.cta-section {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(90deg,#16002d,#090014);
    padding: 80px;
    border-radius: 25px;
    text-align: left;
}


.cta-box p {
    max-width: 500px;
    color: #bdbdbd;
}

.cta-box a {
    margin-top: 30px;
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(90deg,#7c3aed,#2563eb);
    border-radius: 12px;
    color: white;
    text-decoration: none;
}