       * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background: #ffffff;
    overflow-x: hidden;
}

/* Navigation with Blur Effect - Mobile Responsive */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    max-height: 65px;
    width: auto;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #8e56ff;
}

.btn-nav {
    margin-left: 60px;
    background-color: #FF6417;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 100, 23, 0.3);
}

.btn-nav:hover {
    background-color: white;
    color: #FF6417;
    box-shadow: 0 0 20px #FF6417, 0 0 30px #FF6417;
    transform: translateY(-2px);
}

/* Extra safety for underline */
.btn-nav a, a.btn-nav {
    text-decoration: none !important;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 40px;
        transition: 0.4s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
}
/* END */

/* HERO SECTION WITH VIDEO - ULTRA PREMIUM */
.hero {
    padding: 120px 40px 80px;
    position: relative;
    color: black;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Video Background */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

    .video-bg video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.9) contrast(1.1);
    }


/* Mobile pe video ko image se replace kar do (fast loading) */
@media (max-width: 768px) {
    .video-bg video {
        display: none;
    }

    .video-bg {
        background: url('banner.jpg') center center / cover no-repeat;
        background-attachment: fixed;
    }

    .hero {
        padding: 100px 20px 60px;
    }
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero h1 {
    font-family: 'IBM Plex Serif', serif;
    font-size: 58px;
    font-weight: 700;
    color: black;
    margin-bottom: 24px;
    line-height: 1.1;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.hero .highlight purple heading {
    color: #000000;
}

.hero .subheading {
    font-size: 24px;
    color: #000000(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.5;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 1s ease 0.2s, opacity 1s ease 0.2s;
}


.hero-visual {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 60px;
    color: black;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateX(50px);
    opacity: 0;
    transition: transform 1s ease 0.5s, opacity 1s ease 0.5s;
}

    .hero-visual::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.hero-visual-content {
    position: relative;
    z-index: 2;
}

.hero-visual h3 {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: 600;
}

.hero-visual ul {
    list-style: none;
    font-size: 18px;
    line-height: 2;
}

.hero-visual li::before {
    content: '✓';
    color: #9F7AEA;
    font-weight: bold;
    margin-right: 12px;
}

/* Animation classes */
.animate-in {
    transform: translateY(0) !important;
    transform: translateX(0) !important;
    opacity: 1 !important;
}

/* About Section with Light Glass Bubbles Background - COMPLETELY FIXED */
.problem-section {
    padding: 100px 80px;
    background: linear-gradient(135deg, #f8f7ff 0%, #ffffff 50%, #f5f0ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Floating Glass Bubbles - Light Theme Optimized */
.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 70%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
                 radial-gradient(circle at 85% 30%, rgba(159, 122, 234, 0.1) 0%, transparent 50%),
                 radial-gradient(circle at 50% 90%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.bubbles-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble-light {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1.8px solid rgba(124, 58, 237, 0.25);
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.18), inset 0 0 40px rgba(255, 255, 255, 0.6);
    animation: float-light 24s infinite ease-in-out;
    opacity: 0.9;
}

/* 6 Beautiful Light Bubbles */
.bubble-light:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -10%;
    right: -8%;
    background: rgba(159, 122, 234, 0.22);
    animation-delay: 0s;
    animation-duration: 26s;
}

.bubble-light:nth-child(2) {
    width: 320px;
    height: 320px;
    top: 50%;
    left: -12%;
    background: rgba(124, 58, 237, 0.2);
    animation-delay: 6s;
    animation-duration: 22s;
}

.bubble-light:nth-child(3) {
    width: 180px;
    height: 180px;
    bottom: 15%;
    right: 10%;
    background: rgba(139, 92, 246, 0.28);
    animation-delay: 9s;
    animation-duration: 18s;
}

.bubble-light:nth-child(4) {
    width: 260px;
    height: 260px;
    top: 20%;
    left: 8%;
    background: rgba(167, 139, 250, 0.24);
    animation-delay: 3s;
    animation-duration: 28s;
}

.bubble-light:nth-child(5) {
    width: 140px;
    height: 140px;
    bottom: 30%;
    left: 18%;
    background: rgba(99, 70, 229, 0.32);
    animation-delay: 12s;
    animation-duration: 20s;
}

.bubble-light:nth-child(6) {
    width: 380px;
    height: 380px;
    bottom: -15%;
    right: -5%;
    background: rgba(179, 136, 255, 0.18);
    animation-delay: 8s;
    animation-duration: 30s;
}

/* Light Theme Floating Animation */
@keyframes float-light {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-60px) translateX(50px) rotate(12deg) scale(1.06);
    }
    50% {
        transform: translateY(-100px) translateX(-40px) rotate(-10deg) scale(0.96);
    }
    75% {
        transform: translateY(-50px) translateX(60px) rotate(8deg) scale(1.04);
    }
}

.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    width: 100%;
}

