
/* ============================================ */
/* ============================================ */
/* ROOT VARIABLES - COLOR THEME */
/* ============================================ */
:root {
    --primary-color: #6e48aa;
    --secondary-color: #9d50bb;
    --dark-bg: #0a0a1a;
    --neon-blue: #00d4ff;
    --purple-glow: #9d50bb;
    --gold: #f39c12;
    --white: #ffffff;
    --success: #2ecc71;
    --warning: #f39c12;
    --light: #f5f0f8;
    --dark: #2c3e50;
    --gradient-primary: linear-gradient(135deg, #6e48aa, #9d50bb);
    --gradient-gold: linear-gradient(135deg, #f39c12, #e74c3c);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --bg-light: #f8f6fa;
    --bg-cream: #fdfcfb;
    --bg-white-smoke: #f5f0f8;
}

/* ============================================ */
/* RESET & BASE - UPDATED BACKGROUND */
/* ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.7;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--dark);
}

ul {
    list-style: none;
}

/* ============================================ */
/* GLASSMORPHISM UTILITY */
/* ============================================ */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

/* ============================================ */
/* PRELOADER */
/* ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.8s, visibility 0.8s;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 4px solid transparent;
    border-radius: 50%;
    animation: loader-ring 1.5s linear infinite;
}

.loader-ring:nth-child(1) {
    border-top-color: var(--primary-color);
}

.loader-ring:nth-child(2) {
    width: 80px;
    height: 80px;
    border-top-color: var(--neon-blue);
    animation-duration: 1.8s;
}

.loader-ring:nth-child(3) {
    width: 60px;
    height: 60px;
    border-top-color: var(--gold);
    animation-duration: 2.1s;
}

.loader-ring:nth-child(4) {
    width: 40px;
    height: 40px;
    border-top-color: var(--secondary-color);
    animation-duration: 2.4s;
}

.loader-text {
    font-size: 18px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

@keyframes loader-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================ */
/* CONTAINER */
/* ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================ */
/* SECTION HEADER */
/* ============================================ */
.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.center .section-tag::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-title .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    font-size: 18px;
    color: rgba(44, 62, 80, 0.7);
    max-width: 600px;
    line-height: 1.8;
}

.center .section-desc {
    margin: 0 auto;
}

/* ============================================ */
/* GRADIENT TEXT */
/* ============================================ */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================ */
/* FLOATING NAVIGATION - UPDATED: FULL WIDTH */
/* ============================================ */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 10px 30px;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.floating-nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
}

.floating-nav.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--dark);
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links > li > a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(44, 62, 80, 0.7);
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
    width: 100%;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--dark);
}

/* ============================================ */
/* DROPDOWN - UPDATED */
/* ============================================ */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle .fa-chevron-down {
    font-size: 12px;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 15px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(44, 62, 80, 0.7);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: rgba(110, 72, 170, 0.08);
    color: var(--dark);
    padding-left: 25px;
}

/* ============================================ */
/* NAV TOGGLE (Mobile) - UPDATED */
/* ============================================ */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================ */
/* HERO SECTION - UPDATED: Right Shifted */
/* ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f6fa 0%, #fdfcfb 50%, #f5f0f8 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 600px;
    padding: 0 20px;
    margin-left: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(110, 72, 170, 0.1);
    border: 1px solid rgba(110, 72, 170, 0.15);
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s both;
    color: var(--dark);
}

.hero-title .title-line {
    display: block;
}

.hero-title .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(44, 62, 80, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 40px rgba(110, 72, 170, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(110, 72, 170, 0.5);
}

.btn-secondary {
    background: rgba(44, 62, 80, 0.05);
    color: var(--dark);
    border: 1px solid rgba(44, 62, 80, 0.1);
}

.btn-secondary:hover {
    background: rgba(44, 62, 80, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 45px;
    font-size: 18px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 14px;
    color: rgba(44, 62, 80, 0.5);
}

.hero-character {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    animation: fadeInRight 1s ease;
}

.character-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
}

.character-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(110, 72, 170, 0.2));
    animation: float 6s ease-in-out infinite;
}

.character-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(110, 72, 170, 0.15), transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: float-orb 8s ease-in-out infinite;
}

.floating-orb.orb-1 {
    width: 60px;
    height: 60px;
    background: rgba(110, 72, 170, 0.15);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-orb.orb-2 {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.floating-orb.orb-3 {
    width: 80px;
    height: 80px;
    background: rgba(243, 156, 18, 0.08);
    bottom: 10%;
    right: 20%;
    animation-delay: 4s;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(44, 62, 80, 0.3);
    font-size: 12px;
    letter-spacing: 2px;
    animation: bounceDown 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    margin: 10px auto 0;
}

/* ============================================ */
/* ANIMATIONS */
/* ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes float-orb {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================ */
/* CONTENT SECTION - UPDATED BACKGROUNDS */
/* ============================================ */
.content-section {
    padding: 100px 0;
    position: relative;
    background: var(--bg-light);
}

