 .quantum-card {
            background: rgba(255,255,255,0.9);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.5s ease;
            border: none;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.3);
        }
        .quantum-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .science-badge {
            background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            font-weight: 700;
            padding: 5px 15px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 15px;
            font-size: 14px;
        }
        .energy-pulse {
            position: relative;
        }
        .energy-pulse:after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
            animation: pulse 3s infinite;
            border-radius: inherit;
            z-index: 0;
        }
        @keyframes pulse {
            0% { transform: scale(0.95); opacity: 0.8; }
            70% { transform: scale(1.05); opacity: 0; }
            100% { transform: scale(0.95); opacity: 0; }
        }
        .section-title {
            position: relative;
            display: inline-block;
            font-family: 'Old Standard TT', serif;
        }
        .section-title:after {
            content: "";
            position: absolute;
            width: 50%;
            height: 3px;
            background: linear-gradient(90deg, #f46b45 0%, #eea849 100%);
            bottom: -10px;
            left: 25%;
            border-radius: 3px;
        }
        .banner-home h1 {
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .banner-home h2 {
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        .testimonial-icon {
            color: #6a11cb;
            margin-bottom: 15px;
        }
        .nav-logo {
            transition: all 0.3s ease;
        }
        .nav-logo:hover {
            transform: rotate(5deg);
        }
        .spiritual-point {
            margin-bottom: 15px;
            padding-left: 20px;
            position: relative;
        }
        .spiritual-point:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #6a11cb;
            font-size: 24px;
        }
        .cta-button {
            letter-spacing: 1px;
            font-weight: 600;
            border-radius: 50px;
            padding: 12px 30px;
            transition: all 0.3s ease;
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Enhanced Formula Section */
        .formula-section {
            position: relative;
            overflow: hidden;
            background: #f8f9fa;
        }
        .title-decoration {
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
            margin: 0.5rem auto;
            border-radius: 2px;
        }
        .icon-wrapper {
            position: relative;
            display: inline-block;
        }
        .icon-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            transition: all 0.3s ease;
        }
        .quantum-card:hover .icon-circle {
            transform: scale(1.1);
        }
        .bg-gradient-primary {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        }
        .bg-gradient-success {
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
        }
        .bg-gradient-info {
            background: linear-gradient(135deg, #fc4a1a 0%, #f7b733 100%);
        }
        .wave-decoration {
            height: 3px;
            width: 50px;
            background: linear-gradient(90deg, rgba(106,17,203,0.3) 0%, rgba(37,117,252,0.3) 100%);
            margin: 1.5rem auto 0;
            border-radius: 3px;
            position: relative;
        }
        .wave-decoration::after {
            content: '';
            position: absolute;
            top: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #6a11cb;
        }
        .btn-primary {
            background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
            border: none;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(106,17,203,0.3);
        }

        /* Enhanced Seeker Section */
        .seeker-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 5rem 0;
        }
        .image-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            height: 100%;
        }
        .image-container img {
            object-fit: cover;
            height: 100%;
            min-height: 400px;
        }
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(102,126,234,0.3) 0%, rgba(118,75,162,0.3) 100%);
        }
        .feature-list li {
            padding: 12px 15px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            transition: all 0.3s ease;
            margin-bottom: 10px;
        }
        .feature-list li:hover {
            background: rgba(255,255,255,0.2);
            transform: translateX(5px);
        }
        .feature-list i {
            color: #fff;
            width: 24px;
            text-align: center;
        }
        .right-part {
            padding: 3rem !important;
        }

        /* Enhanced Cosmic Section */
        .cosmic-section {
            padding: 5rem 0;
        }
        .section-badge {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 50px;
            font-size: 14px;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }
        .cosmic-card {
            transition: all 0.3s ease;
            border-radius: 15px;
            height: 100%;
        }
        .cosmic-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
        }
        .bg-purple {
            background: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%);
        }
        .process-steps {
            position: relative;
            padding-left: 40px;
        }
        .step {
            position: relative;
            margin-bottom: 1.5rem;
        }
        .step-number {
            position: absolute;
            left: -40px;
            top: 0;
            width: 30px;
            height: 30px;
            background: #764ba2;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        .step-content {
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
        }
        .step:last-child .step-content {
            border-bottom: none;
        }

        @media (max-width: 992px) {
            .seeker-section .row {
                flex-direction: column;
            }
            .right-part {
                padding: 2rem !important;
            }
        }

.quantum-particles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

/* Banner Section */
.banner-home {
    background-image: url('images/qp.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    color: white;
    text-align: left;
}

.banner-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.banner-home .container {
    position: relative;
    z-index: 1;
}

.banner-home h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.banner-home h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.resonance-point {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
}

.resonance-point {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
    color: #fff; /* Ensure text is white for better contrast */
}

.resonance-point i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 1.2rem;
    /* Updated color to a golden gradient to match the theme better */
    background: linear-gradient(135deg, #eea849 0%, #f46b45 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gradient Overlay */
.banner-home .gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 0;
}

/* Quantum Cards */
.quantum-card {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    border: none;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
}

.quantum-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.science-badge {
    background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quantum-icon {
    font-size: 2.5rem;
    color: #6a11cb;
    margin: 15px 0;
    transition: all 0.3s ease;
}

.quantum-card:hover .quantum-icon {
    transform: scale(1.2);
    color: #2575fc;
}

.energy-pulse {
    position: relative;
}

.energy-pulse:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    animation: pulse 3s infinite;
    border-radius: inherit;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    70% { transform: scale(1.05); opacity: 0; }
    100% { transform: scale(0.95); opacity: 0; }
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: #6a11cb;
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.section-title:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, #f46b45 0%, #eea849 100%);
    bottom: -10px;
    left: 25%;
    border-radius: 3px;
}

/* Spiritual Points */
.spiritual-point {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.spiritual-point:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6a11cb;
    font-size: 24px;
}

/* CTA Buttons */
.cta-button {
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Pulse Animation */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

   