       /* --- CSS Reset & Variables --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        :root {
            --bg-dark: #0d0b07;
            --primary-yellow: #ffdf6d;
            --accent-orange: #ff7f3e;
            --text-light: #ffffff;
            --text-muted: #a3a3a3;
            --green-dot: #22c55e;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 80% 20%, rgba(255, 223, 109, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(255, 127, 62, 0.05) 0%, transparent 50%);
            background-attachment: fixed;
            background-size: cover;
            background-repeat: no-repeat;
        }

        /* --- Header / Navigation --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 6%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            background: transparent;
            position: relative;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid var(--text-light);
            padding: 5px 12px;
            border-radius: 4px;
            background: transparent;
        }

        .logo-icon {
            width: 24px;
            height: 24px;
            background: var(--primary-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-weight: bold;
            font-size: 12px;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }



        




        /* Desktop Navigation Links */
        nav ul {
            display: flex;
            gap: 24px;
            list-style: none;
            background: transparent;
        }

        nav ul li a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        nav ul li a:hover {
            color: var(--text-light);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
            background: transparent;
        }

        .icon-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-light);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 14px;
        }

        .talk-btn {
            background: var(--primary-yellow);
            color: #000;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            box-shadow: 0 0 15px rgba(255, 223, 109, 0.4);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s;
        }

        .talk-btn:hover {
            transform: scale(1.03);
        }

        .talk-btn span {
            font-weight: 400;
            font-size: 12px;
            opacity: 0.8;
            border-left: 1px solid rgba(0,0,0,0.2);
            padding-left: 8px;
        }

        /* Mobile Menu Toggle Button */
        .menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: var(--text-light);
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
        }

        /* --- Hero Main Content --- */
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 6% 20px 6%;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            align-items: center;
            gap: 40px;
            position: relative;
            background: transparent;
        }

        .hero-left {
            z-index: 2;
            background: transparent;
        }

        .online-badge {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            margin-bottom: 24px;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background-color: var(--green-dot);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--green-dot);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
        }

        .hero-left h1 {
            font-size: 54px;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 24px;
            max-width: 550px;
        }

        .hero-left h1 span {
            color: var(--accent-orange);
            background: linear-gradient(45deg, var(--accent-orange), #ffaa64);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .features {
            margin-bottom: 35px;
            background: transparent;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 15px;
            color: var(--text-muted);
            background: transparent;
        }

        .feature-item strong {
            color: var(--text-light);
        }

        .check-icon {
            color: var(--primary-yellow);
            background: rgba(255, 223, 109, 0.1);
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }

        .cta-btn {
            background: var(--primary-yellow);
            color: #000;
            border: none;
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 0 25px rgba(255, 223, 109, 0.3);
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 35px rgba(255, 223, 109, 0.5);
        }

        /* --- Hero Right (Animated Astrologer Showcase) --- */
        .hero-right {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            position: relative;
            background: transparent;
        }

        .astro-card {
            border-radius: 120px;
            overflow: hidden;
            background: #201a15;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 0.5s ease;
        }

        /* Running Float Animations */
        @keyframes bobbing-left {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        @keyframes bobbing-center {
            0%, 100% { transform: scale(1.05) translateY(0); }
            50% { transform: scale(1.05) translateY(-18px); }
        }

        @keyframes bobbing-right {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .card-side-left {
            width: 140px;
            height: 220px;
            opacity: 0.6;
            border: 1px solid rgba(255,255,255,0.1);
            animation: bobbing-left 5s ease-in-out infinite;
        }

        .card-center {
            width: 240px;
            height: 340px;
            border: 2px solid var(--primary-yellow);
            box-shadow: 0 0 30px rgba(255, 223, 109, 0.15);
            z-index: 2;
            animation: bobbing-center 6s ease-in-out infinite;
            animation-delay: 0.5s; /* Staggered effect */
        }

        .card-side-right {
            width: 140px;
            height: 220px;
            opacity: 0.6;
            border: 1px solid rgba(255,255,255,0.1);
            animation: bobbing-right 5.5s ease-in-out infinite;
            animation-delay: 1s; /* Staggered effect */
        }

        .astro-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* --- Stats Bar Section --- */
        .stats-container {
            max-width: 1400px;
            margin: 40px auto 20px auto;
            padding: 0 6% 30px 6%;
            display: flex;
            gap: 50px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            background: transparent;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            background: transparent;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-light);
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: capitalize;
        }

        .divider {
            width: 1px;
            background: rgba(255, 255, 255, 0.15);
            height: 40px;
            align-self: center;
        }

        /* --- Live Ticker --- */
        .ticker-wrap {
            width: 100%;
            background: transparent;
            padding: 15px 6%;
            overflow: hidden;
        }

        .ticker {
            display: flex;
            white-space: nowrap;
            gap: 50px;
            animation: ticker-animation 25s linear infinite;
            background: transparent;
        }

        .ticker-item {
            display: inline-flex;
            align-items: center;
            font-size: 13px;
            color: var(--text-muted);
            background: transparent;
        }

        .ticker-item strong {
            color: #fff;
            margin-right: 4px;
        }

        .ticker-item span.highlight {
            color: var(--primary-yellow);
            margin: 0 4px;
        }

        .ticker-bullet {
            width: 6px;
            height: 6px;
            background: var(--accent-orange);
            border-radius: 50%;
            margin-right: 12px;
        }

        @keyframes ticker-animation {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        /* --- Responsive Layout Rules --- */
        @media (max-width: 1024px) {
            header {
                padding: 15px 4%;
            }

            /* Responsive Navigation Drawer */
            .menu-toggle {
                display: block;
            }

            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #13100a;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                padding: 20px 0;
                display: none;
                z-index: 100;
            }

            nav.active {
                display: block;
            }

            nav ul {
                flex-direction: column;
                align-items: center;
                gap: 16px;
            }

            .nav-right {
                gap: 10px;
            }

            .talk-btn {
                padding: 8px 16px;
                font-size: 13px;
            }

            .talk-btn span {
                display: none; /* Hide helper text on mid-screens to fit space */
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 50px;
                padding-top: 40px;
            }

            .hero-left h1 {
                margin: 0 auto 24px auto;
                font-size: 42px;
            }

            .features {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .hero-right {
                margin-top: 20px;
            }

            .stats-container {
                justify-content: center;
                flex-wrap: wrap;
                gap: 30px;
            }

            .divider { 
                display: none; 
            }
        }

        @media (max-width: 580px) {
            .hero-left h1 {
                font-size: 32px;
            }

            /* Scale down visual showcase layout for small phone screens */
            .card-center {
                width: 160px;
                height: 240px;
            }
            .card-side-left, .card-side-right {
                width: 95px;
                height: 150px;
            }

            .nav-right .icon-btn:not(:last-of-type) {
                display: none; /* Keep interface minimal on narrow viewports */
            }
            
            .stat-number {
                font-size: 26px;
            }
        }











        /* --- Services Grid Section Styles --- */
.services-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 6%;
    background: transparent;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.service-card {
    background: rgba(32, 26, 21, 0.4);
    border: 1px solid rgba(255, 223, 109, 0.15);
    border-radius: 20px;
    padding: 30px 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle glowing particle dots tracking inside cards resembling your background image */
.service-card::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 6px #fff;
    opacity: 0.3;
}

.service-card:nth-child(1)::before { top: 30%; right: 20%; }
.service-card:nth-child(2)::before { bottom: 25%; left: 40%; }
.service-card:nth-child(3)::before { bottom: 20%; right: 15%; }
.service-child(4)::before { top: 40%; right: 25%; }

/* Soft gold illumination and shift on hover */
.service-card:hover {
    transform: translateY(-4px);
    background: rgba(45, 36, 28, 0.6);
    border-color: rgba(255, 223, 109, 0.4);
    box-shadow: 0 10px 30px rgba(13, 11, 7, 0.5), 
                0 0 20px rgba(255, 223, 109, 0.05);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-yellow), #eebb44);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(255, 223, 109, 0.35);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.05);
}

.service-icon {
    font-size: 24px;
    color: #0d0b07;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 300;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .services-container {
        padding: 0 4%;
        margin: 24px auto;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .service-card {
        padding: 24px 20px;
    }
    .service-icon-wrap {
        margin-bottom: 16px;
    }
}




/* --- Categories Section CSS --- */
.categories-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 6%;
    background: transparent;
}

/* Header styling */
.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.header-title-area .sub-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.header-title-area h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

.header-title-area h2 span {
    color: var(--accent-orange);
}

.view-all-btn {
    background: var(--primary-yellow);
    color: #000;
    border: none;
    padding: 12px 26px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 223, 109, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 223, 109, 0.5);
}