.content-section.alternate {
    background: var(--bg-cream);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    transition: var(--transition);
    border-radius: 24px;
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

.image-glow {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(110, 72, 170, 0.1), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.content-text {
    padding: 20px 0;
}

.content-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.content-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark);
}

.content-text p {
    font-size: 17px;
    color: rgba(44, 62, 80, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ============================================ */
/* FEATURE ITEMS - UPDATED */
/* ============================================ */
.content-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(110, 72, 170, 0.06);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.feature-item i {
    font-size: 28px;
    color: var(--primary-color);
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

/* ============================================ */
/* PURPOSE LIST - UPDATED: PROFESSIONAL 3D CARDS */
/* ============================================ */
.purpose-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.purpose-item {
    position: relative;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.purpose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.purpose-item:hover::before {
    transform: scaleX(1);
}

.purpose-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 60px rgba(110, 72, 170, 0.15);
    border-color: rgba(110, 72, 170, 0.1);
}

.purpose-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, rgba(110, 72, 170, 0.08), rgba(157, 80, 187, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: var(--transition);
    position: relative;
}

.purpose-item:hover .purpose-icon-wrapper {
    background: var(--gradient-primary);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(110, 72, 170, 0.25);
}

.purpose-item:hover .purpose-icon-wrapper .purpose-icon {
    filter: brightness(0) invert(1);
}

.purpose-icon {
    font-size: 32px;
    transition: var(--transition);
}

.purpose-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    transition: var(--transition);
}

.purpose-item:hover h4 {
    color: var(--primary-color);
}

.purpose-item p {
    font-size: 14px;
    color: rgba(44, 62, 80, 0.55);
    margin: 0;
    line-height: 1.6;
}

.purpose-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110, 72, 170, 0.05), transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
    transition: var(--transition);
}

.purpose-item:hover .purpose-glow {
    transform: scale(1.5);
    opacity: 0.5;
}

/* ============================================ */
/* COMPARE BOX - UPDATED */
/* ============================================ */
.compare-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.compare-item {
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.compare-item.religion {
    background: rgba(231, 76, 60, 0.06);
    border-color: rgba(231, 76, 60, 0.1);
}

.compare-item.spiritual {
    background: rgba(110, 72, 170, 0.06);
    border-color: rgba(110, 72, 170, 0.1);
}

.compare-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark);
}

.compare-item ul li {
    font-size: 14px;
    color: rgba(44, 62, 80, 0.6);
    padding: 5px 0;
    list-style: none;
}

/* ============================================ */
/* JOURNEY STEPS - UPDATED */
/* ============================================ */
.journey-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.step-item {
    display: flex;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    align-items: center;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    flex-shrink: 0;
}

.step-item h4 {
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 2px;
}

.step-item p {
    font-size: 12px;
    color: rgba(44, 62, 80, 0.5);
    margin: 0;
}

/* ============================================ */
/* AWARENESS TIPS - UPDATED */
/* ============================================ */
.awareness-tips {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(44, 62, 80, 0.8);
}

.tip-item i {
    color: var(--success);
    font-size: 18px;
}

/* ============================================ */
/* PEACE QUOTE - UPDATED */
/* ============================================ */
.peace-quote {
    padding: 25px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border-left: 3px solid var(--primary-color);
    margin-top: 20px;
}

.peace-quote i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.peace-quote p {
    font-size: 18px;
    font-style: italic;
    color: rgba(44, 62, 80, 0.8);
    margin: 0;
}