/* HypnoRise Card Section */
.hypnorise-card-wrapper {
    width: 100%;
    margin-bottom: 60px;
}

.blur-card-wide {
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    border-radius: 32px;
    border: 1.8px solid rgba(124, 58, 237, 0.22);
    padding: 90px 100px;
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.16), 0 0 100px rgba(159, 122, 234, 0.12);
    position: relative;
    z-index: 2;
}

.section-label {
    font-size: 30px !important;
    color: #7C3AED;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    margin-bottom: 16px;
    text-align: center;
}

.card-main-heading {
    font-family: 'IBM Plex Serif', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.25;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(90deg, #7C3AED, #9F7AEA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Justified Paragraphs */
.justified-text-block {
    max-width: 1000px;
    margin: 0 auto 48px;
    font-size: 19px;
    line-height: 1.9;
    color: #444;
    text-align: justify;
    hyphens: auto;
}

.justified-text-block p {
    margin-bottom: 24px;
}

.justified-text-block .intro-paragraph {
    font-weight: 500;
    color: #333;
    margin-bottom: 32px;
}

.rise-benefits-left {
    list-style: none;
    padding: 0;
    margin: 0 auto 56px;
    max-width: 500px;
    text-align: left;
    font-size: 20px;
    line-height: 2;
    color: #333;
}

.rise-benefits-left li {
    padding-left: 10px;
    position: relative;
    margin-bottom: 18px;
}

.rise-benefits-left li:before {
    content: '';
    position: absolute;
    left: -24px;
    top: 12px;
    width: 10px;
    height: 10px;
    background: #7C3AED;
    border-radius: 50%;
}

.card-closing {
    font-size: 23px;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
}

.rise-highlight {
    color: #7C3AED;
    font-size: 1.4em;
    display: inline-block;
}

/* Divider */
.divider-fancy {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 60px 0;
    color: #7C3AED;
    font-weight: bold;
}

.divider-fancy::before,
.divider-fancy::after {
    content: '';
    flex: 1;
    height: 2px;
    background: rgba(124, 58, 237, 0.3);
}

.divider-fancy span {
    padding: 0 20px;
    font-size: 24px;
}

/* About Grid */
.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
}

.author-photo {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(135deg, #7C3AED 0%, #9F7AEA 100%);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3), 0 0 80px rgba(124, 58, 237, 0.25);
    transition: all 1s ease;
    position: relative;
    overflow: hidden;
    animation: floatGlow 6s ease-in-out infinite;
}

.author-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid white;
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.4), 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.6s ease;
}

.author-photo:hover img {
    transform: scale(1.08);
    border-color: #D8B4FE;
    box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.6), 0 20px 50px rgba(124, 58, 237, 0.4);
}

.author-photo:hover {
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.5), 0 0 120px rgba(159, 122, 234, 0.6);
    transform: translateY(-10px);
}

