/* Mind and Body Resilience - CSS Variables & Base Styles */

:root {
    /* Color Palette */
    --clr-soft-blue: #F0F9FF;
    /* Brighter, airier blue */
    --clr-primary-blue: #0284C7;
    /* Livelier blue */
    --clr-dark-blue: #0F172A;
    --clr-sea-green: #10B981;
    /* More vibrant energetic green */
    --clr-dark-green: #064E3B;
    --clr-white: #FFFFFF;
    --clr-warm-yellow: #F59E0B;
    --clr-warm-orange: #EA580C;
    --clr-orange: #EA580C;
    --clr-danger-red: #EF4444;

    /* Typography */
    /* English: Outfit, Marathi: Noto Sans Devanagari */
    --font-primary: 'Outfit', 'Noto Sans Devanagari', sans-serif;

    /* Sizing & Spacing */
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-6: 3rem;
    --space-8: 4rem;

    /* Shadows & Radii */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(237, 137, 54, 0.6);

    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--clr-soft-blue);
    color: var(--clr-dark-blue);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-dark-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo i {
    color: var(--clr-sea-green);
    font-size: 1.8rem;
}

.nav-btn {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
}

/* Base Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.text-danger {
    color: var(--clr-danger-red);
}

.text-success {
    color: var(--clr-sea-green);
}

.text-primary {
    color: var(--clr-primary-blue);
}

.mt-3 {
    margin-top: var(--space-3);
}

.mt-4 {
    margin-top: var(--space-4);
}

.pb-4 {
    padding-bottom: var(--space-4);
}

.bg-light {
    background-color: var(--clr-white);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--clr-warm-yellow) 0%, var(--clr-warm-orange) 100%);
    color: var(--clr-white);
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-subtext {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: none;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--clr-white);
    color: var(--clr-primary-blue);
    border: 2px solid var(--clr-primary-blue);
    font-weight: 600;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--clr-primary-blue);
    color: var(--clr-white);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(237, 137, 54, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(237, 137, 54, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(237, 137, 54, 0);
    }
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulseDot {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.pulse-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--clr-danger-red);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulseDot 1.5s infinite;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    /* Extra padding for navbar */
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FFEDD5 0%, #D1FAE5 50%, #E0F2FE 100%);
    overflow: hidden;
}

/* Abstract Background Pattern behind Hero for Scientific yet Holistic vibe */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle at 20% 40%, rgba(245, 158, 11, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(16, 185, 129, 0.15) 0%, transparent 40%);
    z-index: 0;
}

/* Floating Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    font-size: 4rem;
    animation: floating-icon 8s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 10%;
    color: rgba(245, 158, 11, 0.4);
    animation-delay: 0s;
    font-size: 3rem;
}

.icon-2 {
    top: 15%;
    right: 15%;
    color: rgba(245, 158, 11, 0.3);
    animation-delay: 2s;
    font-size: 5rem;
}

.icon-3 {
    bottom: 25%;
    left: 15%;
    color: rgba(16, 185, 129, 0.35);
    animation-delay: 4s;
    font-size: 4rem;
}

.icon-4 {
    bottom: 20%;
    right: 10%;
    color: rgba(2, 132, 199, 0.25);
    animation-delay: 1s;
    font-size: 6rem;
}

.icon-5 {
    top: 50%;
    left: 50%;
    color: rgba(234, 88, 12, 0.3);
    animation-delay: 3s;
    font-size: 2.5rem;
}

@keyframes floating-icon {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-30px) rotate(15deg) scale(1.1);
    }

    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    z-index: 2;
    position: relative;
}

.hero-text-area {
    flex: 1 1 500px;
}

.hero-image-area {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.pre-headline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-dark-blue);
    background: var(--clr-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--clr-danger-red);
}

.main-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--clr-dark-blue);
    margin-bottom: 1rem;
}

.highlight {
    background: linear-gradient(120deg, var(--clr-sea-green), var(--clr-primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.sub-headline {
    font-size: 1.25rem;
    font-weight: 400;
    color: #4A5568;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.trust-indicators {
    margin-top: 1rem;
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #4A5568;
    font-weight: 600;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-indicators i {
    color: var(--clr-sea-green);
    font-size: 1.2rem;
}

/* Image Transition Slider Widget */
.transition-card {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 8px solid var(--clr-white);
}