/* ============================================ */
/* ENERGY QUALITIES - UPDATED */
/* ============================================ */
.energy-qualities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.quality-tag {
    padding: 8px 20px;
    background: rgba(110, 72, 170, 0.08);
    border: 1px solid rgba(110, 72, 170, 0.1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
}

.quality-tag:hover {
    background: rgba(110, 72, 170, 0.15);
    transform: translateY(-2px);
}

/* ============================================ */
/* DAILY PRACTICES - UPDATED */
/* ============================================ */
.daily-practices {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.practice-item {
    display: flex;
    gap: 18px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    align-items: center;
    transition: var(--transition);
}

.practice-item:hover {
    background: rgba(110, 72, 170, 0.04);
    transform: translateX(5px);
}

.practice-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 40px;
}

.practice-item h4 {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 2px;
}

.practice-item p {
    font-size: 13px;
    color: rgba(44, 62, 80, 0.5);
    margin: 0;
}

/* ============================================ */
/* GROWTH SIGNS WITH PROGRESS BARS - UPDATED */
/* ============================================ */
.growth-signs {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.sign-item {
    display: flex;
    gap: 18px;
    align-items: center;
}

.sign-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.sign-item > div {
    flex: 1;
}

.sign-item h4 {
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 6px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(44, 62, 80, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 1.5s ease;
}

/* ============================================ */
/* FINAL THOUGHTS - UPDATED */
/* ============================================ */
.final-thoughts {
    margin-top: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.final-thoughts h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 15px;
}

.final-thoughts p {
    font-size: 16px;
    margin-bottom: 12px;
}

.wmd-message {
    margin-top: 15px;
    padding: 20px;
    background: rgba(110, 72, 170, 0.06);
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
}

.wmd-message p {
    margin: 0;
    font-size: 16px;
    color: rgba(44, 62, 80, 0.8);
}

/* ============================================ */
/* IMAGE SLIDER SECTION - UPDATED */
/* ============================================ */
.slider-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.slider-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.slide-caption h3 {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

.slide-caption p {
    font-size: 14px;
    color: rgba(44, 62, 80, 0.6);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    color: var(--dark);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.slider-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.05);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(44, 62, 80, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

/* ============================================ */
/* FEATURES SECTION - UPDATED */
/* ============================================ */
.features-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(110, 72, 170, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 4s ease-in-out infinite;
}

.feature-card h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: rgba(44, 62, 80, 0.6);
    line-height: 1.7;
    margin-bottom: 15px;
}

.feature-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-link:hover {
    color: var(--secondary-color);
    letter-spacing: 1px;
}

/* ============================================ */
/* BENEFITS SECTION - UPDATED */
/* ============================================ */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    align-items: flex-start;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(110, 72, 170, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.benefit-content h3 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 5px;
}

.benefit-content p {
    font-size: 14px;
    color: rgba(44, 62, 80, 0.5);
    margin: 0;
}

/* ============================================ */
/* TIMELINE SECTION - UPDATED */
/* ============================================ */
.timeline-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color), var(--gold));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-dot {
    position: absolute;
    left: -25px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--bg-light);
    box-shadow: 0 0 20px rgba(110, 72, 170, 0.2);
}

.timeline-content {
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.95);
}

.timeline-date {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timeline-content h3 {
    font-size: 20px;
    color: var(--dark);
    margin: 8px 0 10px;
}

.timeline-content p {
    font-size: 14px;
    color: rgba(44, 62, 80, 0.6);
    margin: 0;
}

/* ============================================ */
/* FACTS SECTION - UPDATED: PROFESSIONAL CARDS */
/* ============================================ */
.facts-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fact-card {
    padding: 35px 30px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.fact-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 26px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.fact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    z-index: 0;
}

.fact-card:hover::before {
    opacity: 1;
}

.fact-card > * {
    position: relative;
    z-index: 1;
}

.fact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(110, 72, 170, 0.15);
}

.fact-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    margin-bottom: 5px;
    line-height: 1;
    transition: var(--transition);
}

.fact-card:hover .fact-number {
    opacity: 0.6;
    transform: scale(1.1);
}

