/* HERO */
.service-hero {
    padding: 80px 20px 5px;
    background: radial-gradient(circle at top, #0b0f2a, #050816);
    text-align: center;
}
@media (max-width: 768px) {
    .service-hero {
        margin-top: 10px; /* 👈 navbar height ke equal */
        padding-top: 40px; /* 👈 reduce */
    }
}
.service-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.service-title span {
    background: linear-gradient(90deg, #f7e27a, #c7af26);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-subtitle {
    color: #aaa;
    margin-top: 10px;
}
/* SECTION BACKGROUND */
.astro-services {
    background: linear-gradient(180deg, #050816, #0b0f2a);
}

/* CARD */
.service-card {
    background: linear-gradient(135deg, #0f1530, #050816);
    border-radius: 20px;
    padding: 25px;

    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);

    position: relative;
    overflow: hidden;

    transition: 0.4s ease;
}

/* GOLD GLOW EFFECT */
.service-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(199,175,38,0.25), transparent 70%);
    top: -60px;
    right: -60px;
    filter: blur(50px);
}

/* HOVER */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(199,175,38,0.25);
}

/* TITLE */
.service-card-title {
    color: #f7e27a;
    font-size: 20px;
    margin-bottom: 10px;
}

/* TEXT */
.service-card-text {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
}

/* BUTTON */
.btn-gold {
    background: linear-gradient(90deg, #f7e27a, #c7af26);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
}

.btn-gold:hover {
    opacity: 0.9;
}
@media (max-width: 768px) {

    .service-card {
        padding: 15px;
    }
    .service-title {
    font-size: 2rem;
    }
    .service-subtitle {
    font-size: 1rem;
    }

    .service-card-title {
        font-size: 14px;
    }

    .service-card-text {
        font-size: 12px;
    }

    .btn-gold {
        font-size: 12px;
        padding: 6px 10px;
    }
}
.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}