:root {
    --bg-white: #ffffff;
    --bg-section: #f8f9fd;
    --bg-purple: #6c5ce7;
    --bg-purple-dark: #5a4ad1;
    --bg-footer: #1a0533;
    --accent-amber: #ff9f43;
    --accent-amber-light: #ffb800;
    --accent-pink: #e84393;
    --accent-green: #00b894;
    --text-dark: #2d3436;
    --text-body: #000000;
    --text-muted: #000000;
    --text-white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    --font-heading: "Fredoka One", cursive, sans-serif;
    --font-body: "Nunito", sans-serif;
    --max-width: 1280px;
}
*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}
body {
    font-family: var(--font-body);
    background: var(--bg-white);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}
p {
    color: #000;
    font-size: 18px;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-dark);
}
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}
.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.section-subtitle {
    text-align: center;
    color: var(--text-body);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem max(5%, calc((100% - var(--max-width)) / 2 + 20px));
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px #00000005;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    padding: 0.8rem max(5%, calc((100% - var(--max-width)) / 2 + 20px));
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px #6c5ce70d;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 10px #6c5ce726;
    transition: transform 0.3s ease;
}
.logo:hover .nav-logo-img {
    transform: scale(1.05) rotate(-3deg);
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--bg-purple);
    line-height: 1.1;
}
.logo-tagline {
    font-size: 0.85rem;
    color: var(--text-body);
    margin-top: 1px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.nav-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}
.nav-links a {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 10px 15px;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}
.nav-links a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bg-purple);
    transition: width 0.3s ease;
}
.nav-links a:hover {
    color: var(--bg-purple);
}
.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}
.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-purple);
    color: #fff !important;
    padding: 25px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-bottom: none !important;
    position: relative;
    animation:
        btnFloat 3s ease-in-out infinite,
        btnGlow 3s ease-in-out infinite,
        btnHue 9s linear infinite;
    will-change: transform, filter;
    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}