.fact-icon {
    font-size: 42px;
    margin-bottom: 15px;
    display: block;
    transition: var(--transition);
}

.fact-card:hover .fact-icon {
    transform: scale(1.1) rotate(-5deg);
}

.fact-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    transition: var(--transition);
}

.fact-card:hover h3 {
    color: var(--primary-color);
}

.fact-card p {
    font-size: 14px;
    color: rgba(44, 62, 80, 0.6);
    line-height: 1.7;
    margin: 0;
}

.fact-counter {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-top: 10px;
}

.fact-counter-label {
    font-size: 14px;
    color: rgba(44, 62, 80, 0.4);
    display: block;
    margin-top: 2px;
}

/* Fact card glow effect */
.fact-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110, 72, 170, 0.06), transparent 70%);
    top: -80px;
    right: -80px;
    pointer-events: none;
    transition: var(--transition);
    z-index: 0;
}

.fact-card:hover .fact-glow {
    transform: scale(1.5);
    opacity: 0.6;
}

/* ============================================ */
/* CTA SECTION - UPDATED */
/* ============================================ */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f6fa 0%, #f0ebf5 100%);
    position: relative;
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-tag {
    display: inline-block;
    padding: 8px 25px;
    background: rgba(110, 72, 170, 0.08);
    border: 1px solid rgba(110, 72, 170, 0.1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--dark);
}