@keyframes floatGlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.about-content h2 {
    font-family: 'IBM Plex Serif', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.about-content .credentials {
    font-size: 18px;
    color: #7C3AED;
    font-weight: 600;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .problem-section {
        padding: 80px 40px;
    }
    
    .blur-card-wide {
        padding: 70px 60px;
    }
    
    .card-main-heading {
        font-size: 44px;
    }
    
    .about-grid {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .problem-section {
        padding: 60px 20px;
    }
    
    .blur-card-wide {
        padding: 50px 30px;
        border-radius: 24px;
    }
    
    .card-main-heading {
        font-size: 32px;
    }
    
    .card-main-heading br {
        display: none;
    }
    
    .justified-text-block {
        font-size: 16px;
    }
    
    .rise-benefits-left {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .rise-benefits-left li:before {
        top: 8px;
    }
    
    .card-closing {
        font-size: 18px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .author-photo {
        width: 260px;
        height: 260px;
        margin: 0 auto;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content h2 {
        font-size: 32px;
    }
    
    .about-content p {
        font-size: 16px;
        text-align: left;
    }
    
    .divider-fancy {
        margin: 40px 0;
    }
}

@media (max-width: 480px) {
    .card-main-heading {
        font-size: 28px;
    }
    
    .blur-card-wide {
        padding: 40px 20px;
    }
    
    .section-label {
        font-size: 20px !important;
    }
    
    .justified-text-block {
        font-size: 15px;
    }
    
    .rise-benefits-left {
        font-size: 15px;
    }
    
    .author-photo {
        width: 220px;
        height: 220px;
    }
}
/* ABOUT SECTION END */

/* Book Section */
.book-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #d3bcff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.book-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}



.book-details {
    transform: translateX(50px);
    opacity: 0;
    transition: transform 1s ease 0.3s, opacity 1s ease 0.3s;
}

    .book-details h2 {
        font-family: 'IBM Plex Serif', serif;
        font-size: 42px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 16px;
    }

    .book-details .subtitle {
        font-family: 'IBM Plex Serif', serif;
        font-size: 28px;
        font-weight: 600;
        color: #7C3AED;
        margin-bottom: 32px;
        font-style: italic;
    }

    .book-details p {
        font-size: 18px;
        color: #666;
        line-height: 1.7;
        margin-bottom: 32px;
    }

.book-features {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.book-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #424242;
    transform: translateY(20px);
    opacity: 0;
}

    .book-feature:nth-child(1) {
        transition: transform 0.8s ease 0.4s, opacity 0.8s ease 0.4s;
    }

    .book-feature:nth-child(2) {
        transition: transform 0.8s ease 0.5s, opacity 0.8s ease 0.5s;
    }

    .book-feature:nth-child(3) {
        transition: transform 0.8s ease 0.6s, opacity 0.8s ease 0.6s;
    }

    .book-feature:nth-child(4) {
        transition: transform 0.8s ease 0.7s, opacity 0.8s ease 0.7s;
    }

    .book-feature:nth-child(5) {
        transition: transform 0.8s ease 0.8s, opacity 0.8s ease 0.8s;
    }

    .book-feature:nth-child(6) {
        transition: transform 0.8s ease 0.9s, opacity 0.8s ease 0.9s;
    }

    .book-feature::before {
        content: '✓';
        color: #7C3AED;
        font-weight: bold;
        font-size: 18px;
    }

.cta-group {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    transform: translateY(30px);
    opacity: 0;
}

.btn-primary {
    background: #7C3AED;
    color: white;
    border: 2px solid #7C3AED;
    transition: transform 1s ease 0.7s, opacity 1s ease 0.7s, background 0.3s, border-color 0.3s;
}

.btn-secondary {
    background: transparent;
    color: #6B21A8;
    border: 2px solid #6B21A8;
    transition: transform 1s ease 0.8s, opacity 1s ease 0.8s, background 0.3s, color 0.3s;
}

.btn-primary:hover {
    background: #6B21A8;
    border-color: #6B21A8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
}

.btn-secondary:hover {
    background: #d3bcff;
    color: #6B21A8;
}

.book-cover {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.0); /* nice depth */
}

.zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.35s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    z-index: 10;
}

.book-cover:hover .zoom-icon {
    opacity: 1;
    transform: scale(1.1);
}

.zoom-icon svg {
    transition: transform 0.3s ease;
}

.zoom-icon:hover svg {
    transform: scale(1.2);
}

/* ====================== LIGHTBOX ====================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 92vw;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
    border: 2px solid #8c52ff79;
    transition: transform 0.4s ease;
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #8c52ff;
    font-size: 48px;
    font-weight: 300;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Optional: Book Cover Hover Effect */
.book-cover img {
    width: 150%;
    height: 150%;
    margin-left: -20%;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.6s ease;
}

.book-cover:hover img {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}
/* END */

/* ====================== RISE FRAMEWORK SECTION ====================== */
.framework-section {
    padding: 120px 80px;
    background: linear-gradient(135deg, #f5f0ff 0%, #fafafa 50%, #ede9ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Purple Dreamy Bubbles */
.dreamy-bubbles-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bub-purple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(167, 139, 250, 0.35), rgba(139, 92, 246, 0.25), transparent 70%);
    filter: blur(32px);
    opacity: 0.45;
    animation: float-lite 32s infinite ease-in-out;
}

.bub-purple:nth-child(1) { width: 420px; height: 420px; top: 5%; left: 2%; animation-delay: 0s; }
.bub-purple:nth-child(2) { width: 340px; height: 340px; top: 8%; right: 4%; animation-delay: 8s; }
.bub-purple:nth-child(3) { width: 280px; height: 280px; bottom: 12%; left: 6%; animation-delay: 14s; }
.bub-purple:nth-child(4) { width: 220px; height: 220px; top: 20%; left: 40%; animation-delay: 5s; }

@keyframes float-lite {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -80px) scale(1.08); }
}

/* Section Wrapper */
.section-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    width: 100%;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-family: 'IBM Plex Serif', serif;
    font-size: 56px;
    font-weight: 800;
    color: #4c1d95;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 22px;
    color: #6b21a8;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Framework Grid */
.framework-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* Glassmorphic Cards */
.framework-card {
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.8px solid rgba(255, 255, 255, 0.4);
    border-top: 5px solid #9333ea;
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.25);
    transition: all 0.6s ease;
}

