:root {
    --bg-dark: #050816;
    --bg-soft: #0c1024;
    --card-bg: rgba(14, 20, 45, 0.8);
    --text-main: #f4f1ff;
    --text-soft: #b9bfd8;
    --primary: #ff4f9a;
    --secondary: #7f8cff;
    --accent: #73c8ff;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    --radius: 22px;
    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, rgba(127, 140, 255, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 79, 154, 0.16), transparent 25%),
        linear-gradient(180deg, #040611 0%, #080c1c 45%, #050816 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.section-space {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

h1, h2, h3, h4 {
    font-family: "Cormorant Garamond", serif;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    margin-bottom: 16px;
}

h3 {
    font-size: 1.7rem;
}

h4 {
    font-size: 1.45rem;
}

p {
    color: var(--text-soft);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ff7fb8);
    color: #fff;
    box-shadow: 0 12px 30px rgba(255, 79, 154, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.section-heading {
    max-width: 760px;
    text-align: center;
    margin: 0 auto 50px;
}

.section-btn-wrap {
    text-align: center;
    margin-top: 28px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 8, 22, 0.55);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgb(5 8 22 / 87%);
    border-bottom-color: var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-img,
.footer-logo {
    height: 90px;
    width: auto;
    /* filter: brightness(0) invert(1); */
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-nav a:hover {
    color: var(--primary);
}

.nav-btn {
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 79, 154, 0.4);
    background: rgba(255, 79, 154, 0.08);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s ease;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 30%, rgba(115, 200, 255, 0.15), transparent 18%),
        radial-gradient(circle at 55% 50%, rgba(255, 79, 154, 0.12), transparent 22%),
        radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: auto, auto, 28px 28px;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    padding: 90px 0 60px;
}

.hero-subtext {
    max-width: 620px;
    font-size: 1.06rem;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.astro-circle {
    width: min(480px, 88vw);
    aspect-ratio: 1 / 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateRing 20s linear infinite;
    background: none;
    border: none;
    box-shadow: none;
}

.astro-core {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: none;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.astro-symbol {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes rotateRing {
    to {
        transform: rotate(360deg);
    }
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: stretch;
}

.about-card,
.highlight-box,
.service-item,
.payment-card,
.qr-card,
.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.about-card {
    padding: 34px;
    border-radius: var(--radius);
}

.about-highlight {
    display: grid;
    gap: 18px;
}

.highlight-box {
    padding: 24px;
    border-radius: 20px;
}

.highlight-box h3 {
    margin-bottom: 8px;
}

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-item {
    padding: 28px 24px;
    border-radius: 22px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 79, 154, 0.32);
}

.service-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(255, 79, 154, 0.15), rgba(115, 200, 255, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.service-item h4 {
    margin-bottom: 10px;
}

.price {
    margin-top: 14px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.accuracy-note {
    max-width: 860px;
    margin: 42px auto 0;
    text-align: center;
    line-height: 1.8;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
}

/* Payments */
.payments-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 24px;
    align-items: stretch;
}

.payment-card,
.qr-card {
    padding: 30px;
    border-radius: 24px;
}

.payment-card h3 {
    margin-bottom: 12px;
}

.payment-info {
    margin-bottom: 22px;
}

.payment-info p {
    margin-bottom: 8px;
}

.payment-info a {
    color: var(--accent);
}

.qr-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.qr-image {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.qr-card figcaption {
    margin-top: 14px;
    color: var(--text-soft);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.contact-card {
    padding: 28px 22px;
    border-radius: 22px;
    text-align: center;
}

.contact-card h3 {
    margin-bottom: 8px;
}

.contact-card a {
    color: var(--accent);
    word-break: break-word;
}

/* Footer */
.site-footer {
    padding: 28px 0 90px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a {
    color: var(--text-soft);
}

.footer-links a:hover {
    color: var(--primary);
}
.upi-box {
    text-align: center;
    width: 100%;
}

.upi-box h3 {
    margin-bottom: 12px;
}

.upi-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    word-break: break-word;
    margin-bottom: 10px;
}

.upi-note {
    max-width: 320px;
    margin: 0 auto;
}

/* Floating WhatsApp */
.whatsapp-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.35);
    z-index: 1200;
}

.whatsapp-btn img {
    width: 30px;
    height: 30px;
}
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonial-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonial-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial-card {
    min-width: 100%;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #eae6ff;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-card h4 {
    font-size: 1.1rem;
    margin: 0;
    color: #f4d58d;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.4px;
}

.testimonial-nav {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    color: #fff;
    background: rgba(255,255,255,0.12);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-nav:hover {
    background: rgba(255,255,255,0.22);
    transform: scale(1.05);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.28);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    width: 28px;
    border-radius: 999px;
    background: #f4d58d;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .testimonial-carousel {
        gap: 10px;
    }

    .testimonial-card {
        padding: 24px 18px;
    }

    .testimonial-card p {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .testimonial-carousel {
        flex-wrap: nowrap;
    }

    .testimonial-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }

    .testimonial-nav.prev {
        left: 8px;
    }

    .testimonial-nav.next {
        right: 8px;
    }

    .testimonial-viewport {
        width: 100%;
    }

    .testimonial-card {
        padding: 28px 20px;
    }
}
/* Desktop default */
.service-grid-desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-carousel-wrap,
.services-dots {
    display: none;
}

/* Tablet + Mobile carousel */
@media (max-width: 991px) {
    .service-grid-desktop {
        display: none;
    }

    .services-carousel-wrap {
        display: flex;
        align-items: center;
        gap: 14px;
        position: relative;
        margin-top: 20px;
    }

    .services-carousel-viewport {
        width: 100%;
        overflow: hidden;
    }

    .services-carousel-track {
        display: flex;
        transition: transform 0.45s ease;
        will-change: transform;
    }

    .services-slide {
        min-width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .services-nav {
        width: 42px;
        height: 42px;
        border: none;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .services-nav:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .services-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 18px;
    }

    .services-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.28);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .services-dot.active {
        width: 28px;
        border-radius: 999px;
        background: var(--accent);
    }
}

/* Mobile: 1 service card at a time */
@media (max-width: 640px) {
    .services-carousel-wrap {
        gap: 10px;
    }

    .services-slide {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .services-nav {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .services-slide .service-item {
        padding: 20px 16px;
    }

    .services-slide .service-item h4 {
        font-size: 1.1rem;
    }

    .services-slide .service-item p {
        font-size: 0.92rem;
    }

    .services-slide .price {
        font-size: 1rem;
    }
}
.payments-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 24px;
    align-items: stretch;
}

.payment-card,
.qr-card {
    padding: 30px;
    border-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.payment-card .btn {
    margin-top: auto;
}

.qr-card {
    justify-content: center;
}

.upi-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.bank-details-box {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-info p {
    margin-bottom: 10px;
    line-height: 1.7;
}
/* Responsive */
@media (max-width: 1100px) {
    .hero-grid,
    .about-grid,
    .payments-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-visual {
        order: -1;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-space {
        padding: 80px 0;
    }

    .header-inner {
        min-height: 74px;
    }

    .menu-toggle {
        display: block;
        z-index: 1201;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 20px;
        background: rgba(7, 12, 28, 0.97);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .site-nav.active {
        display: flex;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 14px;
    }

    .hero-grid {
        padding-top: 56px;
    }

    .service-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .about-card,
    .highlight-box,
    .service-item,
    .payment-card,
    .qr-card,
    .contact-card,
    .accuracy-note {
        padding: 22px;
    }

    .logo-img,
    .footer-logo {
        height: 88px;
        filter: brightness(0) invert(1);
    }

    .whatsapp-btn {
        width: 54px;
        height: 54px;
    }
}