/* Start custom CSS for html, class: .elementor-element-137b68d *//* ======================================================
   DUOLINGO VS BIORECALL: BLOG TITLE & INTRO (UPDATED CSS)
   ====================================================== */

.section-duo-real-intro {
    padding: 70px 20px;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.real-intro-container {
    max-width: 900px;
    margin: 0 auto;
}

/* --- Premium Animations Keyframes --- */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.08); opacity: 0.25; }
}

/* --- Blog Title Section (UPDATED FOR SINGLE LINE & ATTRACTIVENESS) --- */
.intro-header-box {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Flexbox updated to strictly keep everything in ONE LINE */
.intro-main-title {
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap; /* 🔥 FORCE SINGLE LINE 🔥 */
    white-space: nowrap; /* 🔥 NO TEXT WRAPPING 🔥 */
    gap: clamp(10px, 2vw, 20px); /* Adjusts gap based on screen size */
}

/* Premium Gradient Text for BioRecall */
.title-bio { 
    font-size: clamp(24px, 5vw, 46px); /* Auto-adjusts size */
    background: linear-gradient(90deg, #EF4444, #991b1b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 10px 20px rgba(239, 68, 68, 0.15);
}

/* Premium Gradient Text for Duolingo */
.title-duo { 
    font-size: clamp(24px, 5vw, 46px); /* Auto-adjusts size */
    background: linear-gradient(90deg, #22c55e, #15803d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 10px 20px rgba(34, 197, 94, 0.15);
}

/* Super Attractive 3D 'VS' Pill Badge */
.vs-badge-pill { 
    font-size: clamp(16px, 3vw, 22px); 
    color: #6B7280; 
    font-style: italic; 
    font-weight: 700;
    background: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid #e5e7eb;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.02), 0 8px 15px rgba(0,0,0,0.05);
}

.intro-sub-title {
    font-size: clamp(16px, 3vw, 22px);
    font-weight: 700;
    color: #4B5563;
}

/* --- Cards Stack --- */
.intro-card-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Duolingo Card */
.card-duolingo-style {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border-left: 6px solid #22c55e;
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.card-duolingo-style:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.1);
}

.card-duo-text { font-size: 18px; color: #4B5563; line-height: 1.7; margin-bottom: 20px; }

.card-duo-list {
    list-style: none; padding: 0; margin: 0 0 20px 0;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px;
}

.card-duo-list li {
    font-size: 16px; font-weight: 700; color: #1F2937; background: #f0fdf4;
    padding: 12px 18px; border-radius: 10px; border: 1px solid #bbf7d0;
    display: flex; align-items: center; gap: 10px; transition: transform 0.3s ease;
}

.card-duolingo-style:hover .card-duo-list li { transform: translateY(-2px); }
.card-duo-list li::before { content: '🦉'; font-size: 16px; }

/* BioRecall Card */
.card-biorecall-style {
    background: #111827;
    border-radius: 20px;
    padding: 40px;
    border-left: 6px solid #EF4444;
    color: #e5e7eb;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.08);
}

.card-biorecall-style:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 25px 50px rgba(239, 68, 68, 0.2);
}

.card-biorecall-style::after {
    content: ''; position: absolute; top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: 0; animation: pulseGlow 4s ease-in-out infinite;
}

.card-bio-text { font-size: 18px; line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 1; }

.bio-highlight-box {
    background: rgba(239, 68, 68, 0.1); border: 1px dashed rgba(239, 68, 68, 0.4);
    padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 20px;
    position: relative; z-index: 1; transition: background 0.3s ease;
}

.card-biorecall-style:hover .bio-highlight-box { background: rgba(239, 68, 68, 0.15); }

.bio-highlight-box h3 { color: #EF4444; font-size: 22px; font-weight: 800; margin: 0 0 5px 0; }
.bio-highlight-box p { color: #ffffff; font-size: 18px; font-weight: 600; margin: 0; }

/* Final Summary Box */
.intro-summary {
    background: #ffffff; text-align: center; padding: 20px; border-radius: 12px;
    font-size: 18px; font-weight: 700; color: #374151; border: 1px solid #e5e7eb;
    margin-top: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    opacity: 0; animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .card-duolingo-style, .card-biorecall-style { padding: 30px 20px; }
    .bio-highlight-box h3 { font-size: 18px; }
    .bio-highlight-box p { font-size: 16px; }
    .intro-summary { font-size: 16px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4794282 *//* ======================================================
   DUOLINGO VS BIORECALL: SECTION 2 (EFFECTIVENESS) - CSS
   ====================================================== */

.section-duo-consistency {
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%); /* Soft white to light green */
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.cons-container {
    max-width: 900px;
    margin: 0 auto;
}

/* --- Premium Animations --- */
@keyframes fadeInUpCons {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatPill {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* --- Heading Section --- */
.cons-header {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUpCons 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cons-heading {
    font-size: 40px;
    font-weight: 900;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -1px;
}

.cons-heading span {
    color: #22c55e; /* Duolingo Green */
    position: relative;
    display: inline-block;
}

/* Green underline highlight */
.cons-heading span::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; width: 100%; height: 6px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 10px;
}

/* --- Main Highlight Box (The Real Strength) --- */
.cons-strength-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 25px 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUpCons 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.cons-strength-box p {
    font-size: 19px;
    color: #4B5563;
    margin: 0;
    line-height: 1.6;
}

.cons-strength-box strong {
    color: #15803d; /* Darker green */
    font-size: 22px;
    font-weight: 800;
}

/* --- Features Layout (3D Floating Pills) --- */
.cons-features-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUpCons 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.cons-pill {
    background: #ffffff;
    color: #1F2937;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid #bbf7d0;
    box-shadow: 0 6px 12px rgba(34, 197, 94, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cons-pill:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: #22c55e;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.15);
}

.cons-pill-text {
    text-align: center;
    font-size: 16px;
    color: #6B7280;
    width: 100%;
    margin-bottom: 40px;
    font-weight: 600;
}

/* --- Why it Works Card --- */
.cons-why-card {
    background: #111827; /* Dark VIP contrast */
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.1);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUpCons 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

/* Green Glow inside Dark Card */
.cons-why-card::before {
    content: ''; position: absolute; top: -50px; left: -50px; width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.cons-why-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: #bbf7d0;
}

.cons-why-list {
    list-style: none; padding: 0; margin: 0 0 25px 0;
    position: relative; z-index: 1;
}

.cons-why-list li {
    font-size: 17px; font-weight: 600; color: #e5e7eb;
    margin-bottom: 15px; padding-left: 35px; position: relative;
}

.cons-why-list li::before {
    content: '✅'; position: absolute; left: 0; top: 0; font-size: 18px;
}

/* --- Final Summary Line --- */
.cons-footer-text {
    background: #ffffff;
    color: #1F2937;
    font-size: 18px;
    font-weight: 700;
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid #22c55e;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cons-heading { font-size: 32px; }
    .cons-strength-box p { font-size: 16px; }
    .cons-strength-box strong { font-size: 18px; }
    .cons-pill { font-size: 14px; padding: 10px 20px; }
    .cons-why-card { padding: 30px 20px; }
    .cons-why-title { font-size: 20px; }
    .cons-why-list li { font-size: 16px; }
    .cons-footer-text { font-size: 16px; padding: 15px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d7984bf *//* ======================================================
   DUOLINGO VS BIORECALL: SECTION 3 (ACADEMIC CHALLENGES)
   ====================================================== */

.section-exam-challenges {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #fef2f2 100%); /* Soft grey to very soft red */
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.exam-container {
    max-width: 950px;
    margin: 0 auto;
}

/* --- Animations --- */
@keyframes fadeUpExam {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- Heading --- */
.exam-header {
    text-align: center;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeUpExam 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.exam-heading {
    font-size: clamp(28px, 5vw, 42px); /* Responsive, avoids awkward breaking */
    font-weight: 900;
    color: #111827;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.exam-subtext {
    font-size: 19px;
    color: #4B5563;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0;
    animation: fadeUpExam 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* --- 3D Grid for Challenges vs Goals --- */
.exam-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* Card 1: The Struggle (Red/Dark Theme) */
.exam-card-struggle {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    border-top: 6px solid #EF4444; /* BioRecall Red */
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    animation: fadeUpExam 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.exam-card-struggle:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(239, 68, 68, 0.12);
}

.exam-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.exam-card-title span { font-size: 24px; }

.exam-list {
    list-style: none; padding: 0; margin: 0;
}

.exam-list li {
    font-size: 16px; font-weight: 600; color: #374151;
    background: #f9fafb; padding: 12px 15px;
    border-radius: 10px; margin-bottom: 12px;
    border: 1px solid #e5e7eb;
    display: flex; align-items: center; gap: 12px;
    transition: transform 0.3s ease;
}

.exam-card-struggle:hover .exam-list li { transform: translateX(5px); border-color: #fee2e2; }
.exam-list-red li::before { content: '⚠️'; font-size: 16px; }

/* Card 2: The Academic Goal (Deep Blue/Dark Theme) */
.exam-card-goal {
    background: #111827; /* Very Dark */
    color: #ffffff;
    border-radius: 20px;
    padding: 35px;
    border-top: 6px solid #3b82f6; /* Focus Blue */
    box-shadow: 0 15px 35px rgba(17, 24, 39, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    animation: fadeUpExam 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.exam-card-goal:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(17, 24, 39, 0.2);
}

.exam-card-goal .exam-card-title { color: #ffffff; }

.exam-card-goal .exam-list li {
    background: rgba(255, 255, 255, 0.05);
    color: #e5e7eb;
    border-color: rgba(255, 255, 255, 0.1);
}

.exam-card-goal:hover .exam-list li { transform: translateX(5px); border-color: rgba(59, 130, 246, 0.4); }
.exam-list-blue li::before { content: '🎯'; font-size: 16px; }

/* --- Final Bold Statement Banner --- */
.exam-final-banner {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeUpExam 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

/* Red Glow Effect Inside Banner */
.exam-final-banner::before {
    content: ''; position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.25) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.exam-final-text {
    position: relative;
    z-index: 1;
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.5;
}

.exam-final-text span {
    color: #EF4444; /* Highlighting memory retention in red */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .exam-grid { grid-template-columns: 1fr; gap: 20px; }
    .exam-card-struggle, .exam-card-goal { padding: 25px 20px; }
    .exam-final-banner { padding: 25px 20px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1e516b3 *//* ======================================================
   DUOLINGO VS BIORECALL: SECTION 4 (THE REAL PROBLEM)
   ====================================================== */

.section-real-problem {
    padding: 80px 20px;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.rp-container {
    max-width: 950px;
    margin: 0 auto;
}

/* --- Premium Animations --- */
@keyframes fadeUpRP {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- Header Section --- */
.rp-header {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUpRP 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.rp-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.rp-heading {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -1px;
}

/* --- Split 3D Grid --- */
.rp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Card 1: The Illusion of Effort */
.rp-card-effort {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    animation: fadeUpRP 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    position: relative;
    overflow: hidden;
}

.rp-card-effort::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
    background: #9CA3AF; /* Neutral Gray for just 'effort' */
}

.rp-card-effort:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.rp-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 15px;
}

.rp-list {
    list-style: none; padding: 0; margin: 0 0 20px 0;
}

.rp-list li {
    font-size: 16px; font-weight: 600; color: #4B5563;
    padding: 10px 15px; background: #f9fafb;
    border-radius: 10px; margin-bottom: 10px;
    display: flex; align-items: center; gap: 10px;
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease;
}

.rp-card-effort:hover .rp-list li { transform: translateX(5px); }
.list-effort li::before { content: '⏳'; font-size: 16px; }

.rp-card-text {
    font-size: 15px; color: #6B7280; line-height: 1.6; font-weight: 500;
}

.rp-alert-box {
    background: #fef2f2; border: 1px dashed #fca5a5;
    color: #b91c1c; padding: 15px; border-radius: 10px;
    font-size: 15px; font-weight: 600; margin-top: 15px; line-height: 1.5;
}

/* Card 2: The Hidden Reality */
.rp-card-reality {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #fee2e2;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    animation: fadeUpRP 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    position: relative;
    overflow: hidden;
}

.rp-card-reality::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
    background: #EF4444; /* Alert Red for the real problem */
}

.rp-card-reality:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.12);
}

.list-reality li {
    background: #fff1f2; color: #991b1b; border-color: #ffe4e6;
}
.rp-card-reality:hover .list-reality li { transform: translateX(5px); }
.list-reality li::before { content: '🔍'; font-size: 16px; }

/* --- Final Punchline Banner --- */
.rp-final-banner {
    background: #111827;
    border-radius: 16px;
    padding: 25px 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(17, 24, 39, 0.15);
    opacity: 0;
    animation: fadeUpRP 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    border-left: 6px solid #EF4444;
}

.rp-final-text {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 800;
    color: #e5e7eb;
    line-height: 1.5;
}

.rp-final-text span {
    color: #ffffff;
    background: linear-gradient(90deg, #EF4444, #f87171);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .rp-grid { grid-template-columns: 1fr; gap: 20px; }
    .rp-card-effort, .rp-card-reality { padding: 25px 20px; }
    .rp-final-banner { padding: 20px 15px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-54713f4 *//* ======================================================
   DUOLINGO VS BIORECALL: SECTION 5 (BIORECALL APPROACH)
   ====================================================== */

.section-biorecall-approach {
    padding: 90px 20px;
    background: #111827; /* Premium Dark Background */
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

/* Background Glow Effect */
.section-biorecall-approach::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.bio-app-container {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* --- Premium Animations --- */
@keyframes fadeUpBioApp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulseRedGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.2); }
    50% { box-shadow: 0 0 40px rgba(239, 68, 68, 0.4); }
}

/* --- Header --- */
.bio-app-header {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUpBioApp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.bio-app-heading {
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.bio-app-heading span {
    color: #EF4444; /* BioRecall Red */
}

/* --- VIP Simple Idea Box --- */
.bio-simple-idea-box {
    background: linear-gradient(135deg, #EF4444 0%, #b91c1c 100%);
    border-radius: 16px;
    padding: 30px 40px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.3);
    opacity: 0;
    animation: fadeUpBioApp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards, pulseRedGlow 4s infinite;
}

.bio-simple-idea-box p {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bio-simple-idea-box h3 {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}

/* --- Features 3D Grid --- */
.bio-app-intro {
    text-align: center;
    font-size: 19px;
    color: #9CA3AF;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUpBioApp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.bio-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeUpBioApp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.bio-feature-card {
    background: #1F2937;
    border: 1px solid #374151;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bio-feature-card:hover {
    transform: translateY(-5px);
    border-color: #EF4444;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.15);
}

.bio-feature-icon {
    font-size: 24px;
    background: rgba(239, 68, 68, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    color: #EF4444;
}

.bio-feature-text {
    font-size: 18px;
    font-weight: 700;
    color: #F3F4F6;
}

/* --- The Ultimate Goal Footer --- */
.bio-app-footer {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeUpBioApp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
    position: relative;
}

.bio-app-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 6px; height: 100%;
    background: #3b82f6; /* Blue accent for trust/balance */
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.bio-app-footer p {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    line-height: 1.6;
    margin: 0;
}

.bio-app-footer span {
    color: #6B7280;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .section-biorecall-approach { padding: 60px 20px; }
    .bio-features-grid { grid-template-columns: 1fr; }
    .bio-simple-idea-box { padding: 25px 20px; }
    .bio-app-footer { padding: 25px 20px; }
    .bio-app-footer p { font-size: 18px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c236910 *//* ======================================================
   DUOLINGO VS BIORECALL: SECTION 6 (COMPARISON)
   ====================================================== */

.section-comp-priorities {
    padding: 80px 20px;
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.comp-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* --- Premium Animations --- */
@keyframes fadeUpComp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- Header Section --- */
.comp-header {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeUpComp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.comp-badge {
    display: inline-block;
    background: #e5e7eb;
    color: #4B5563;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.comp-heading {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 900;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -1px;
}

/* --- 3D Comparison Grid --- */
.comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Base Card Style */
.comp-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
}

.comp-card:hover {
    transform: translateY(-8px);
}

.comp-card-title {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comp-card-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #6B7280;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comp-list {
    list-style: none; padding: 0; margin: 0;
}

.comp-list li {
    font-size: 17px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 15px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.comp-card:hover .comp-list li {
    transform: translateX(5px);
}

/* Duolingo Card (Green) */
.card-duo-focus {
    border: 1px solid #bbf7d0;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.05);
    animation: fadeUpComp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.card-duo-focus:hover { box-shadow: 0 25px 50px rgba(34, 197, 94, 0.12); }
.card-duo-focus .comp-card-title { color: #15803d; }
.card-duo-focus .comp-list li { border-left: 4px solid #22c55e; }
.card-duo-focus .comp-list li::before { content: '🌱'; font-size: 18px; }

/* BioRecall Card (Red) */
.card-bio-focus {
    border: 1px solid #fee2e2;
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.05);
    animation: fadeUpComp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.card-bio-focus:hover { box-shadow: 0 25px 50px rgba(239, 68, 68, 0.12); }
.card-bio-focus .comp-card-title { color: #991b1b; }
.card-bio-focus .comp-list li { border-left: 4px solid #EF4444; }
.card-bio-focus .comp-list li::before { content: '🧠'; font-size: 18px; }

/* --- Conclusion Banner --- */
.comp-conclusion {
    text-align: center;
    opacity: 0;
    animation: fadeUpComp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.comp-conclusion-text {
    font-size: 19px;
    font-weight: 500;
    color: #4B5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.comp-final-punchline {
    display: inline-block;
    background: #111827;
    color: #ffffff;
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 800;
    padding: 20px 35px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(17, 24, 39, 0.15);
    border-bottom: 4px solid #EF4444;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .comp-grid { grid-template-columns: 1fr; gap: 30px; }
    .comp-card { padding: 30px 20px; }
    .comp-list li { font-size: 16px; padding: 12px; }
    .comp-final-punchline { padding: 15px 25px; width: 100%; box-sizing: border-box; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d6336cc *//* ======================================================
   DUOLINGO VS BIORECALL: SECTION 7 (FUTURE OF LEARNING)
   ====================================================== */

.section-future-learning {
    padding: 90px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Subtle Futuristic Tech Glow */
.section-future-learning::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.fut-container {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* --- Premium Animations --- */
@keyframes fadeUpFut {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- Header --- */
.fut-header {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUpFut 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fut-heading {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

/* --- Traditional vs Reality (Top Section) --- */
.fut-reality-box {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeUpFut 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.fut-text {
    font-size: 19px;
    color: #4B5563;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.6;
}

.fut-pills-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.fut-pill {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #1F2937;
    font-size: 17px;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fut-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
    border-color: #d1d5db;
}

/* --- The Future System (3D Grid) --- */
.fut-grid-intro {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUpFut 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.fut-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeUpFut 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.fut-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fut-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.08); /* Soft blue hover glow */
    border-color: #bfdbfe;
}

.fut-card-icon {
    font-size: 28px;
    margin-bottom: 15px;
    display: inline-block;
}

.fut-card-text {
    font-size: 17px;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.4;
}

/* --- Final Vision Banner (BioRecall Spotlight) --- */
.fut-final-banner {
    background: #111827; /* Dark VIP theme for BioRecall mention */
    border-radius: 20px;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.15);
    border-bottom: 6px solid #EF4444; /* BioRecall Red Accent */
    opacity: 0;
    animation: fadeUpFut 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.fut-final-banner p {
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 800;
    color: #f9fafb;
    margin: 0;
    line-height: 1.6;
}

.fut-final-banner span {
    color: #EF4444;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .fut-heading { font-size: 32px; }
    .fut-text { font-size: 17px; }
    .fut-pill { font-size: 15px; padding: 10px 20px; }
    .fut-grid { grid-template-columns: 1fr; gap: 15px; }
    .fut-card { padding: 20px; }
    .fut-final-banner { padding: 25px 20px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c1b24ea *//* ======================================================
   DUOLINGO VS BIORECALL: SECTION 8 (FINAL THOUGHTS)
   ====================================================== */

.section-final-thoughts {
    padding: 80px 20px 120px 20px;
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.final-container {
    max-width: 850px;
    margin: 0 auto;
}

/* --- Premium Animations --- */
@keyframes fadeUpFinal {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatQuote {
    0%, 100% { transform: translateY(0); box-shadow: 0 25px 50px rgba(17, 24, 39, 0.15); }
    50% { transform: translateY(-8px); box-shadow: 0 35px 60px rgba(17, 24, 39, 0.25); }
}

/* --- Header Section --- */
.final-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUpFinal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.final-heading {
    font-size: 38px;
    font-weight: 900;
    color: #111827;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

/* --- Duolingo Recap --- */
.final-text-intro {
    font-size: 18px;
    color: #4B5563;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.6;
}

.final-pills-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.final-pill {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.05);
}

/* --- Academic Evolution --- */
.final-evolution {
    background: #f9fafb;
    border-left: 4px solid #3b82f6;
    padding: 20px 25px;
    border-radius: 12px;
    font-size: 17px;
    color: #374151;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.6;
}

/* --- The Core Message (Split Box) --- */
.final-core-message {
    text-align: center;
    margin-bottom: 20px;
}

.final-core-message p {
    font-size: 19px;
    color: #6B7280;
    margin-bottom: 10px;
    font-weight: 600;
}

.core-highlight-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.core-part-1 {
    background: #f3f4f6;
    color: #374151;
    padding: 12px 25px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
}

.core-part-2 {
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 800;
}

/* --- 🔥 THE FINAL QUOTE (VIP BLOCKQUOTE) 🔥 --- */
.final-quote-box {
    background: #111827;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeUpFinal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards, floatQuote 6s ease-in-out infinite;
    border-bottom: 6px solid #EF4444; /* BioRecall Red Baseline */
}

/* Glowing effect inside the quote box */
.final-quote-box::before {
    content: '';
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.final-quote-text {
    position: relative;
    z-index: 1;
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 900;
    color: #f9fafb;
    line-height: 1.5;
    font-style: italic;
}

.final-quote-text span {
    color: #EF4444;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .final-card { padding: 35px 20px; }
    .final-heading { font-size: 32px; }
    .final-quote-box { padding: 40px 25px; }
    .core-part-1 { font-size: 16px; }
    .core-part-2 { font-size: 18px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3633007 *//* ======================================================
   DUOLINGO VS BIORECALL: FINAL CTA BUTTON (CSS)
   ====================================================== */

.duo-final-cta-wrapper {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 30px;
    opacity: 0;
    /* Entry animation */
    animation: fadeUpFinal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.duo-explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #EF4444 0%, #b91c1c 100%);
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 50px;
    position: relative;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3), inset 0 3px 0 rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.duo-explore-btn:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.4), inset 0 3px 0 rgba(255,255,255,0.2);
    color: #ffffff;
}

.duo-explore-btn span {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.duo-explore-btn:hover span {
    transform: translateX(5px); /* Arrow aage ki taraf move karega */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .duo-explore-btn {
        font-size: 18px;
        padding: 15px 35px;
        width: 100%;
        box-sizing: border-box;
        max-width: 300px;
    }
}/* End custom CSS */