/* 3-Column Grid Setup */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Base Card structure with background blur gradients */
.category-card {
    background: rgba(30, 26, 22, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 170px;
    position: relative;
    cursor: pointer;
    transition: border-color 0.3s, transform 0.3s;
    overflow: hidden;
}

/* Background soft ambient glowing circles corresponding to each category theme */
.category-card::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    right: -20px;
    top: -20px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s;
}

.category-card:hover::after {
    opacity: 0.25;
}

/* Left Icon square layout styles */
.cat-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 24px;
    z-index: 2;
}

.cat-info {
    z-index: 2;
}

.category-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
}

.cat-count {
    font-size: 13px;
    color: var(--text-muted);
}

/* Custom Bottom Round Arrow layout buttons */
.cat-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.category-card:hover .cat-arrow {
    transform: translateX(3px);
}

/* --- Theme Color Variations Matching the UI Graphics --- */

/* 1. Love (Pinkish Red Accent) */
.cat-love::after { background-color: #ff4a7d; }
.cat-love .cat-icon-box { background: rgba(255, 74, 125, 0.1); color: #ff4a7d; border: 1px solid rgba(255, 74, 125, 0.2); }
.cat-love .cat-arrow { background: rgba(255, 74, 125, 0.1); color: #ff4a7d; }
.cat-love:hover { border-color: rgba(255, 74, 125, 0.3); }

/* 2. Marriage (Amber Orange Accent) */
.cat-marriage::after { background-color: #ffaa44; }
.cat-marriage .cat-icon-box { background: rgba(255, 170, 68, 0.1); color: #ffaa44; border: 1px solid rgba(255, 170, 68, 0.2); }
.cat-marriage .cat-arrow { background: rgba(255, 170, 68, 0.1); color: #ffaa44; }
.cat-marriage:hover { border-color: rgba(255, 170, 68, 0.3); }

/* 3. Career (Emerald Green Accent) */
.cat-career::after { background-color: #10b981; }
.cat-career .cat-icon-box { background: rgba(16, 185, 129, 0.1); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.2); }
.cat-career .cat-arrow { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.cat-career:hover { border-color: rgba(16, 185, 129, 0.3); }

/* 4. Women Astrologers (Purple Violet Accent) */
.cat-women::after { background-color: #8b5cf6; }
.cat-women .cat-icon-box { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; border: 1px solid rgba(139, 92, 246, 0.2); }
.cat-women .cat-arrow { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.cat-women:hover { border-color: rgba(139, 92, 246, 0.3); }

/* 5. Business & Money (Teal Cyan Accent) */
.cat-business::after { background-color: #06b6d4; }
.cat-business .cat-icon-box { background: rgba(6, 182, 212, 0.1); color: #06b6d4; border: 1px solid rgba(6, 182, 212, 0.2); }
.cat-business .cat-arrow { background: rgba(6, 182, 212, 0.1); color: #06b6d4; }
.cat-business:hover { border-color: rgba(6, 182, 212, 0.3); }

/* 6. Health & Family (Crimson Rose Accent) */
.cat-health::after { background-color: #ef4444; }
.cat-health .cat-icon-box { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); }
.cat-health .cat-arrow { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.cat-health:hover { border-color: rgba(239, 68, 68, 0.3); }


/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .header-title-area h2 {
        font-size: 34px;
    }
}

@media (max-width: 680px) {
    .categories-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .view-all-btn {
        width: 100%;
        text-align: center;
    }
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}





/* --- Carousel Section CSS --- */
.carousel-section-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 6%;
    position: relative;
    background: transparent;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
}

.carousel-title-area .carousel-sub-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 8px;
}

.carousel-title-area h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--text-light);
}

.carousel-title-area h2 span {
    color: var(--accent-orange);
}

/* Rounded Navigation Controls */
.carousel-controls {
    display: flex;
    gap: 12px;
}

.carousel-controls .ctrl-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
}

.carousel-controls .ctrl-btn:hover {
    background: var(--primary-yellow);
    color: #000;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 15px rgba(255, 223, 109, 0.3);
}

/* Slider Window viewport */
.carousel-viewport {
    overflow: hidden;
    width: 100%;
    cursor: grab;
    padding: 10px 0;
}

.carousel-viewport:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Uniform Carousel Cards */
.carousel-card {
    flex: 0 0 calc((100% - 80px) / 5); /* Shows exactly 5 cards on desktop viewports */
    background: rgba(30, 26, 22, 0.4);
    border: 1px solid rgba(255, 223, 109, 0.12);
    border-radius: 16px;
    padding: 24px 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.3s, transform 0.3s, background-color 0.3s;
}

.carousel-card:hover {
    transform: translateY(-4px);
    background: rgba(45, 36, 28, 0.55);
    border-color: rgba(255, 223, 109, 0.35);
}

/* Outline style square container for icons matching image graphics */
.srv-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 223, 109, 0.25);
    background: rgba(255, 223, 109, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.carousel-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
}

.carousel-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 20px;
}

/* Bottom Small Right Arrow Button placement */
.srv-arrow-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 223, 109, 0.1);
    color: var(--primary-yellow);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.carousel-card:hover .srv-arrow-btn {
    background: var(--primary-yellow);
    color: #000;
    transform: scale(1.05);
}

/* --- Carousel Responsiveness Breaks --- */
@media (max-width: 1200px) {
    .carousel-card {
        flex: 0 0 calc((100% - 60px) / 4); /* Displays 4 cards */
    }
}

@media (max-width: 900px) {
    .carousel-card {
        flex: 0 0 calc((100% - 40px) / 3); /* Displays 3 cards */
    }
    .carousel-title-area h2 {
        font-size: 34px;
    }
}

@media (max-width: 650px) {
    .carousel-card {
        flex: 0 0 calc((100% - 20px) / 2); /* Displays 2 cards */
    }
}

@media (max-width: 450px) {
    .carousel-card {
        flex: 0 0 85%; /* Single prominent focused presentation card */
    }
    .carousel-section-container {
        padding: 0 4%;
    }
}




/* --- Horoscope Section Styles --- */
.horoscope-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 6%;
    background: transparent;
    position: relative;
}

.horoscope-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 24px;
}

.horoscope-header h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-light);
    margin-bottom: 8px;
}

