:root {
    --bg-dark: #0A0612;
    --bg-card: #1A0F2E;
    --bg-card-hover: #2D1B4E;
    --primary-gradient-start: #9D50BB;
    --primary-gradient-mid: #6E48AA;
    --primary-gradient-end: #4A2C6B;
    --accent-gold: #F4D03F;
    --accent-pink: #E91E63;
    --text-white: #ffffff;
    --text-muted: #B8A6D9;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-heading);
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, #F4D03F 0%, #fff 40%, #B8A6D9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-muted {
    color: var(--text-muted) !important;
}

.btn-primary {
    background: linear-gradient(135deg, #9D50BB 0%, #6E48AA 50%, #E91E63 100%);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 208, 63, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(157, 80, 187, 0.6), 0 0 40px rgba(244, 208, 63, 0.3);
}

.btn-glow {
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

/* Navbar */
.navbar {
    background: rgba(10, 6, 18, 0.85);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(157, 80, 187, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    margin: 0 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-pink));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--accent-gold) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 80px;
    background: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(circle at top right, #2D1B4E 0%, transparent 50%),
        radial-gradient(circle at bottom left, #1A0F2E 0%, transparent 50%),
        linear-gradient(180deg, #0A0612 0%, #1A0F2E 100%);
    position: relative;
}

.phone-mockup-container {
    position: relative;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

.phone-mockup {
    border-radius: 2rem;
}

.floating-planet {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-gradient-start), var(--accent-pink));
    box-shadow: 0 0 30px rgba(244, 208, 63, 0.6), 0 0 60px rgba(157, 80, 187, 0.4);
}

.p-1 {
    width: 60px;
    height: 60px;
    top: -20px;
    right: -20px;
    animation: float 4s ease-in-out infinite reverse;
}

.p-2 {
    width: 40px;
    height: 40px;
    bottom: 20px;
    left: -20px;
    animation: float 5s ease-in-out infinite 1s;
}

/* Background Glows */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.3;
}

.bg-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #9D50BB, #6E48AA);
    top: -150px;
    left: -150px;
    animation: pulse-glow-bg 8s ease-in-out infinite;
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #E91E63, #F4D03F);
    bottom: -150px;
    right: -150px;
    animation: pulse-glow-bg 8s ease-in-out infinite 2s;
}

@keyframes pulse-glow-bg {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* About Section */
.text-accent {
    color: var(--accent-gold);
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(244, 208, 63, 0.3);
}

.glow-img {
    box-shadow: 0 0 40px rgba(157, 80, 187, 0.5), 0 0 80px rgba(244, 208, 63, 0.3);
    border: 2px solid rgba(244, 208, 63, 0.2);
}

/* Feature Cards */
.bg-darker {
    background-color: rgba(0, 0, 0, 0.2);
}

.feature-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(45, 27, 78, 0.5) 100%);
    border: 1px solid rgba(157, 80, 187, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(244, 208, 63, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    background: linear-gradient(135deg, var(--bg-card-hover) 0%, rgba(45, 27, 78, 0.8) 100%);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(157, 80, 187, 0.4), 0 0 30px rgba(244, 208, 63, 0.2);
    border-color: var(--accent-gold);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    padding: 5px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(244, 208, 63, 0.3);
}

/* Life Insights */
.zodiac-ring {
    width: 250px;
    height: 250px;
}

.zodiac-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px dashed rgba(244, 208, 63, 0.6);
    border-radius: 50%;
    animation: spin 20s linear infinite;
    box-shadow: 0 0 30px rgba(157, 80, 187, 0.3);
}

.zodiac-border::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-pink));
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-gold), 0 0 40px var(--accent-pink);
}

.zodiac-content {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 40px rgba(157, 80, 187, 0.5), inset 0 0 30px rgba(244, 208, 63, 0.1);
    border: 2px solid rgba(244, 208, 63, 0.3);
}

.insight-card {
    transition: all 0.4s ease;
    border: 2px solid rgba(157, 80, 187, 0.2);
}

.insight-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(10, 6, 18, 0.8), 0 0 50px rgba(244, 208, 63, 0.3);
    border-color: var(--accent-gold);
}

.insight-overlay {
    background: linear-gradient(to top, 
        rgba(10, 6, 18, 0.98) 0%, 
        rgba(26, 15, 46, 0.85) 40%, 
        rgba(45, 27, 78, 0.6) 70%, 
        transparent 100%);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Mission Section */
.bg-mission {
    background: radial-gradient(circle at center, #2D1B4E 0%, #1A0F2E 50%, #0A0612 100%);
    position: relative;
}

.bg-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 10% 20%, rgba(244, 208, 63, 0.3), transparent),
        radial-gradient(2px 2px at 90% 80%, rgba(244, 208, 63, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 30% 70%, rgba(255, 255, 255, 0.5), transparent);
    pointer-events: none;
}

/* Testimonials */
.testimonial-card {
    background: rgba(26, 15, 46, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(244, 208, 63, 0.2);
    box-shadow: 0 8px 32px rgba(10, 6, 18, 0.5), 0 0 20px rgba(157, 80, 187, 0.2);
}

.profile-placeholder {
    background: linear-gradient(135deg, #9D50BB, #F4D03F, #E91E63);
    box-shadow: 0 0 20px rgba(244, 208, 63, 0.4);
}

/* App Showcase */
.app-screen {
    transition: transform 0.3s ease;
}

.app-screen:hover {
    transform: translateY(-10px) !important;
    z-index: 2;
}

/* Blogs Section */
.blog-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(26, 15, 46, 0.8) 100%);
    border: 1px solid rgba(157, 80, 187, 0.2);
    transition: all 0.4s ease;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(157, 80, 187, 0.4), 0 0 30px rgba(244, 208, 63, 0.2);
    border-color: var(--accent-gold);
}

.blog-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--accent-gold), var(--accent-pink));
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

/* FAQ Section */
.custom-accordion .accordion-item {
    background: transparent;
}

.bg-card {
    background: var(--bg-card);
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button {
    color: var(--text-white);
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: var(--bg-card-hover);
    color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(244, 208, 63, 0.2);
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F4D03F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.custom-accordion .accordion-item:hover .bg-card {
    background: var(--bg-card-hover);
    border-color: rgba(244, 208, 63, 0.4);
}

.custom-accordion .accordion-item {
    border: 1px solid rgba(157, 80, 187, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, var(--bg-dark), #1A0F2E, #2D1B4E);
    border-top: 1px solid rgba(157, 80, 187, 0.3);
    box-shadow: 0 -4px 30px rgba(157, 80, 187, 0.2);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(157, 80, 187, 0.2);
    border: 1px solid rgba(244, 208, 63, 0.3);
    border-radius: 50%;
    color: var(--text-white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-pink));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(244, 208, 63, 0.4);
}

.form-control:focus {
    background: transparent;
    border-color: var(--accent-gold);
    color: white;
    box-shadow: 0 0 15px rgba(244, 208, 63, 0.3);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Advanced Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 3D Tilt Effect Overrides */
.js-tilt-glare {
    border-radius: inherit;
}

.js-tilt-glare-inner {
    border-radius: inherit;
}

/* Enhanced Floating Animation */
.floating-planet {
    transition: transform 0.1s ease-out;
    /* Smooth mouse follow */
}

.bg-glow {
    transition: transform 0.2s ease-out;
}

/* Pulse Animation for Buttons */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(157, 80, 187, 0.6);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(157, 80, 187, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(157, 80, 187, 0);
    }
}

.btn-glow {
    animation: pulse-glow 2s infinite;
}