.transition-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-stress {
    z-index: 1;
    filter: grayscale(40%) contrast(1.2);
}

.img-calm {
    z-index: 2;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    transition: clip-path 0.1s;
}

.slider-reveal {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    transform: translateY(-50%);
    z-index: 3;
    opacity: 0.9;
    cursor: ew-resize;
    height: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

.slider-reveal:focus {
    outline: none;
}

/* Customizing the slider thumb for Safari and Chrome */
.slider-reveal::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-primary-blue);
    border: 3px solid var(--clr-white);
    box-shadow: var(--shadow-md);
    cursor: grab;
    margin-top: -15px;
    /* Offset to center vertically */
}

/* Customizing the slider track for Safari and Chrome */
.slider-reveal::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

/* Customizing the slider thumb for Firefox */
.slider-reveal::-moz-range-thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-primary-blue);
    border: 3px solid var(--clr-white);
    box-shadow: var(--shadow-md);
    cursor: grab;
}

/* Customizing the slider track for Firefox */
.slider-reveal::-moz-range-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.slider-reveal:active::-webkit-slider-thumb {
    cursor: grabbing;
    background: var(--clr-sea-green);
    transform: scale(1.1);
}

.slider-reveal:active::-moz-range-thumb {
    cursor: grabbing;
    background: var(--clr-sea-green);
    transform: scale(1.1);
}

.card-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 4;
    pointer-events: none;
    letter-spacing: 1px;
}

/* Sections Global */
section {
    padding: 5rem 0;
}

.section-badge {
    background-color: var(--clr-soft-blue);
    color: var(--clr-primary-blue);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    color: var(--clr-dark-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4A5568;
    max-width: 600px;
    margin: 0 auto;
}

/* Problem Identification Section */
.problem-section {
    background: linear-gradient(135deg, #FFF1F2 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.05) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pain-card {
    background: var(--clr-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--clr-danger-red);
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    color: var(--clr-danger-red);
    margin-bottom: 1rem;
}

.pain-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--clr-dark-blue);
}

.pain-card p {
    font-size: 0.95rem;
    color: #4A5568;
}

.statement-box {
    background: #FFF5F5;
    border: 1px solid #FED7D7;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    color: #C53030;
    font-weight: 500;
}

/* USP Section (Science + Ancient Wisdom) */
.usp-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%);
    position: relative;
    overflow: hidden;
}

.usp-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    border-radius: 50%;
    z-index: 0;
}

.usp-layout {
    position: relative;
    z-index: 1;
}

.flex-columns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.w-50 {
    flex: 1 1 45%;
}

.usp-list {
    list-style: none;
    margin-top: 2rem;
}

.usp-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.usp-icon {
    background: var(--clr-soft-blue);
    color: var(--clr-primary-blue);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.usp-content h4 {
    font-size: 1.25rem;
    color: var(--clr-dark-blue);
    margin-bottom: 0.5rem;
}

.usp-content p {
    color: #4A5568;
    font-size: 0.95rem;
}

.usp-image {
    position: relative;
}

.rounded-img {
    border-radius: var(--radius-xl);
}

.floating-img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-badge {
    position: absolute;
    background: var(--clr-white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-dark-green);
    z-index: 10;
}

.float-badge i {
    color: var(--clr-sea-green);
    font-size: 1.5rem;
}

.top-right-badge {
    top: 5%;
    right: -10px;
    animation: float 4s ease-in-out infinite reverse;
}

.top-left-badge {
    top: 15%;
    left: -20px;
    animation: float 6s ease-in-out infinite;
}

.center-right-badge {
    top: 45%;
    right: -30px;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

.bottom-left-badge {
    bottom: 15%;
    left: -20px;
    animation: float 7s ease-in-out infinite reverse;
    animation-delay: 2s;
}

.bottom-right-badge {
    bottom: 5%;
    right: 10px;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Syllabus Section / Timeline */
.syllabus-section {
    background: linear-gradient(180deg, #F0FDF4 0%, #F0F9FF 100%);
    position: relative;
}

.syllabus-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.04) 0%, transparent 70%);
    top: 20%;
    left: -200px;
    border-radius: 50%;
}

.syllabus-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
    bottom: 10%;
    right: -150px;
    border-radius: 50%;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--clr-sea-green);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
    z-index: 0;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
    z-index: 1;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    right: -20px;
    background-color: var(--clr-dark-blue);
    border: 4px solid var(--clr-sea-green);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -20px;
}