.framework-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 35px 70px rgba(124, 58, 237, 0.4);
    background: rgba(255, 255, 255, 0.38);
    border-top-color: #c084fc;
}

/* Card Content */
.framework-number {
    font-family: 'IBM Plex Serif', serif;
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #7C3AED, #C084FC, #D8B4FE);

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    margin-bottom: 12px;
}

.framework-title {
    font-size: 24px;
    font-weight: 800;
    color: #4c1d95;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.framework-description {
    font-size: 16px;
    color: #5b21b6;
    line-height: 1.8;
}

/* CTA Button */
.cta-group {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary {
    padding: 16px 36px;
    font-size: 17px;
    font-weight: 600;
    background: #7C3AED;
    color: white;
    border: 2px solid #7C3AED;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #6D28D9;
    border-color: #6D28D9;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.35);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1200px) {
    .framework-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .framework-section {
        padding: 80px 20px;
    }
    .framework-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .section-header h2 {
        font-size: 42px;
    }
}
/* RISE FRAMEWORK END */

/* RESEARCH SECTION – CLEAN & PREMIUM */
.research-section {
    padding: 160px 80px;
    background: linear-gradient(135deg, #f5f0ff 0%, #fafafa 50%, #ede9ff 100%);
    position: relative;
    overflow: hidden;
}

.research-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 90px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.research-column {
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 52px 44px;
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.15);
}

.column-title {
    font-family: 'IBM Plex Serif', serif;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 36px;
    background: linear-gradient(135deg, #7C3AED, #C084FC);

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;
}

.evidence-list {
    list-style: none;
    padding: 0;
    font-size: 17.5px;
    line-height: 2;
    color: #4c1d95;
    font-weight: 500;
}

    .evidence-list li {
        margin-bottom: 20px;
        position: relative;
        padding-left: 28px;
    }

        .evidence-list li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: #9333ea;
            font-weight: bold;
            top: 2px;
        }

    .evidence-list span {
        display: block;
        font-size: 14px;
        color: #9333ea;
        margin-top: 6px;
        font-weight: 600;
        opacity: 0.9;
    }

.summary-text {
    margin-top: 32px;
    font-size: 19px;
    color: #4c1d95;
    font-weight: 600;
    line-height: 1.8;
}

.paradox {
    font-style: italic;
    background: rgba(124, 58, 237, 0.06);
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid #9333ea;
}

/* Responsive */
@media (max-width: 992px) {
    .research-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .research-section {
        padding: 120px 40px;
    }
}

@media (max-width: 768px) {
    .research-section {
        padding: 100px 20px;
    }

    .column-title {
        font-size: 30px;
    }

    .evidence-list {
        font-size: 16.5px;
    }
}

/* Organizations Section with Premium Glass Bubbles Background */
.organizations-section {
    padding: 100px 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    /* Floating Glass Bubbles Background (Dark Theme Optimized) */
    .organizations-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(120, 119, 198, 0.12) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(167, 139, 250, 0.1) 0%, transparent 50%);
        pointer-events: none;
        z-index: -1;
    }