.horoscope-header h2 span {
    color: var(--accent-orange);
}

.section-desc {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 300;
}

/* Time Filter Tab Bar Styles */
.horoscope-tabs {
    background: rgba(30, 25, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px;
    border-radius: 30px;
    display: flex;
    gap: 4px;
}

.tab-pill {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-pill:hover {
    color: var(--text-light);
}

.tab-pill.active {
    background: var(--accent-orange);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 127, 62, 0.3);
}

/* Zodiac Track Container Config */
.zodiac-viewport {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox layout hide */
    padding: 10px 0;
}

.zodiac-viewport::-webkit-scrollbar {
    display: none; /* Webkit browser engines hide */
}

.zodiac-track {
    display: flex;
    gap: 16px;
    width: max-content;
}

/* Zodiac Item Cards */
.zodiac-card {
    width: 120px;
    background: rgba(30, 25, 20, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
}

.zodiac-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 223, 109, 0.2);
    background: rgba(40, 32, 25, 0.4);
}

/* Avatar Image Wrapper Frame */
.zodiac-avatar-wrap {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 223, 109, 0.4);
    padding: 4px;
    margin-bottom: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.zodiac-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.zodiac-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 2px;
}

.zodiac-card .hindi-name {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 300;
}

/* Bright Active State Highlighter Style Rule matching visual */
.zodiac-card.active {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    box-shadow: 0 0 25px rgba(255, 223, 109, 0.35);
    transform: scale(1.02);
}