.btn-download:hover {
    animation-play-state: paused;
    transform: translateY(-4px) scale(1.05) !important;
    filter: brightness(1.15) hue-rotate(0deg) !important;
    box-shadow: 0 12px 32px #6c5ce78c !important;
}
.btn-download svg {
    animation: iconBounce 1.6s ease-in-out infinite;
    will-change: transform;
    flex-shrink: 0;
    margin-right: 6px;
}
.btn-download:hover svg {
    animation-play-state: paused;
    transform: translateY(3px);
}
.btn-download:after {
    display: none !important;
}
@keyframes btnFloat {
    0%,
    to {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}
@keyframes btnGlow {
    0%,
    to {
        box-shadow:
            0 4px 14px #6c5ce766,
            0 0 #6c5ce74d;
    }
    50% {
        box-shadow:
            0 10px 28px #6c5ce78c,
            0 0 0 10px #6c5ce700;
    }
}
@keyframes btnHue {
    0% {
        filter: hue-rotate(0deg) saturate(1);
    }
    20% {
        filter: hue-rotate(160deg) saturate(1.15);
    }
    45% {
        filter: hue-rotate(270deg) saturate(1.1);
    }
    70% {
        filter: hue-rotate(40deg) saturate(1.2);
    }
    to {
        filter: hue-rotate(360deg) saturate(1);
    }
}
@keyframes iconBounce {
    0%,
    to {
        transform: translateY(0);
    }
    30% {
        transform: translateY(4px);
    }
    55% {
        transform: translateY(-2px);
    }
    75% {
        transform: translateY(2px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .btn-download,
    .btn-download svg {
        animation: none;
        transform: none;
        box-shadow: 0 4px 14px #6c5ce759;
    }
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: 0.3s;
}
.hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 7rem 5% 5rem;
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(245, 243, 255, 0.1) 100%),
        url(/assets_images/bg1.webp) center / cover no-repeat;
    background-color: #fafafa;
    position: relative;
}
.hero-content {
    flex: 1;
    z-index: 2;
}
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    position: relative;
    overflow: hidden;
    cursor: default;
    animation:
        badgeFloat 3.6s ease-in-out infinite,
        badgeColors 8s linear infinite;
    background: rgba(255, 190, 11, 0.12);
    color: #b45309;
    border: 1.5px solid rgba(255, 190, 11, 0.4);
    box-shadow: 0 4px 18px #ffbe0b26;
    will-change: transform, background, color, border-color;
}
.hero-badge:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
    background-size: 200% 100%;
    animation: badgeShimmer 2.8s linear infinite;
    border-radius: inherit;
    pointer-events: none;
}
@keyframes badgeFloat {
    0%,
    to {
        transform: translateY(0) scale(1);
    }
    30% {
        transform: translateY(-6px) scale(1.03);
    }
    60% {
        transform: translateY(-3px) scale(1.01);
    }
}
@keyframes badgeShimmer {
    0% {
        background-position: -100% 0;
    }
    to {
        background-position: 200% 0;
    }
}
@keyframes badgeColors {
    0%,
    to {
        background: rgba(255, 190, 11, 0.12);
        color: #b45309;
        border-color: #ffbe0b73;
        box-shadow: 0 4px 18px #ffbe0b33;
    }
    25% {
        background: rgba(232, 67, 147, 0.1);
        color: #be185d;
        border-color: #e8439361;
        box-shadow: 0 4px 18px #e8439333;
    }
    50% {
        background: rgba(108, 92, 231, 0.1);
        color: #4f46e5;
        border-color: #6c5ce761;
        box-shadow: 0 4px 18px #6c5ce733;
    }
    75% {
        background: rgba(0, 184, 148, 0.1);
        color: #065f46;
        border-color: #00b89461;
        box-shadow: 0 4px 18px #00b89433;
    }
}
@media (prefers-reduced-motion: reduce) {
    .hero-badge {
        animation: none;
        background: rgba(255, 190, 11, 0.12);
        color: #b45309;
        border-color: #ffbe0b66;
    }
    .hero-badge:before {
        animation: none;
    }
}
.hero h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #0c1530;
}
.hero h1 .accent {
    color: var(--accent-pink);
}
.hero-desc {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 2rem;
    max-width: 500px;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-purple);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-primary:hover {
    background: var(--bg-purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #6c5ce766;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--text-dark);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-outline:hover {
    border-color: var(--bg-purple);
    color: var(--bg-purple);
}
.hero .btn-outline {
    background: transparent;
    color: var(--bg-purple);
    border-color: var(--bg-purple);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}
.hero .btn-outline:hover {
    background: var(--bg-purple);
    color: #fff;
    border-color: var(--bg-purple);
}
.hero .hero-content > p:not(.hero-desc) {
    color: var(--text-muted) !important;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 0.75rem !important;
}
.store-badges {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
}
.store-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s;
}
.store-badge:hover {
    transform: translateY(-2px);
}
.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.badge-text span {
    font-size: 0.6rem;
    text-transform: uppercase;
    opacity: 0.8;
}
.badge-text strong {
    font-size: 0.95rem;
    font-family: var(--font-heading);
}
.hero-mockup {
    max-width: 560px;
    width: 100%;
    object-fit: contain;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
}
.trust-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-radius: 28px;
    padding: 1.8rem 3rem;
    margin: -4rem auto 3rem;
    max-width: var(--max-width);
    box-shadow: 0 10px 40px #0000000a;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
    width: 90%;
}
.trust-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex: 1;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.trust-card:hover {
    transform: translateY(-4px);
}
.trust-card:hover .trust-icon-container {
    transform: scale(1.12) rotate(-4deg);
}
.trust-card-anim {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--card-delay, 0ms);
}
.trust-card-anim.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.trust-card:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(0, 0, 0, 0.06);
}
.trust-icon-container {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.trust-icon-container svg {
    width: 24px;
    height: 24px;
}
.icon-downloads {
    background: rgba(0, 184, 148, 0.07);
    color: #00b894;
}
.icon-parents {
    background: rgba(232, 67, 147, 0.07);
    color: #e84393;
}
.icon-rating {
    background: rgba(255, 159, 67, 0.07);
    color: #ff9f43;
}
.icon-categories {
    background: rgba(108, 92, 231, 0.07);
    color: #6c5ce7;
}
.trust-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.trust-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--bg-purple);
    line-height: 1.2;
    transition: text-shadow 0.3s ease;
}
.trust-number.counting {
    animation: counterGlow 0.4s ease-in-out infinite alternate;
}
@keyframes counterGlow {
    0% {
        text-shadow: 0 0 0px transparent;
    }
    to {
        text-shadow: 0 0 12px rgba(108, 92, 231, 0.45);
    }
}
.trust-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}
@media (prefers-reduced-motion: reduce) {
    .trust-card-anim {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .trust-number.counting {
        animation: none;
    }
}
.video-section {
    padding: 3.5rem 0;
    background: var(--bg-white);
}
.video-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.video-frame {
    flex: 1.1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    box-shadow: 0 8px 40px #6c5ce740;
    border: 10px solid #3d1268;
    background: #000;
}
.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s;
}
.hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s;
}
.video-frame:hover .hover-video {
    opacity: 1;
}
.video-frame:hover .video-thumbnail,
.video-frame:hover .play-overlay {
    opacity: 0;
}
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.15);
    transition: opacity 0.5s;
}
.play-btn {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0 10px #ffffff40;
    animation: pulse 2s infinite;
}
.play-btn svg {
    fill: var(--bg-purple);
    width: 22px;
    margin-left: 4px;
}
@keyframes pulse {
    0%,
    to {
        box-shadow: 0 0 0 10px #ffffff40;
    }
    50% {
        box-shadow: 0 0 0 20px #ffffff14;
    }
}
.video-controls-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
    padding: 4px 10px 6px;
}
.vc-progress-wrap {
    margin-bottom: 4px;
}
.vc-progress-track {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}
.vc-progress-fill {
    width: 38%;
    height: 100%;
    background: #e53935;
    border-radius: 3px;
}
.vc-progress-thumb {
    width: 10px;
    height: 10px;
    background: #e53935;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 38%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 2px #e539354d;
}
.vc-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.vc-left,
.vc-right {
    display: flex;
    align-items: center;
    gap: 6px;
}
.vc-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    display: flex;
    align-items: center;
    opacity: 0.9;
}
.vc-time {
    font-size: 0.65rem;
    color: #fff;
    font-family: var(--font-body);
    white-space: nowrap;
}
.doodle-airplane {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 90px;
    height: 90px;
    opacity: 0.7;
    pointer-events: none;
}
.video-content {
    flex: 1;
    position: relative;
}
.video-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.video-content p {
    margin-bottom: 1.5rem;
}
.video-progress {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}
.progress-dot.active {
    background: var(--bg-purple);
}
.popular-section {
    padding: 4rem 0;
    background: var(--bg-white);
}
.popular-grid {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.pop-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: var(--radius-md);
    padding: 0.6rem 0.8rem;
    min-width: 100px;
    transition: all 0.3s;
    cursor: pointer;
}
.pop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--bg-purple);
}
.pop-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.pop-card span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}
.pop-card.more {
    background: var(--bg-purple);
    border-color: var(--bg-purple);
    color: #fff;
}
.pop-card.more span {
    color: #fff;
}
.pop-card.more .more-count {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
}
.view-all-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--bg-purple);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 1rem;
    transition: gap 0.3s;
}
.view-all-link:hover {
    gap: 8px;
}
.explore-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #ede9fe 0%, #f3e8ff 100%);
}
.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.3rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.cat-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.cat-card span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}
.cat-card.more-card {
    background: var(--accent-amber);
    color: #fff;
    justify-content: center;
}
.cat-card.more-card .more-count {
    font-family: var(--font-heading);
    font-size: 1.8rem;
}
.cat-card.more-card span {
    color: #fff;
    font-weight: 700;
}
.explore-cta {
    display: flex;
    justify-content: center;
}
.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-purple);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-explore:hover {
    background: var(--bg-purple-dark);
    transform: translateY(-2px);
}
.journey-section {
    padding: 3rem 0;
    background: var(--bg-white);
}
.journey-title {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}
.journey-arrow-left,
.journey-arrow-right {
    color: var(--bg-purple);
    font-size: 1.3rem;
    font-weight: 400;
}
.journey-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}
.journey-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: nowrap;
}
.journey-step {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    padding: 1rem 1.2rem;
    box-shadow: 0 4px 20px #0000000d;
    border: 1px solid rgba(0, 0, 0, 0.04);
    gap: 0.8rem;
    flex: 1;
    min-width: 0;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.journey-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px #00000014;
}
.step-wrap {
    margin-bottom: 0;
    flex-shrink: 0;
}
.step-circle {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    position: relative;
    box-shadow: inset 0 -2px #0000000d;
}
.step-circle .step-num {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px #00000026;
    border: 2px solid #fff;
}
.step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}
.journey-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}
.journey-step p {
    font-size: 0.76rem;
    color: var(--text-body);
    line-height: 1.3;
    margin: 0;
    max-width: none;
}
.step-arrow {
    display: flex;
    align-items: center;
    color: var(--bg-purple);
    font-size: 1.3rem;
    padding: 0 0.5rem;
    margin-bottom: 1.5rem;
}
.parents-section {
    padding: 3rem 0;
    background: var(--bg-section);
}
.parents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.parent-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 12px #0000000f;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.parent-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.parent-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.parent-card-body {
    flex: 1;
}
.parent-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}
.parent-card p {
    font-size: 0.8rem;
    color: var(--text-body);
    line-height: 1.4;
}
.testimonials-section {
    padding: 3rem 0;
    background: var(--bg-white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.testimonial-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: 0 2px 12px #0000000f;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.testimonial-quote {
    font-size: 3rem;
    color: #ccc;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}
.testimonial-text {
    font-size: 0.95rem;
    font-style: normal;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    line-height: 1.6;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}
.author-info {
    flex: 1;
}
.author-avatar {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #f0f0f0;
}
.author-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}
.author-stars {
    color: var(--accent-amber-light);
    font-size: 1rem;
    letter-spacing: 1px;
}
.faq-section {
    padding: 3rem 0;
    background: var(--bg-section);
}
.faq-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.8rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}
.faq-title-deco {
    color: var(--bg-purple);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}