.cta-content p {
    font-size: 18px;
    color: rgba(44, 62, 80, 0.6);
    max-width: 500px;
    margin: 0 auto 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================ */
/* BACK TO TOP - UPDATED */
/* ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(110, 72, 170, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(110, 72, 170, 0.5);
}

/* ============================================ */
/* RESPONSIVE BREAKPOINTS - UPDATED */
/* ============================================ */

/* Large Tablet / Small Desktop */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .content-text h2 {
        font-size: 32px;
    }
    
    .hero-content {
        margin-left: 30px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.4s ease;
        gap: 20px;
        align-items: flex-start;
        box-shadow: -10px 0 60px rgba(0, 0, 0, 0.05);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    /* ----- DROPDOWN MOBILE FIX ----- */
    .dropdown {
        position: relative;
        width: 100%;
    }
    
    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 10px 0;
        font-size: 14px;
        font-weight: 500;
        color: rgba(44, 62, 80, 0.7);
        cursor: pointer;
        transition: var(--transition);
        border: none;
        background: transparent;
        pointer-events: auto !important;
    }
    
    .dropdown-toggle:hover {
        color: var(--dark);
    }
    
    .dropdown-toggle .fa-chevron-down {
        font-size: 12px;
        transition: transform 0.3s ease;
        margin-left: auto;
    }
    
    .dropdown.open .dropdown-toggle .fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: relative !important;
        top: auto !important;
        left: 0 !important;
        width: 100%;
        min-width: 100% !important;
        background: rgba(110, 72, 170, 0.05) !important;
        border: 1px solid rgba(110, 72, 170, 0.08) !important;
        border-radius: 12px !important;
        padding: 5px 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
        box-shadow: none !important;
        margin-top: 5px;
    }
    
    .dropdown.open .dropdown-menu {
        display: block !important;
        animation: dropdownSlideDown 0.3s ease;
    }
    
    @keyframes dropdownSlideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .dropdown-menu li a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 18px;
        font-size: 13px;
        font-weight: 400;
        color: rgba(44, 62, 80, 0.7);
        transition: var(--transition);
        border-radius: 8px;
    }
    
    .dropdown-menu li a:hover {
        background: rgba(110, 72, 170, 0.08);
        color: var(--dark);
        padding-left: 25px;
    }
    
    .dropdown-menu li a i {
        font-size: 16px;
        width: 24px;
        text-align: center;
    }
    
    /* ----- OTHER MOBILE STYLES ----- */
    .hero {
        flex-direction: column;
        padding: 120px 0 60px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-left: 0;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-character {
        min-height: 300px;
        margin-top: 40px;
    }
    
    .character-image {
        max-width: 250px;
    }
    
    .character-glow {
        width: 250px;
        height: 250px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .content-text {
        padding: 0;
    }
    
    .content-text h2 {
        font-size: 28px;
    }
    
    .content-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .purpose-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .journey-steps {
        grid-template-columns: 1fr 1fr;
    }
    
    .compare-box {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slide img {
        height: 300px;
    }
    
    .slide-caption {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }
    
    .slide-caption h3 {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .floating-nav {
        top: 10px;
        padding: 10px 15px;
        border-radius: 0;
    }
    
    .nav-logo a {
        font-size: 16px;
    }
    
    .logo-icon {
        font-size: 22px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-character {
        min-height: 200px;
    }
    
    .character-image {
        max-width: 180px;
    }
    
    .character-glow {
        width: 180px;
        height: 180px;
    }
    
    .floating-orb {
        display: none;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-desc {
        font-size: 15px;
    }
    
    .content-text h2 {
        font-size: 24px;
    }
    
    .content-text p {
        font-size: 15px;
    }
    
    .content-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .purpose-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .purpose-item {
        padding: 20px 18px;
    }
    
    .purpose-icon-wrapper {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .purpose-icon {
        font-size: 24px;
    }
    
    .purpose-item h4 {
        font-size: 16px;
    }
    
    .journey-steps {
        grid-template-columns: 1fr;
    }
    
    .compare-box {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fact-card {
        padding: 25px 20px;
    }
    
    .fact-number {
        font-size: 36px;
    }
    
    .fact-icon {
        font-size: 32px;
    }
    
    .fact-counter {
        font-size: 28px;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .slide img {
        height: 200px;
    }
    
    .slide-caption {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 12px 15px;
    }
    
    .slide-caption h3 {
        font-size: 16px;
    }
    
    .slide-caption p {
        font-size: 12px;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dots .dot.active {
        width: 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .btn-large {
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline::before {
        left: 5px;
    }
    
    .timeline-dot {
        left: -15px;
        width: 12px;
        height: 12px;
    }
    
    .timeline-content {
        padding: 15px 18px;
    }
    
    .timeline-content h3 {
        font-size: 17px;
    }
    
    .hero-content {
        margin-left: 0;
    }
}

/* Very Small Phones */
@media (max-width: 360px) {
    .hero-title {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .content-text h2 {
        font-size: 20px;
    }
    
    .content-features {
        grid-template-columns: 1fr;
    }
    
    .purpose-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================ */
/* EXTRA SMALL DEVICES (400px and below) */
/* ============================================ */
@media (max-width: 400px) {
    .floating-nav {
        padding: 8px 12px;
        top: 0;
    }
    
    .nav-logo a {
        font-size: 14px;
        gap: 6px;
    }
    
    .logo-icon {
        font-size: 18px;
    }
    
    .logo-text {
        font-size: 13px;
    }
    
    .nav-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .nav-links {
        padding: 70px 20px 20px;
        width: 85%;
    }
    
    .nav-links > li > a {
        font-size: 13px;
    }
    
    .hero {
        padding: 70px 0 20px;
        min-height: 100vh;
        height: auto;
        flex-direction: column;
    }
    
    .hero-content {
        padding: 0 12px;
        margin-left: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 5px 12px;
        gap: 5px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 30px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 25px;
        justify-content: center;
    }
    
    .stat-item {
        flex: 1 1 30%;
        min-width: 60px;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .hero-character {
        min-height: 140px;
        margin-top: 20px;
        width: 100%;
    }
    
    .character-image {
        max-width: 120px;
    }
    
    .character-glow {
        width: 140px;
        height: 140px;
    }
    
    .floating-orb {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-tag {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }
    
    .section-title {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .section-desc {
        font-size: 13px;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .content-section {
        padding: 50px 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .content-text {
        padding: 0 5px;
    }
    
    .content-tag {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .content-text h2 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .content-text p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    
    .content-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 15px;
    }
    
    .feature-item {
        padding: 12px 8px;
        border-radius: 12px;
    }
    
    .feature-item i {
        font-size: 20px;
    }
    
    .feature-item span {
        font-size: 11px;
        text-align: center;
    }
    
    .purpose-list {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 15px;
    }
    
    .purpose-item {
        padding: 16px 15px;
        border-radius: 16px;
    }
    
    .purpose-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .purpose-icon {
        font-size: 22px;
    }
    
    .purpose-item h4 {
        font-size: 15px;
    }
    
    .purpose-item p {
        font-size: 12px;
    }
    
    .image-wrapper {
        border-radius: 16px;
    }
    
    .image-badge {
        font-size: 10px;
        padding: 4px 12px;
        bottom: 10px;
        left: 10px;
    }
    
    .journey-steps {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 15px;
    }
    
    .step-item {
        padding: 12px 15px;
        border-radius: 10px;
        gap: 12px;
    }
    
    .step-number {
        font-size: 18px;
    }
    
    .step-item h4 {
        font-size: 13px;
    }
    
    .step-item p {
        font-size: 11px;
    }
    
    .compare-box {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 15px;
    }
    
    .compare-item {
        padding: 16px 18px;
        border-radius: 12px;
    }
    
    .compare-item h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .compare-item ul li {
        font-size: 12px;
        padding: 3px 0;
    }
    
    .awareness-tips {
        gap: 8px;
        margin-top: 12px;
    }
    
    .tip-item {
        font-size: 13px;
        gap: 10px;
    }
    
    .tip-item i {
        font-size: 15px;
    }
    
    .peace-quote {
        padding: 16px 18px;
        margin-top: 15px;
        border-radius: 12px;
    }
    
    .peace-quote i {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .peace-quote p {
        font-size: 14px;
    }
    
    .energy-qualities {
        gap: 8px;
        margin-top: 12px;
    }
    
    .quality-tag {
        font-size: 11px;
        padding: 5px 14px;
    }
    
    .daily-practices {
        gap: 10px;
        margin-top: 12px;
    }
    
    .practice-item {
        padding: 12px 15px;
        border-radius: 10px;
        gap: 12px;
    }
    
    .practice-item i {
        font-size: 18px;
        width: 30px;
    }
    
    .practice-item h4 {
        font-size: 13px;
    }
    
    .practice-item p {
        font-size: 11px;
    }
    
    .growth-signs {
        gap: 12px;
        margin-top: 12px;
    }
    
    .sign-item {
        gap: 12px;
    }
    
    .sign-icon {
        font-size: 20px;
    }
    
    .sign-item h4 {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .progress-bar {
        height: 4px;
    }
    
    .final-thoughts {
        padding: 18px 16px;
        margin-top: 15px;
        border-radius: 14px;
    }
    
    .final-thoughts h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .final-thoughts p {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .wmd-message {
        padding: 14px 16px;
        border-radius: 10px;
        margin-top: 10px;
    }
    
    .wmd-message p {
        font-size: 13px;
    }
    
    .slider-section {
        padding: 50px 0;
    }
    
    .slider-container {
        border-radius: 16px;
    }
    
    .slide img {
        height: 150px;
    }
    
    .slide-caption {
        bottom: 8px;
        left: 8px;
        right: 8px;
        padding: 8px 12px;
        border-radius: 10px;
        width: auto;
    }
    
    .slide-caption h3 {
        font-size: 14px;
    }
    
    .slide-caption p {
        font-size: 10px;
    }
    
    .slider-btn {
        width: 28px;
        height: 28px;
        font-size: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .slider-btn.prev {
        left: 6px;
    }
    
    .slider-btn.next {
        right: 6px;
    }
    
    .slider-dots {
        bottom: 8px;
        gap: 6px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .dot.active {
        width: 16px;
    }
    
    .features-section {
        padding: 50px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card {
        padding: 20px 16px;
        border-radius: 16px;
    }
    
    .feature-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .feature-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .feature-card p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
    
    .feature-link {
        font-size: 13px;
    }
    
    .benefits-section {
        padding: 50px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .benefit-item {
        padding: 16px 18px;
        border-radius: 12px;
        gap: 14px;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
        border-radius: 10px;
    }
    
    .benefit-content h3 {
        font-size: 15px;
    }
    
    .benefit-content p {
        font-size: 13px;
    }
    
    .timeline-section {
        padding: 50px 0;
    }
    
    .timeline {
        padding-left: 18px;
    }
    
    .timeline::before {
        left: 4px;
    }
    
    .timeline-item {
        margin-bottom: 20px;
        padding-left: 18px;
    }
    
    .timeline-dot {
        left: -12px;
        top: 4px;
        width: 10px;
        height: 10px;
        border-width: 2px;
    }
    
    .timeline-content {
        padding: 12px 14px;
        border-radius: 12px;
    }
    
    .timeline-date {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .timeline-content h3 {
        font-size: 16px;
        margin: 4px 0 6px;
    }
    
    .timeline-content p {
        font-size: 12px;
    }
    
    .facts-section {
        padding: 50px 0;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .fact-card {
        padding: 20px 16px;
        border-radius: 18px;
    }
    
    .fact-number {
        font-size: 28px;
    }
    
    .fact-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .fact-card h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .fact-card p {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .fact-counter {
        font-size: 24px;
        margin-top: 8px;
    }
    
    .fact-counter-label {
        font-size: 11px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-tag {
        font-size: 11px;
        padding: 5px 16px;
        margin-bottom: 15px;
    }
    
    .cta-content h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .cta-content p {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        padding: 0 10px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .back-to-top {
        width: 34px;
        height: 34px;
        font-size: 14px;
        bottom: 12px;
        right: 12px;
    }
    
    .container {
        padding: 0 12px;
    }
}

/* ============================================ */
/* EXTRA SMALL (350px and below) */
/* ============================================ */
@media (max-width: 350px) {
    .hero-title {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .content-text h2 {
        font-size: 18px;
    }
    
    .hero-stats {
        gap: 10px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .hero-character {
        min-height: 120px;
    }
    
    .character-image {
        max-width: 100px;
    }
    
    .character-glow {
        width: 110px;
        height: 110px;
    }
    
    .content-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 10px;
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }
    
    .feature-item i {
        font-size: 16px;
    }
    
    .feature-item span {
        font-size: 12px;
    }
    
    .purpose-item {
        padding: 14px 12px;
    }
    
    .purpose-icon-wrapper {
        width: 42px;
        height: 42px;
    }
    
    .purpose-icon {
        font-size: 18px;
    }
    
    .purpose-item h4 {
        font-size: 14px;
    }
    
    .slide img {
        height: 120px;
    }
    
    .slide-caption h3 {
        font-size: 12px;
    }
    
    .slide-caption p {
        font-size: 9px;
    }
    
    .slider-btn {
        width: 22px;
        height: 22px;
        font-size: 8px;
    }
    
    .cta-content h2 {
        font-size: 18px;
    }
    
    .cta-content p {
        font-size: 12px;
    }
    
    .fact-number {
        font-size: 22px;
    }
    
    .fact-icon {
        font-size: 22px;
    }
    
    .fact-counter {
        font-size: 20px;
    }
}

/* ============================================ */
/* RESPONSIVE BREAKPOINTS - UPDATED */
/* ============================================ */

/* Tablet - 768px and below */
@media (max-width: 768px) {
    .slide img {
        height: 500px !important;
        object-fit: cover;
    }
    
    .hero-character {
        min-height: 350px;
        margin-top: 30px;
    }
    
    .character-image {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .character-image img {
        width: 100%;
        height: auto;
        max-height: 350px;
        object-fit: contain;
    }
    
    .character-glow {
        width: 300px;
        height: 300px;
    }
}

/* Mobile - 576px and below */
@media (max-width: 576px) {
    .slide img {
        height: 500px !important;
        object-fit: cover;
    }
    
    .hero-character {
        min-height: 280px;
    }
    
    .character-image {
        max-width: 250px;
    }
    
    .character-image img {
        max-height: 280px;
        object-fit: contain;
    }
    
    .character-glow {
        width: 220px;
        height: 220px;
    }
}

/* Extra Small - 400px and below */
@media (max-width: 400px) {
    .slide img {
        height: 500px !important;
        object-fit: cover;
    }
    
    .hero-character {
        min-height: 220px;
    }
    
    .character-image {
        max-width: 180px;
    }
    
    .character-image img {
        max-height: 220px;
        object-fit: contain;
    }
    
    .character-glow {
        width: 160px;
        height: 160px;
    }
}

/* ============================================ */
/* MOBILE NAVBAR DROPDOWN FIX - UPDATED */
/* ============================================ */

/* Tablet and Mobile - 992px and below */
@media (max-width: 992px) {
    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 10px 0;
        font-size: 14px;
        font-weight: 500;
        color: rgba(44, 62, 80, 0.7);
        cursor: pointer;
        transition: var(--transition);
        border: none;
        background: transparent;
        pointer-events: auto !important;
    }
    
    .dropdown-toggle:hover {
        color: var(--dark);
    }
    
    .dropdown-toggle .fa-chevron-down {
        font-size: 12px;
        transition: transform 0.3s ease;
        margin-left: auto;
    }
    
    .dropdown.open .dropdown-toggle .fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: relative !important;
        top: auto !important;
        left: 0 !important;
        width: 100%;
        min-width: 100% !important;
        background: rgba(110, 72, 170, 0.05) !important;
        border: 1px solid rgba(110, 72, 170, 0.08) !important;
        border-radius: 12px !important;
        padding: 5px 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
        box-shadow: none !important;
        margin-top: 5px;
    }
    
    .dropdown.open .dropdown-menu {
        display: block !important;
        animation: dropdownSlideDown 0.3s ease;
    }
    
    @keyframes dropdownSlideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .dropdown-menu li a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 18px;
        font-size: 13px;
        font-weight: 400;
        color: rgba(44, 62, 80, 0.7);
        transition: var(--transition);
        border-radius: 8px;
    }
    
    .dropdown-menu li a:hover {
        background: rgba(110, 72, 170, 0.08);
        color: var(--dark);
        padding-left: 25px;
    }
    
    .dropdown-menu li a i {
        font-size: 16px;
        width: 24px;
        text-align: center;
    }
}

footer {
    background: var(--secondary-color);
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.footer-column {
    flex: 1 1 200px;
    min-width: 250px;
    padding: 0 15px;
}
.footer-column h3 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #fff;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 0.6rem;
}
.footer-column ul li a {
    color: #dfe6e9;
    text-decoration: none;
    transition: var(--transition);
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}
.footer-column ul li a:hover {
    color: #fff;
    padding-left: 5px;
}
.footer-column p {
    color: #dfe6e9;
    margin-bottom: 1rem;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgb(255 255 255 / 0.1);
}
.footer-bottom p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
    font-size: 1rem;
    padding: 5px;
}
.social-links a:hover {
    background: var(--footer-color);
    transform: translateY(-3px);
}
.social-links img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .footer-container {
        gap: 0.7rem;
    }
    .footer-column {
        flex: 1 1 150px;
        padding: 0 10px;
    }
}
@media (max-width: 480px) {
    .footer-container {
        flex-direction: column;
        gap: 0.7rem;
    }
    .footer-column {
        flex: 1 1 auto;
        min-width: 100%;
        padding: 0;
        margin-bottom: 1.5rem;
    }
    .footer-column:last-child {
        margin-bottom: 0;
    }
    .social-links {
        justify-content: center;
    }
}
@media (max-width: 350px) {
    .footer-bottom p {
        white-space: normal;
    }
}
.logo-below-footer {
    width: 100%;
    text-align: center;
    padding: 0 15px;
    cursor: pointer;
}
.logo-below-footer img {
    width: 100%;
    height: 100%;
    transition: var(--transition);
    object-fit: cover;
}
.logo-below-footer img:hover {
    transform: translateY(-5px);
}
@media (max-width: 768px) {
    .logo-below-footer {
        margin: 1.5rem 0;
    }
    .logo-below-footer img {
        max-width: 350px;
    }
}
@media (max-width: 480px) {
    .logo-below-footer {
        margin: 1rem 0;
    }
    .logo-below-footer img {
        max-width: 280px;
    }
}
@media (max-width: 350px) {
    .logo-below-footer img {
        max-width: 220px;
    }
}
@media (min-width: 992px) {
    .logo-below-footer img {
        width: 400px;
        height: 100px;
    }
}
@media (max-width: 768px) {
    .logo-below-footer img {
        width: 350px;
        height: 90px;
    }
}
@media (max-width: 400px) {
    .logo-below-footer img {
        width: 280px;
        height: 70px;
    }
}
@media (max-width: 300px) {
    .logo-below-footer img {
        width: 220px;
        height: 55px;
    }
}

.logo-below-footer {
    
    display: flex;
    justify-content: center;
    align-items: center;
}