.timeline-content {
    padding: 1.5rem;
    background-color: var(--clr-white);
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    color: var(--clr-primary-blue);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #4A5568;
    font-size: 0.95rem;
}

/* Before & After */
.transformation-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #FEFCE8 100%);
    position: relative;
    overflow: hidden;
}

.transformation-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.before-after-box {
    display: flex;
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.before-state,
.after-state {
    flex: 1;
    padding: 3rem;
}

.before-state {
    background-color: #FFF5F5;
}

.after-state {
    background-color: #F0FFF4;
}

.before-state h4,
.after-state h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.before-state h4 {
    color: #C53030;
}

.after-state h4 {
    color: #276749;
}

.before-state ul,
.after-state ul {
    list-style: none;
}

.before-state li,
.after-state li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #2D3748;
}

.before-state i,
.after-state i {
    font-size: 1.5rem;
}

.arrow-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    font-size: 2rem;
    color: var(--clr-primary-blue);
    z-index: 2;
}

.family-note {
    max-width: 600px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: var(--clr-soft-blue);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--clr-primary-blue);
}

/* Footer CTA */
.footer-cta {
    background: var(--clr-dark-blue);
    color: var(--clr-white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Abstract shapes to add visual interest */
.footer-cta::before,
.footer-cta::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    opacity: 0.1;
}

.footer-cta::before {
    background: var(--clr-sea-green);
    top: -100px;
    left: -100px;
}

.footer-cta::after {
    background: var(--clr-warm-yellow);
    bottom: -100px;
    right: -100px;
}

.footer-headline {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.footer-subtext {
    font-size: 1.25rem;
    color: #A0AEC0;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.glow-btn {
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
    position: relative;
    z-index: 2;
}

.scarcity-text {
    color: #E2E8F0;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    position: relative;
    z-index: 2;
}

/* Event Details Section */
.event-details-section {
    background: transparent;
    padding: 2rem 0;
    margin-top: -3rem;
    /* Overlap hero slightly */
    position: relative;
    z-index: 10;
}

.event-info-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.event-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 250px;
    border-top: 4px solid var(--clr-orange);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-icon {
    font-size: 2.5rem;
    color: var(--clr-orange);
    background: rgba(245, 158, 11, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.event-text {
    text-align: left;
}

.event-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--clr-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-text p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-dark-blue);
}

/* Logical vs Emotional Section */
.duality-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.duality-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.duality-card {
    background: var(--clr-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    flex: 1;
    max-width: 400px;
    text-align: left;
    position: relative;
    transition: var(--transition);
    border-top: 5px solid transparent;
}

.duality-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.logical-card {
    border-top-color: var(--clr-primary-blue);
}

.logical-card .duality-icon {
    color: var(--clr-primary-blue);
    background: rgba(2, 132, 199, 0.1);
}

.emotional-card {
    border-top-color: var(--clr-danger-red);
}

.emotional-card .duality-icon {
    color: var(--clr-danger-red);
    background: rgba(244, 63, 94, 0.1);
}

.duality-icon {
    font-size: 3rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.duality-divider {
    height: 2px;
    background: #E2E8F0;
    margin: 1rem 0;
    width: 50px;
}

.duality-vs {
    background: var(--clr-dark-blue);
    color: var(--clr-white);
    font-weight: 700;
    font-size: 1.25rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--clr-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card .stars {
    color: #FBBF24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.2rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--clr-text);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonial-card strong {
    color: var(--clr-dark-blue);
    font-size: 1.1rem;
}

/* Coach Section */
.coach-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #FEFCE8 100%);
    padding: 5rem 0;
}

.coach-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.coach-image {
    flex: 1;
    position: relative;
}

.coach-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 500px;
    height: 500px;
    object-fit: cover;
    object-position: top center;
}

.coach-experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--clr-orange);
    color: var(--clr-white);
    padding: 1.5rem;
    border-radius: 50%;
    font-weight: 700;
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation: floating-icon 4s ease-in-out infinite;
}

.coach-text {
    flex: 1;
}

.coach-subtitle {
    font-size: 1.25rem;
    color: var(--clr-sea-green);
    margin-bottom: 1rem;
}

.coach-credentials {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.coach-credentials li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-dark-blue);
}

