/* HERO */
.about-hero {
    padding: 80px 20px 20px;
    background: radial-gradient(circle at top, #0b0f2a, #050816);
    text-align: center;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.about-title span {
    background: linear-gradient(90deg, #f7e27a, #c7af26);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-subtitle {
    color: #aaa;
    margin-top: 10px;
}

/* MAIN BOX */
.about-content-box {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,215,0,0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.about-content-box h2 {
    color: #fff;
    margin-bottom: 15px;
}

.about-content-box p {
    color: #ccc;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.about-features li {
    margin-bottom: 8px;
    color: #f7e27a;
}

/* IMAGE */
.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    border-radius: 20px;
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(45deg, #c7af26, transparent);
    filter: blur(25px);
    opacity: 0.5;
    border-radius: 25px;
}

/* MISSION */
.about-mission {
    background: linear-gradient(180deg, #0b0b1a, #111133);
}

.mission-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(199,175,38,0.2);
}

.mission-card h3 {
    color: #f7e27a;
}

.mission-card p {
    color: #ccc;
}


.section-title {
    color: #fff;
}

.section-subtitle {
    color: #aaa;
}

.why-card,
.process-card,
.service-card,
.about-services-mini,
.mission-card {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.why-card:hover,
.process-card:hover,
.service-card:hover,
.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(199,175,38,0.2);
}

.process-card h3 {
    font-size: 40px;
    color: #f7e27a;
}

.about-cta {
    background: linear-gradient(135deg, #0b0b1a, #1a1a2e);
}
/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {

    /* HERO FIX */
    .about-hero {
        padding: 50px 15px 5px;
    }

    .about-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .about-subtitle {
        font-size: 10px;
    }

    /* ABOUT SECTION STACK */
    .about-main .row {
        flex-direction: column-reverse; /* image niche aayegi */
        text-align: center;
    }

    .about-content-box {
        padding: 20px;
    }

    .about-content-box h2 {
        font-size: 22px;
    }

    .about-features li {
        font-size: 14px;
    }

    /* IMAGE */
    .about-image-wrap {
        margin-bottom: 20px;
    }

    /* GRID → 1 COLUMN */
    .about-why .col-md-3,
    .astro-process .col-md-3,
    .about-services-mini .col-md-3,
    .astro-services .col-md-4,
    .about-mission .col-md-4 {
        width: 100%;
        margin-bottom: 15px;
    }

    /* CARDS */
    .why-card,
    .process-card,
    .about-services-mini,
    .service-card,
    .mission-card {
        padding: 18px;
    }

    /* PROCESS NUMBER */
    .process-card h3 {
        font-size: 28px;
    }

    /* SECTION TITLES */
    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    /* CTA */
    .about-cta h2 {
        font-size: 20px;
    }

    .about-cta p {
        font-size: 13px;
    }

    /* BUTTON */
    .btn-gold {
        padding: 10px 20px;
        font-size: 14px;
    }
}
.panchang-card {
    background: linear-gradient(135deg, #0f1530, #050816);
    border-radius: 20px;
    padding: 25px;

    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);

    position: relative;
    overflow: hidden;

    transition: 0.4s ease;
}

/* glow effect */
.panchang-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 */
.panchang-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(199,175,38,0.25);
}

/* header */
.panchang-header {
    font-size: 16px;
    font-weight: 600;
    color: #f7e27a;
    text-align: center;
    margin-bottom: 8px;
}

/* date */
.panchang-date {
    text-align: center;
    font-size: 13px;
    color: #ccc;
    margin-bottom: 15px;
}

/* grid */
.panchang-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* item */
.panchang-item {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 10px;
    text-align: center;

    border: 1px solid rgba(255,255,255,0.08);
}

/* label */
.panchang-item span {
    display: block;
    font-size: 11px;
    color: #aaa;
}

/* value */
.panchang-item strong {
    font-size: 13px;
    color: #fff;
}