.zodiac-card.active h3 {
    color: #0d0b07;
}

.zodiac-card.active .hindi-name {
    color: rgba(13, 11, 7, 0.7);
    font-weight: 400;
}

.zodiac-card.active .zodiac-avatar-wrap {
    border-color: #0d0b07;
    background: rgba(13, 11, 7, 0.05);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .horoscope-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .horoscope-tabs {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }
    .tab-pill {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .horoscope-header h2 {
        font-size: 32px;
    }
    .zodiac-card {
        width: 105px;
        padding: 16px 8px;
    }
    .zodiac-avatar-wrap {
        width: 46px;
        height: 46px;
    }
}



/* Carousel Structural Shell */
.zodiac-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

/* Floating Navigation Buttons */
.zodiac-ctrl-btn {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(30, 25, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.zodiac-ctrl-btn:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #ffffff;
}

.zodiac-ctrl-btn.prev {
    left: -20px;
}

.zodiac-ctrl-btn.next {
    right: -20px;
}

/* Hide controls on mobile devices since swipe gestures are preferred */
@media (max-width: 768px) {
    .zodiac-ctrl-btn {
        display: none;
    }
}




/* --- Astro Footer Styling --- */
.astro-footer {
    background: linear-gradient(180deg, rgba(20, 16, 12, 0.4) 0%, rgba(13, 11, 7, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 70px 0 0 0;
    margin-top: 80px;
    font-family: inherit;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--text-light, #ffffff);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
}

/* Subtle line indicator under headers */
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--accent-orange, #ff7f3e);
}

.brand-col .footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light, #ffffff);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-desc {
    color: var(--text-muted, #a09890);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    background: var(--accent-orange, #ff7f3e);
    border-color: var(--accent-orange, #ff7f3e);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted, #a09890);
    font-size: 14px;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-yellow, #ffdf6d);
    padding-left: 4px;
}

/* --- Footer Bottom Copyright & Disclaimer --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    background: rgba(10, 8, 5, 0.5);
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-muted, #a09890);
    font-size: 13px;
    font-weight: 300;
}

.disclaimer {
    font-size: 12px;
    opacity: 0.6;
    max-width: 600px;
    text-align: right;
    line-height: 1.4;
}

/* --- Mobile Responsiveness Adjustments --- */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
    .disclaimer {
        text-align: left;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .astro-footer {
        padding-top: 50px;
    }
    .footer-container {
        grid-template-columns: 1fr; /* Single stacked layout on phones */
        gap: 32px;
        padding: 0 4%;
    }
    .footer-bottom-container {
        padding: 0 4%;
        flex-direction: column;
        align-items: flex-start;
    }
}



/* --- About Us Section Styling --- */
.about-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 6%;
    font-family: inherit;
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light, #ffffff);
    margin-bottom: 20px;
}

.about-content h2 span {
    color: var(--accent-orange, #ff7f3e);
}

.about-text {
    font-size: 16px;
    color: var(--text-muted, #a09890);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 20px;
}

/* Feature Badges Layout */
.about-features {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(30, 25, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light, #ffffff);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Decorative Cosmic CSS Element */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cosmic-card-decoration {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,127,62,0.08) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mystic-center-icon {
    font-size: 64px;
    animation: floatingEffect 4s ease-in-out infinite;
}

.orbit-ring-1, .orbit-ring-2 {
    position: absolute;
    border: 1px dashed rgba(255, 223, 109, 0.15);
    border-radius: 50%;
}

.orbit-ring-1 { width: 220px; height: 220px; animation: spinClockwise 20s linear infinite; }
.orbit-ring-2 { width: 140px; height: 140px; animation: spinCounter 15s linear infinite; }

/* --- Stats Counter Bar Row --- */
.stats-row {
    background: rgba(30, 25, 20, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-yellow, #ffdf6d);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted, #a09890);
    font-weight: 300;
}

.stat-divider {
    width: 1px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
}

/* --- Animation Utilities --- */
@keyframes floatingEffect {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
@keyframes spinClockwise { 100% { transform: rotate(360deg); } }
@keyframes spinCounter { 100% { transform: rotate(-360deg); } }

/* --- Mobile Responsiveness Adjustments --- */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-visual {
        order: -1; /* Pushes layout graphic above text on tablet layouts */
    }
}

@media (max-width: 640px) {
    .about-section {
        padding: 0 4%;
        margin: 50px auto;
    }
    .about-content h2 {
        font-size: 30px;
    }
    .stats-row {
        flex-direction: column;
        gap: 24px;
        padding: 30px 20px;
    }
    .stat-divider {
        width: 60px;
        height: 1px;
    }
}


/* Right Side Planet Image */
.about-visual{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.planet-image{
    position:relative;
    width:100%;
    max-width:500px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.planet-image::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    background:radial-gradient(circle,
        rgba(255,183,77,.28) 0%,
        rgba(255,127,62,.15) 35%,
        transparent 75%);
    border-radius:50%;
    filter:blur(40px);
    z-index:0;
    animation:pulseGlow 5s ease-in-out infinite;
}

.planet-image img{
    width:100%;
    max-width:480px;
    height:auto;
    position:relative;
    z-index:2;
    animation:floatPlanet 6s ease-in-out infinite;
    filter:
        drop-shadow(0 0 25px rgba(255,183,77,.25))
        drop-shadow(0 0 50px rgba(255,127,62,.18));
}

/* Floating Animation */
@keyframes floatPlanet{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-15px);
    }
}

/* Glow Animation */
@keyframes pulseGlow{
    0%,100%{
        transform:scale(1);
        opacity:.8;
    }
    50%{
        transform:scale(1.08);
        opacity:1;
    }
}

@media(max-width:768px){
    .planet-image img{
        max-width:320px;
    }

    .planet-image::before{
        width:260px;
        height:260px;
    }
}








a{
    text-decoration: none;
    color: #fff;
}