/* Custom Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&display=swap');

:root {
    --color-primary: #0066FF;
    /* Bright Blue */
    --color-dark: #0A0A0A;
    /* Deep Black */
    --color-light: #FFFFFF;
    /* Pure White */
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

.font-coves {
    font-family: 'Josefin Sans', sans-serif;
}

/* Scroll Driven Animations Utilities */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 100ms;
}

.stagger-2 {
    transition-delay: 200ms;
}

.stagger-3 {
    transition-delay: 300ms;
}

/* Elegant Blur-in effect */
.blur-in {
    filter: blur(10px);
    opacity: 0;
    transition: filter 1s ease, opacity 1s ease;
}

.blur-in.visible {
    filter: blur(0);
    opacity: 1;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* Header sticking */
header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* RTL Support */
[dir="rtl"] .rtl-flip {
    transform: scaleX(-1);
}

/* Gradient Text */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(135deg, #0066FF 0%, #000000 100%);
}

/* Slow Float Animation */
/* Pulse Scale Animation (Forward/Backward) */
@keyframes pulse-scale {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
        text-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.animate-pulse-scale {
    animation: pulse-scale 4s ease-in-out infinite;
}

/* New Hero Curve Design */
.hero-curve-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #0066FF 0%, #10B981 100%);
    clip-path: ellipse(170% 85% at 50% 0%);
    z-index: -1;
}

/* IOS Toggle Style Icon */
.ios-toggle-on {
    width: 38px;
    height: 22px;
    background-color: #34C759; /* iOS Green */
    border-radius: 11px;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    transition: background-color 0.3s;
}

.ios-toggle-on::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 50%;
    top: 2px;
    right: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.task-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}