.coach-credentials i {
    font-size: 1.4rem;
}

/* Animated Floating Background Elements for Lower Sections */
.bg-animated-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Problem Section Icons */
.problem-icon-1 {
    top: 10%;
    right: 10%;
    color: rgba(244, 63, 94, 0.15);
    animation-delay: 1s;
    font-size: 5rem;
}

.problem-icon-2 {
    bottom: 20%;
    left: 5%;
    color: rgba(244, 63, 94, 0.1);
    animation-delay: 3s;
    font-size: 4rem;
}

/* USP Section Icons */
.usp-icon-1 {
    top: 20%;
    left: 10%;
    color: rgba(16, 185, 129, 0.15);
    animation-delay: 0s;
    font-size: 6rem;
}

.usp-icon-2 {
    bottom: 30%;
    right: 15%;
    color: rgba(16, 185, 129, 0.1);
    animation-delay: 2s;
    font-size: 5rem;
}

.usp-icon-3 {
    top: 40%;
    right: 5%;
    color: rgba(2, 132, 199, 0.15);
    animation-delay: 4s;
    font-size: 3rem;
}

/* Syllabus Icons */
.syllabus-icon-1 {
    top: 15%;
    right: 10%;
    color: rgba(2, 132, 199, 0.1);
    animation-delay: 1.5s;
    font-size: 4rem;
}

.syllabus-icon-2 {
    bottom: 15%;
    left: 10%;
    color: rgba(2, 132, 199, 0.15);
    animation-delay: 3.5s;
    font-size: 6rem;
}

/* Transform Icons */
.transform-icon-1 {
    top: 20%;
    left: 15%;
    color: rgba(245, 158, 11, 0.15);
    animation-delay: 0s;
    font-size: 4rem;
}

.transform-icon-2 {
    bottom: 20%;
    right: 10%;
    color: rgba(245, 158, 11, 0.2);
    animation-delay: 2.5s;
    font-size: 5rem;
}

.transform-icon-3 {
    top: 50%;
    right: 20%;
    color: rgba(245, 158, 11, 0.1);
    animation-delay: 1s;
    font-size: 6rem;
}

/* Make sure container content stays above animations */
.section .container {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .main-headline {
        font-size: 3rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .pre-headline {
        margin: 0 auto 1.5rem;
    }

    .trust-indicators {
        justify-content: center;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-icon {
        left: 11px !important;
    }

    .before-after-box {
        flex-direction: column;
    }

    .arrow-divider {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .duality-container {
        flex-direction: column;
    }

    .duality-vs {
        margin: 1rem 0;
    }

    .usp-layout {
        flex-direction: column;
    }

    .coach-layout {
        flex-direction: column;
        text-align: center;
    }

    .coach-credentials li {
        justify-content: center;
    }

    .hero-bg-elements .float-icon {
        transform: translate(-50%, -50%) rotate(90deg);
    }
}

@media screen and (max-width: 768px) {
    .main-headline {
        font-size: 2.2rem;
    }

    .sub-headline {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .transition-card {
        width: 300px;
        height: 300px;
    }

    .w-50 {
        flex: 1 1 100%;
    }

    .before-state,
    .after-state {
        padding: 2rem;
    }

    .footer-headline {
        font-size: 2rem;
    }

    /* Mobile Navbar Fixes */
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 0.6rem;
    }

    .brand-logo {
        font-size: 1.35rem;
        justify-content: center;
    }

    .nav-btn {
        display: inline-block;
        width: 100%;
        max-width: 320px;
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        line-height: 1.3;
        text-align: center;
    }
}

/* Sub-Footer Styles */
.sub-footer {
    background: #0f172a;
    /* Dark Blue */
    color: #cbd5e1;
    padding: 3rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    color: var(--clr-white);
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--clr-orange);
    color: var(--clr-white);
    transform: translateY(-3px);
}

.footer-security {
    font-weight: 600;
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.05rem;
}

.footer-security i {
    color: #10B981;
    /* Sea Green */
    font-size: 1.25rem;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.8rem;
    color: #94a3b8;
    /* Slate gray */
}

.footer-disclaimer strong,
.footer-disclaimer em {
    color: #cbd5e1;
}