body {
    margin: 0;
    background: #0d0d0d;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

#hero {
    width: 80vw;
    margin: auto;
    margin-top: 150px;
}

#our-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 80px 0;
    width: 80vw;
    margin: auto;
}

/* Card */
.service-card {
    background: #111;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover */
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Text */
.service-card h2 {
    margin-bottom: 10px;
}

.service-card span {
    color: #aaa;
    font-size: 0.9rem;
}

.description {
    margin-top: 15px;
    color: #ccc;
    line-height: 1.6;
}

.description ul {
    padding-left: 20px;
}

.description li {
    margin-bottom: 6px;
}

/* ✨ Animation */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(8px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Stagger */
.reveal:nth-child(1) {
    transition-delay: 0.2s;
}

.reveal:nth-child(2) {
    transition-delay: 0.4s;
}

.reveal:nth-child(3) {
    transition-delay: 0.6s;
}

/* Glow */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent);
    opacity: 0;
    transition: 0.4s;
}

.service-card:hover::before {
    opacity: 1;
    pointer-events: none;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Primary Button */
.btn.primary {
    background: #fff;
    color: #000;
    font-weight: 500;
}

.btn.primary:hover {
    background: #ddd;
    cursor: pointer;
}

/* Secondary Button */
.btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}