.bubbles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(100, 100, 200, 0.15), inset 0 0 40px rgba(255, 255, 255, 0.08);
    animation: float 22s infinite ease-in-out;
    opacity: 0.8;
}

    /* 6 Beautiful Floating Bubbles - Exact Match to Your Image */
    .bubble:nth-child(1) {
        width: 420px;
        height: 420px;
        top: -8%;
        right: -6%;
        background: rgba(159, 122, 234, 0.18);
        animation-delay: 0s;
        animation-duration: 24s;
    }

    .bubble:nth-child(2) {
        width: 340px;
        height: 340px;
        top: 45%;
        left: -10%;
        background: rgba(124, 58, 237, 0.16);
        animation-delay: 5s;
        animation-duration: 20s;
    }

    .bubble:nth-child(3) {
        width: 180px;
        height: 180px;
        bottom: 18%;
        right: 8%;
        background: rgba(99, 70, 229, 0.25);
        animation-delay: 8s;
        animation-duration: 18s;
    }

    .bubble:nth-child(4) {
        width: 260px;
        height: 260px;
        top: 15%;
        left: 12%;
        background: rgba(139, 92, 246, 0.2);
        animation-delay: 3s;
        animation-duration: 26s;
    }

    .bubble:nth-child(5) {
        width: 130px;
        height: 130px;
        bottom: 25%;
        left: 20%;
        background: rgba(79, 70, 229, 0.3);
        animation-delay: 10s;
        animation-duration: 16s;
    }

    .bubble:nth-child(6) {
        width: 380px;
        height: 380px;
        bottom: -12%;
        right: -4%;
        background: rgba(167, 139, 250, 0.14);
        animation-delay: 7s;
        animation-duration: 28s;
    }

/* Super Smooth Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-50px) translateX(40px) rotate(10deg) scale(1.05);
    }

    50% {
        transform: translateY(-90px) translateX(-30px) rotate(-8deg) scale(0.97);
    }

    75% {
        transform: translateY(-40px) translateX(50px) rotate(6deg) scale(1.03);
    }
}

.org-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

    /* Aapka Original CSS - Bilkul Same */
    .org-content h2 {
        font-family: 'IBM Plex Serif', serif;
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 32px;
        transform: translateY(30px);
        opacity: 0;
        transition: transform 0.8s ease, opacity 0.8s ease;
    }

    .org-content .lead {
        font-size: 22px;
        line-height: 1.6;
        margin-bottom: 48px;
        color: rgba(255,255,255,0.9);
        transform: translateY(30px);
        opacity: 0;
        transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 60px 0;
}

.service-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    position: relative;
    z-index: 2;
}

    .service-card:nth-child(1) {
        transition-delay: 0.1s;
    }

    .service-card:nth-child(2) {
        transition-delay: 0.2s;
    }

    .service-card:nth-child(3) {
        transition-delay: 0.3s;
    }

    .service-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 16px;
        color: #9F7AEA;
    }

    .service-card p {
        color: rgba(255,255,255,0.8);
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .service-card ul {
        list-style: none;
        font-size: 15px;
        color: rgba(255,255,255,0.7);
    }

    .service-card li {
        margin-bottom: 8px;
        padding-left: 24px;
        position: relative;
    }

        .service-card li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #7C3AED;
        }