.faq-layout {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px #00000012;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.5rem 2rem;
}
.faq-mascot-wrap {
    flex-shrink: 0;
    width: 130px;
    display: flex;
    align-items: flex-end;
}
.faq-mascot-img {
    width: 130px;
    height: auto;
    display: block;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    flex: 1;
}
.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:nth-child(odd) {
    border-right: 1px solid #f0f0f0;
    padding-right: 1rem;
}
.faq-item:nth-child(2n) {
    padding-left: 1rem;
}
.faq-item:nth-last-child(-n + 2) {
    border-bottom: none;
}
.faq-item.active {
    background: #faf5ff;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 0.85rem 0.5rem;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-body);
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    line-height: 1.4;
}
.faq-question:hover {
    color: var(--bg-purple);
}
.faq-icon {
    font-size: 1.2rem;
    color: var(--bg-purple);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 8px;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-answer-content {
    padding: 0 0.5rem 0.8rem;
    color: var(--text-body);
    font-size: 0.82rem;
    line-height: 1.6;
}
.cta-banner {
    background: linear-gradient(135deg, #5c24c2 0%, #4614a3 100%);
    padding: 0 2rem;
    color: #fff;
    border-radius: var(--radius-lg);
    margin: 3rem auto;
    max-width: var(--max-width);
    overflow: hidden;
    box-shadow: 0 10px 30px #4614a333;
}
.cta-banner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
}
.cta-mascot-left,
.cta-mascot-right {
    width: 140px;
    height: 190px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-shrink: 0;
}
.cta-mascot-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.cta-content {
    flex: 1;
    text-align: center;
    padding: 2.5rem 0;
}
.cta-content h2 {
    color: #fff;
    font-family: var(--font-title);
    font-size: 1.7rem;
    line-height: 1.3;
    margin-bottom: 0.4rem;
}
.cta-content h2 .highlight-yellow {
    color: #ffe000;
    display: inline-block;
    margin-top: 2px;
}
.cta-subtitle {
    color: #ffffffe6;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
}
.cta-badges {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}
.cta-qr-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.qr-top-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.cta-qr-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}
.qr-box-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.qr-box {
    background: #fff;
    padding: 6px;
    border-radius: 12px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px #00000026;
    transition: transform 0.2s ease;
}
.qr-box:hover {
    transform: scale(1.04);
}
.qr-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffffe6;
}
.qr-image {
    width: 100%;
    height: 100%;
    display: block;
}
.qr-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.qr-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    width: 75px;
    line-height: 1.2;
}
.qr-arrow {
    color: #ffe000;
    transform: rotate(-15deg);
    animation: floatArrow 2s ease-in-out infinite;
}
@keyframes floatArrow {
    0%,
    to {
        transform: translate(0) rotate(-15deg);
    }
    50% {
        transform: translate(-3px, -2px) rotate(-15deg);
    }
}
.site-footer {
    background: #f4f2fa;
    padding: 4rem 0 1.5rem;
    color: var(--text-body);
    border-top: 2px solid #ede9fe;
}
.footer-grid-4 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-col h3 {
    color: var(--text-dark);
    font-family: var(--font-heading);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
}
.footer-col h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30px;
    height: 2px;
    background: var(--bg-purple);
    border-radius: 2px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}
