/*
Theme Name: Premium Landing Theme
Theme URI: https://auralearning.com
Author: Aura Learning Team
Author URI: https://auralearning.com
Description: A high-performance, conversion-focused One Page Landing theme. Fully customizable via the WordPress Customizer.
Version: 1.0.0
Text Domain: premium-landing
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #7B2CBF;
    --secondary-color: #9D4EDD;
    --accent-color: #00B4D8;
    --text-color: #333333;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --body-bg: #F3F1FA;
    --gradient-main: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-btn: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    --noise-bg: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hind Siliguri', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--body-bg);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Texture & Blobs */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--noise-bg);
    z-index: -1;
    pointer-events: none;
}

.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -2;
    opacity: 0.6;
    transition: transform 0.1s linear;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: #E0AAFF;
}

.blob-2 {
    top: 40%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: #9D4EDD;
    opacity: 0.4;
}

.blob-3 {
    bottom: -10%;
    left: 20%;
    width: 700px;
    height: 700px;
    background: #C77DFF;
    opacity: 0.3;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Premium Glassmorphism Card Style */
.glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    padding: 40px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -10px rgba(31, 38, 135, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.btn-nav {
    text-decoration: none;
    color: white;
    background: var(--primary-color);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(123, 44, 191, 0.3);
}

.btn-nav:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--gradient-btn);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px -5px rgba(123, 44, 191, 0.5);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(123, 44, 191, 0.7);
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-secondary {
    display: inline-block;
    border: 2px solid white;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.glow-effect {
    animation: glow-pulse 3s infinite;
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(123, 44, 191, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(123, 44, 191, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(123, 44, 191, 0);
    }
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 0px;
    /* Reduced from 100px due to 3D card overflow considerations */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem !important;
        /* Force resize on mobile */
    }

    .blob-1,
    .blob-2,
    .blob-3 {
        opacity: 0.3;
        /* Less distracting background on mobile */
    }
}

.badge {
    background: rgba(123, 44, 191, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid rgba(123, 44, 191, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #240046;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.trust-notes {
    margin-top: 30px;
    display: flex;
    gap: 25px;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .trust-notes {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.trust-notes i {
    color: #00B4D8;
    margin-right: 5px;
}

/* 3D Tilt Card for Hero */
.hero-card-container {
    perspective: 1000px;
}

.video-placeholder {
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.15);
}

.hero-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Play Button Ripple */
.play-button {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    box-shadow: 0 10px 40px rgba(123, 44, 191, 0.3);
    cursor: pointer;
    transition: transform 0.3s;
    position: relative;
    z-index: 2;
}

.play-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    z-index: -1;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.play-button:hover {
    transform: scale(1.1) translateZ(20px);
}

/* Problem Section */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #240046;
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-btn);
    border-radius: 2px;
}

.problem {
    padding: 100px 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.struggle-card {
    text-align: center;
    padding: 50px 30px;
    border-top: 5px solid transparent;
    transition: all 0.3s;
}

.struggle-card:hover {
    border-top-color: #EF476F;
}

.icon-box {
    font-size: 3rem;
    color: #EF476F;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(239, 71, 111, 0.3));
}

.section-note {
    text-align: center;
    margin-top: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Mystery Section */
.mystery {
    padding: 80px 0;
}

.mystery-box {
    background: linear-gradient(135deg, #10002B, #3C096C);
    color: white;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.mystery-box::before {
    content: '\f059';
    /* FA Question Mark */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.03);
    transform: rotate(20deg);
}

.mystery-box .section-title {
    color: #E0AAFF;
    text-align: left;
    left: 0;
    transform: none;
    margin-bottom: 40px;
}

.mystery-box .section-title::after {
    display: none;
}

.mystery-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .mystery-list {
        grid-template-columns: 1fr;
    }
}

.mystery-list li {
    font-size: 1.1rem;
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.mystery-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.mystery-list li i {
    color: var(--accent-color);
    margin-top: 5px;
    font-size: 1.3rem;
}

/* Value Stack */
.value-stack {
    padding: 100px 0;
}

.stack-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

@media (max-width: 768px) {
    .stack-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    position: relative;
    border-top: none;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7));
}

.badge-value,
.badge-free {
    position: absolute;
    top: 20px;
    right: -10px;
    left: auto;
    transform: none;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 4px 0 0 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: -2px 3px 10px rgba(0, 0, 0, 0.1);
}

.badge-value::after,
.badge-free::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -6px;
    width: 0;
    height: 0;
    border-top: 6px solid #4a148c;
    border-right: 10px solid transparent;
}

.badge-free {
    background: #06D6A0;
    color: #fff;
}

.badge-free::after {
    border-top-color: #038d68;
}

.value-card h3 {
    margin: 30px 0 20px;
    font-size: 1.8rem;
    color: #240046;
}

.value-card ul {
    list-style: none;
    padding: 0;
}

.value-card li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #555;
    font-weight: 500;
    font-size: 1.05rem;
}

.value-card li i {
    width: 32px;
    height: 32px;
    background: rgba(123, 44, 191, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.price-tag {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.free-text {
    color: #06D6A0;
    font-size: 2rem;
    margin-left: 10px;
    font-weight: 800;
}

/* Forms & Inputs (Glassmorphism) */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(123, 44, 191, 0.2);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
}

.form-control:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.1);
    border-color: var(--primary-color);
}

.auth-card {
    max-width: 500px;
    margin: 100px auto;
    text-align: center;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

/* Contrast Table */
.contrast {
    padding: 80px 0;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .comparison-table {
        grid-template-columns: 1fr;
    }
}

.col-bad,
.col-good {
    padding: 50px;
    transition: 0.3s;
}

.col-bad {
    background: rgba(239, 71, 111, 0.05);
}

.col-good {
    background: rgba(6, 214, 160, 0.08);
}

.col-bad:hover {
    background: rgba(239, 71, 111, 0.1);
}

.col-good:hover {
    background: rgba(6, 214, 160, 0.15);
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.col-bad h3 {
    color: #EF476F;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.5rem;
}

.col-good h3 {
    color: #06D6A0;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.5rem;
}

.col-bad li i {
    color: #EF476F;
    background: rgba(239, 71, 111, 0.1);
    padding: 5px;
    border-radius: 50%;
}

.col-good li i {
    color: #06D6A0;
    background: rgba(6, 214, 160, 0.1);
    padding: 5px;
    border-radius: 50%;
}

/* Audience Section */
.audience {
    padding: 60px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media(max-width:768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Offer Section */
.offer {
    padding: 100px 0;
}

.offer-card {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    border: 2px solid rgba(0, 180, 216, 0.3);
    position: relative;
    padding: 80px 50px;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
}

@media (max-width: 768px) {
    .offer-card {
        padding: 60px 20px;
    }
}

.offer-badge {
    position: absolute;
    top: -25px;
    right: -25px;
    background: #EF476F;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transform: rotate(10deg);
    box-shadow: 0 10px 25px rgba(239, 71, 111, 0.4);
    font-size: 1.1rem;
    z-index: 10;
}

.pricing {
    margin: 40px 0;
}

.old-price {
    font-size: 1.4rem;
    text-decoration: line-through;
    color: #999;
    margin-bottom: 5px;
}

.new-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -2px;
}

@media (max-width: 768px) {
    .new-price {
        font-size: 3rem;
    }
}

.timer-box {
    margin-bottom: 50px;
    background: rgba(123, 44, 191, 0.08);
    display: inline-block;
    padding: 15px 40px;
    border-radius: 12px;
}

.countdown {
    font-size: 2.5rem;
    font-family: monospace;
    font-weight: 700;
    color: #EF476F;
    text-shadow: 0 2px 5px rgba(239, 71, 111, 0.2);
}

.btn-large {
    font-size: 1.5rem;
    padding: 25px 60px;
    width: 100%;
    max-width: 600px;
}

.guarantee-text {
    margin-top: 20px;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.payment-icons {
    margin-top: 40px;
    font-size: 2.5rem;
    color: #555;
    display: flex;
    justify-content: center;
    gap: 30px;
    opacity: 0.7;
}

/* FAQ */
.faq {
    padding: 100px 0;
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-header {
    padding: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    background: transparent;
}

.accordion-header:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.4);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: #666;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
}

.accordion-item.active .accordion-body {
    max-height: 200px;
    padding-bottom: 25px;
}

/* Footer */
.footer {
    background: #10002B;
    color: white;
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-btn);
}

/* Animation Utilities */
.fade-in,
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: 0.8s ease-out;
}

.fade-in.visible,
.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}