.contact-cta {
    background: white;
    color: #1a1a1a;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.8s ease 0.5s, opacity 0.8s ease 0.5s;
    position: relative;
    z-index: 3;
}

    .contact-cta h3 {
        font-family: 'IBM Plex Serif', serif;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .contact-cta p {
        font-size: 18px;
        color: #666;
        margin-bottom: 32px;
    }

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

    .contact-form input,
    .contact-form textarea {
        padding: 14px 16px;
        border: 2px solid #e5e5e5;
        border-radius: 6px;
        font-size: 16px;
        font-family: 'IBM Plex Sans', sans-serif;
        transform: translateY(20px);
        opacity: 0;
    }

        .contact-form input:nth-child(1) {
            transition: transform 0.6s ease 0.6s, opacity 0.6s ease 0.6s;
        }

        .contact-form input:nth-child(2) {
            transition: transform 0.6s ease 0.7s, opacity 0.6s ease 0.7s;
        }

        .contact-form input:nth-child(3) {
            transition: transform 0.6s ease 0.8s, opacity 0.6s ease 0.8s;
        }

        .contact-form input:nth-child(4) {
            transition: transform 0.6s ease 0.9s, opacity 0.6s ease 0.9s;
        }

    .contact-form textarea {
        transition: transform 0.6s ease 1s, opacity 0.6s ease 1s;
        grid-column: 1 / -1;
        min-height: 120px;
        resize: vertical;
    }

    .contact-form button {
        transition: transform 0.6s ease 1.1s, opacity 0.6s ease 1.1s, background 0.3s;
        grid-column: 1 / -1;
        padding: 16px 32px;
        background: #7C3AED;
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transform: translateY(20px);
        opacity: 0;
    }

        .contact-form button:hover {
            background: #6B21A8;
        }

/* Mobile Responsive */
@media (max-width: 992px) {
    .organizations-section {
        padding: 80px 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .organizations-section {
        padding: 60px 20px;
    }

    .org-content h2 {
        font-size: 36px;
    }

    .lead {
        font-size: 18px;
    }

    .bubble {
        transform: scale(0.7);
        opacity: 0.6;
    }

        .bubble:nth-child(1) {
            width: 280px;
            height: 280px;
            top: -15%;
            right: -25%;
        }

        .bubble:nth-child(2) {
            width: 220px;
            height: 220px;
            left: -30%;
        }

        .bubble:nth-child(6) {
            width: 260px;
            height: 260px;
            bottom: -20%;
        }
}

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 60px 40px 40px;
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-brand {
            font-size: 24px;
            font-weight: 700;
            color: #7C3AED;
            margin-bottom: 16px;
        }

        .footer-desc {
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
        }

        .footer-links h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #7C3AED;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 32px;
            text-align: center;
            color: rgba(255,255,255,0.5);
        }
.footer-social {
    margin-top: 24px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.footer-social a:hover {
    background: #7C3AED;
    border-color: #7C3AED;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: white;
}
  
/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .hero-grid,
    .book-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .framework-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile Header Styles */
    nav {
        padding: 15px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        gap: 30px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
    }

        .nav-links.active {
            right: 0;
        }

        .nav-links li {
            width: 100%;
            text-align: center;
        }

        .nav-links a {
            display: block;
            padding: 15px 20px;
            font-size: 18px;
            border-bottom: 1px solid rgba(229, 229, 229, 0.3);
        }

    .btn-nav {
        margin: 20px auto;
        padding: 12px 30px;
        font-size: 16px;
        display: inline-block;
    }

    /* Mobile Menu Toggle Animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Mobile Content Adjustments */
    .hero h1 {
        font-size: 42px;
    }

    .hero .subheading {
        font-size: 20px;
    }

    .stats-row {
        flex-direction: column;
        gap: 24px;
    }

    .cta-group {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-visual {
        padding: 40px 30px;
    }

    .framework-grid,
    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .book-cover {
        height: 400px;
    }

    .book-features {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .author-photo {
        margin: 0 auto;
        width: 250px;
        height: 250px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .section-header p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 60px;
    }

        .hero h1 {
            font-size: 36px;
        }

        .hero .subheading {
            font-size: 18px;
        }

    .stat-number {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .insight-box,
    .contact-cta {
        padding: 40px 20px;
    }

    .book-cover {
        height: 350px;
    }

}