.footer-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
}
.footer-brand h2,
.footer-brand .footer-brand-name {
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.4rem;
}
.footer-desc {
    line-height: 1.6;
}
.footer-nav-list li {
    margin-bottom: 0.7rem;
}
.footer-nav-list a {
    color: var(--text-body);
    transition: color 0.3s;
    font-size: 0.9rem;
}
.footer-nav-list a:hover {
    color: var(--bg-purple);
}
.footer-contact-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
}
.footer-contact-list a {
    color: var(--text-body);
    transition: color 0.3s;
}
.footer-contact-list a:hover {
    color: var(--bg-purple);
}
.phone-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    border-radius: var(--radius-sm);
    background: #ffffff;
    border: 1px solid #ede9fe;
    transition: all 0.3s;
}
.phone-box:hover {
    border-color: var(--bg-purple);
    transform: translateY(-3px);
}
.phone-box .icon {
    font-size: 1.5rem;
}
.phone-label {
    font-size: 0.8rem;
    color: var(--text-body);
    opacity: 0.8;
}
.phone-number {
    color: var(--bg-purple);
    font-weight: 700;
    font-size: 1.1rem;
}
.phone-details {
    display: flex;
    flex-direction: column;
}
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #ede9fe;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-body);
}
.scroll-anim {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.scroll-anim.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 5.5rem 5% 3.5rem;
        min-height: auto;
    }
    .hero-content {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .hero-desc {
        max-width: 100%;
    }
    .hero-cta,
    .store-badges {
        justify-content: center;
    }
    .hero-mockup {
        max-width: 420px;
    }
    .trust-bar {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 20px;
        width: 95%;
    }
    .trust-card {
        flex: 1 1 calc(50% - 1rem);
        justify-content: flex-start;
        padding: 0.5rem 1rem;
    }
    .trust-card:not(:last-child):after {
        display: none;
    }
    .video-layout {
        flex-direction: column;
    }
    .parents-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid-4 {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 1rem 5%;
        border-bottom: 1px solid #eee;
        box-shadow: var(--shadow-md);
    }
    .nav-links.active,
    .menu-toggle {
        display: flex;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .trust-bar {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.2rem;
        margin-top: 1rem;
        border-radius: 20px;
        width: 95%;
    }
    .trust-card {
        flex: 1 1 calc(50% - 0.5rem);
        justify-content: flex-start;
        padding: 0.4rem 0.6rem;
        gap: 0.8rem;
    }
    .trust-number {
        font-size: 1.4rem;
    }
    .popular-grid {
        gap: 0.8rem;
    }
    .pop-card {
        min-width: 80px;
        padding: 0.4rem;
    }
    .pop-card img {
        width: 56px;
        height: 56px;
    }
    .explore-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 0.6rem;
    }
    .journey-steps {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    .journey-step {
        width: 100%;
        max-width: 320px;
    }
    .step-arrow {
        transform: rotate(90deg);
        padding: 0.2rem 0;
    }
    .parents-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .cta-banner {
        margin: 1rem 15px;
        padding: 1.5rem 1rem;
    }
    .cta-banner-container {
        flex-direction: column;
        gap: 1.2rem;
    }
    .cta-mascot-left,
    .cta-mascot-right {
        display: none;
    }
    .cta-content {
        padding: 0;
    }
    .cta-content h2 {
        font-size: 1.4rem;
    }
    .cta-qr-left,
    .cta-qr-right {
        padding-right: 0;
        justify-content: center;
        margin: 0.4rem auto;
    }
}
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .hero-mockup {
        max-width: 320px;
    }
    .trust-bar {
        padding: 1rem;
        gap: 0.8rem;
    }
    .trust-card {
        flex: 1 1 100%;
        padding: 0.6rem;
    }
    .cta-qr-right {
        flex-direction: column;
        gap: 0.6rem;
    }
    .qr-text-wrap {
        align-items: center;
    }
    .qr-text {
        width: auto;
        text-align: center;
    }
    .qr-arrow {
        transform: rotate(90deg) !important;
        animation: floatArrowMobile 2s ease-in-out infinite !important;
    }
}
@keyframes floatArrowMobile {
    0%,
    to {
        transform: translate(0) rotate(90deg);
    }
    50% {
        transform: translateY(4px) rotate(90deg);
    }
}
.subpage-header {
    padding: 6rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    margin-bottom: 2rem;
}
.subpage-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.subpage-header p {
    max-width: 720px;
    margin: 0.5rem auto 0;
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.6;
}
.glass-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
}
.how-it-works-section,
.core-benefits-section,
.what-it-does-section,
.cost-section,
.about-us-section,
.contact-section {
    padding: 3rem 0;
}
.bg-alt {
    background: var(--bg-section);
}
.step-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.step-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.step-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--bg-purple);
    margin-bottom: 0.25rem;
}
.benefits-list,
.philosophy-list,
.serve-list,
.cost-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 0;
}
.benefits-list li,
.philosophy-list li,
.serve-list li,
.cost-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    color: var(--text-body);
    list-style: none;
}
.benefits-list li:before,
.philosophy-list li:before,
.serve-list li:before,
.cost-list li:before {
    content: "•";
    color: var(--bg-purple);
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: -6px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.feature-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-dark);
}
.subsection-title {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}
.about-text,
.what-it-does-text {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    max-width: 800px;
}
.policy-container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2.5rem;
}
.policy-content h2 {
    color: var(--bg-purple);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
}
.policy-content p,
.policy-content ul {
    margin-bottom: 1.5rem;
    color: var(--text-body);
}
.policy-content ul {
    margin-left: 1.5rem;
}
.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--bg-purple);
    text-decoration: none;
    font-weight: 700;
}
.back-link:hover {
    text-decoration: underline;
}
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
}
.support-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-group label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bg-purple);
}

@media (max-width: 768px) {
    .hero {
        /* Mobile par background image ko remove kar ke simple solid color rakhne ke liye */
        background: #fafafa !important; 
        padding: 4rem 5% 3rem; /* Mobile ke hisab se padding kam ki */
        min-height: auto; /* Poori screen gherna band karega */
    }
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #ffffff;
    color: var(--text-dark);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid #ede9fe;
}
.social-links a:hover {
    background: var(--bg-purple);
    color: #ffffff;
    transform: translateY(-3px);
    border-color: var(--bg-purple);
}

/* --- Modern Animations & Layout Fixes --- */

/* 1. Mobile stacking for .split-layout */
@media (max-width: 768px) {
  .split-layout {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* 2. Floating animation for hero mockup and mascots */
@keyframes floatAnim {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.cta-mascot-img, .about-image-wrap img, .qr-image {
  animation: floatAnim 6s ease-in-out infinite;
}

/* 3. Micro-interactions for cards */
.cat-card, .pop-card, .parent-card, .trust-card, .testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cat-card:hover, .pop-card:hover, .parent-card:hover, .trust-card:hover, .testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  z-index: 10;
}

/* 4. Pulse effect for primary buttons */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(251, 146, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0); }
}

.btn-primary {
  animation: pulseGlow 2.5s infinite;
}

/* 5. Toast Notification CSS */
.toast-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--bg-purple);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 9999;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  background: #10b981;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* --- AI Search Modal Overlay --- */
.ai-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85); /* Dark translucent background */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ai-search-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.ai-search-container {
  background: #ffffff;
  width: 90%;
  max-width: 650px;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: translateY(-20px);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-search-modal.active .ai-search-container {
  transform: translateY(0);
}

.ai-search-header {
  display: flex;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  gap: 12px;
}

.ai-search-header svg {
  color: #64748b;
  width: 24px;
  height: 24px;
}

.ai-search-input {
  flex-grow: 1;
  border: none;
  outline: none;
  font-size: 1.2rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: transparent;
}

.ai-search-input::placeholder {
  color: #94a3b8;
}

.ai-search-close {
  background: #f1f5f9;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ai-search-close:hover {
  background: #e2e8f0;
  color: var(--text-dark);
}

.ai-search-results {
  max-height: 50vh;
  overflow-y: auto;
  padding: 1rem 0;
}

.ai-search-placeholder, .ai-search-empty {
  text-align: center;
  padding: 2rem;
  color: #64748b;
  font-size: 1rem;
}

.ai-search-item {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: var(--text-dark);
  transition: background 0.2s ease;
  gap: 15px;
}

.ai-search-item:hover {
  background: #f8fafc;
}

.ai-search-icon {
  font-size: 1.5rem;
  background: #f1f5f9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-search-details {
  flex-grow: 1;
}

.ai-search-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.ai-search-type {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.ai-search-arrow {
  color: #cbd5e1;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.ai-search-item:hover .ai-search-arrow {
  transform: translateX(4px);
  color: var(--bg-purple);
}

/* Nav search button styling */
.nav-search-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s ease;
  margin-right: 10px;
}
.nav-search-btn:hover {
  background: var(--bg-purple);
  color: #ffffff;
  border-color: var(--bg-purple);
}


/* --- CONTENT PROTECTION LAYER --- */
body {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  -webkit-touch-callout: none;
  pointer-events: none; /* Disables mobile save image popup and right click specifically on imgs */
}

/* Watermark Overlay */
.watermarked-container {
  position: relative;
  display: inline-block;
}

.watermarked-container::after {
  content: '© Kidsoz';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  color: rgba(255, 255, 255, 0.15);
  font-size: 1.5rem;
  font-weight: bold;
  pointer-events: none;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* In case of PDF embeds or downloads */
.protected-file {
  display: none !important;
}


/* Auto-Watermark important images */
.category-card { position: relative; }
.category-card::after, .hero-image-wrapper::after {
  content: '© Kidsoz';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  color: rgba(255, 255, 255, 0.15);
  font-size: 1.5rem;
  font-weight: bold;
  pointer-events: none;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}
