/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* MyndZeal Brand Colors - From Official Design */
    --primary-color: #2C4A4A;        /* Dark Teal - Main brand color */
    --primary-dark: #1f3535;         /* Darker Teal */
    --primary-light: #3d5f5f;        /* Lighter Teal */
    --secondary-color: #00A8A8;      /* Cyan/Teal - Secondary brand */
    --accent-color: #D4E157;         /* Lime/Yellow-Green - Accent */
    --accent-yellow: #E8F172;        /* Lighter Yellow */
    --text-primary: #2C4A4A;         /* Dark Teal for text */
    --text-secondary: #5a7070;       /* Medium Teal for secondary text */
    --text-light: #8a9d9d;           /* Light Teal */
    --bg-primary: #ffffff;           /* White background */
    --bg-secondary: #f5f9f9;         /* Very light teal tint */
    --bg-gradient: linear-gradient(135deg, #2C4A4A 0%, #00A8A8 100%);
    --shadow-sm: 0 1px 2px 0 rgba(44, 74, 74, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(44, 74, 74, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(44, 74, 74, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(44, 74, 74, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(44, 74, 74, 0.3);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 2px solid var(--accent-color);
}

.navbar.scrolled {
    box-shadow: 0 6px 35px rgba(44, 74, 74, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem; /* reduced spacing between Talk to Ziya and Get Started */
}

/* Mobile-only nav actions (inside hamburger panel) */
.nav-actions-mobile {
    display: none;
}

.nav-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem 1.25rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-yellow) 100%);
    color: var(--primary-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(232, 241, 114, 0.65);
    box-shadow: 0 6px 18px rgba(232, 241, 114, 0.35);
    transition: var(--transition);
}

.nav-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(232, 241, 114, 0.55);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    text-decoration: none;
}

.logo:visited,
.logo:hover,
.logo:active {
    text-decoration: none;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: brightness(1.1) contrast(1.05);
}

.logo:hover .logo-img {
    filter: brightness(1.2) contrast(1.1);
    transform: scale(1.02);
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-yellow) 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-yellow) 100%);
    color: var(--primary-dark);
    border: none;
    padding: 0.85rem 1.75rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 225, 87, 0.4);
    border: 2px solid var(--accent-yellow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 241, 114, 0.6);
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-color) 100%);
    border-color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(212, 225, 87, 0.2);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--accent-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f9f9 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 225, 87, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 168, 168, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 2.25rem;
    line-height: 1.1;
}

.hero-title .highlight {
    display: block;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Incubated By (hero) */
.hero-incubated {
    /* No card/tab background — keep it clean and prominent */
    margin-top: 0.6rem;
    margin-bottom: 1.8rem;
    /* Shrink-wrap and keep the whole block left under the headline */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    width: fit-content;
    max-width: min(680px, 100%);
    margin-right: auto;
}

.hero-incubated-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
}

.hero-incubated-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 10px 18px rgba(44, 74, 74, 0.18));
}

.hero-incubated-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: var(--primary-color);
    font-size: 1.35rem;
    text-align: left;
}

.hero-incubated-org {
    font-weight: 800;
    color: rgba(44, 74, 74, 0.92);
    line-height: 1.25;
    font-size: 1.18rem;
    text-align: left;
}

.hero-incubated-uni {
    font-weight: 800;
    color: rgba(44, 74, 74, 0.92);
    line-height: 1.25;
    font-size: 1.12rem;
    text-align: left;
}

/* Ensure <strong> inside incubated lines is bold */
.hero-incubated-org strong,
.hero-incubated-uni strong {
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    /* Push subtitle (and buttons) a bit further down from the headline */
    padding-top: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    padding-top: 0.35rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 225, 87, 0.4);
    background: var(--accent-yellow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 225, 87, 0.1) 0%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 225, 87, 0.2);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.stat p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Vibrant Wellbeing Animation Container */
.wellbeing-animation {
    position: relative;
    width: 550px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* Vibrant Background Glows */
.background-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: glow-pulse 8s ease-in-out infinite;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 225, 87, 0.4) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 168, 168, 0.3) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: 2s;
}

.glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 241, 114, 0.35) 0%, transparent 70%);
    top: 20%;
    right: -5%;
    animation-delay: 4s;
}

/* Breathing Circle Animation - More Vibrant */
.breathing-circle {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.circle-outer,
.circle-middle,
.circle-inner,
.circle-accent {
    position: absolute;
    border-radius: 50%;
    animation: vibrant-breathe 4s ease-in-out infinite;
}

.circle-outer {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 168, 168, 0.25) 0%, rgba(0, 201, 201, 0.15) 50%, transparent 70%);
    box-shadow: 0 0 60px rgba(0, 168, 168, 0.4), inset 0 0 40px rgba(212, 225, 87, 0.2);
    animation-delay: 0s;
}

.circle-middle {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(212, 225, 87, 0.4) 0%, rgba(232, 241, 114, 0.2) 50%, transparent 70%);
    box-shadow: 0 0 40px rgba(212, 225, 87, 0.6);
    animation-delay: 0.5s;
}

.circle-inner {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 168, 168, 0.3) 0%, rgba(0, 201, 201, 0.15) 50%, transparent 70%);
    box-shadow: 0 0 30px rgba(0, 168, 168, 0.5);
    animation-delay: 1s;
}

.circle-accent {
    width: 280px;
    height: 280px;
    border: 3px solid rgba(212, 225, 87, 0.4);
    animation: rotate-ring 12s linear infinite;
    box-shadow: 0 0 20px rgba(212, 225, 87, 0.5);
}

.center-icon {
    position: relative;
    width: 90px;
    height: 90px;
    z-index: 15;
    animation: vibrant-pulse 3s ease-in-out infinite;
}

.center-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(212, 225, 87, 0.8)) drop-shadow(0 0 40px rgba(232, 241, 114, 0.4));
}

.hero-center-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(212, 225, 87, 0.8)) drop-shadow(0 0 40px rgba(232, 241, 114, 0.4));
}

/* Vibrant Floating Particles */
.wellness-particle {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: 3;
}

.particle-glow {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: particle-float 5s ease-in-out infinite;
}

.particle-1 {
    top: 15%;
    left: 10%;
    animation: float-path-1 8s ease-in-out infinite;
}

.particle-1 .particle-glow {
    background: radial-gradient(circle, rgba(212, 225, 87, 0.9) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(212, 225, 87, 0.8);
}

.particle-2 {
    top: 25%;
    right: 12%;
    animation: float-path-2 7s ease-in-out infinite 1s;
}

.particle-2 .particle-glow {
    background: radial-gradient(circle, rgba(0, 168, 168, 0.9) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(0, 168, 168, 0.8);
}

.particle-3 {
    bottom: 20%;
    left: 15%;
    animation: float-path-3 9s ease-in-out infinite 2s;
}

.particle-3 .particle-glow {
    background: radial-gradient(circle, rgba(232, 241, 114, 0.9) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(232, 241, 114, 0.8);
}

.particle-4 {
    bottom: 30%;
    right: 10%;
    animation: float-path-1 6s ease-in-out infinite 1.5s;
}

.particle-4 .particle-glow {
    background: radial-gradient(circle, rgba(0, 201, 201, 0.9) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(0, 201, 201, 0.8);
}

.particle-5 {
    top: 50%;
    left: 5%;
    animation: float-path-2 10s ease-in-out infinite 0.5s;
}

.particle-5 .particle-glow {
    background: radial-gradient(circle, rgba(212, 225, 87, 0.85) 0%, transparent 70%);
    box-shadow: 0 0 18px rgba(212, 225, 87, 0.7);
}

.particle-6 {
    top: 45%;
    right: 8%;
    animation: float-path-3 8.5s ease-in-out infinite 2.5s;
}

.particle-6 .particle-glow {
    background: radial-gradient(circle, rgba(0, 168, 168, 0.85) 0%, transparent 70%);
    box-shadow: 0 0 18px rgba(0, 168, 168, 0.7);
}

/* Orbiting Dots */
.orbit-container {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    animation: orbit-spin 15s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 15px currentColor;
}

.dot-1 {
    background: var(--accent-color);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: dot-glow 2s ease-in-out infinite;
}

.dot-2 {
    background: var(--secondary-color);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: dot-glow 2s ease-in-out infinite 0.6s;
}

.dot-3 {
    background: var(--accent-yellow);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: dot-glow 2s ease-in-out infinite 1.2s;
}

/* Enhanced Animation Text */
.animation-text {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.breathe-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-vibrant-pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(212, 225, 87, 0.5));
    letter-spacing: 2px;
}

.text-glow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(212, 225, 87, 0.4) 0%, transparent 70%);
    filter: blur(15px);
    animation: glow-pulse 2s ease-in-out infinite;
}

/* Vibrant Keyframe Animations */
@keyframes vibrant-breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.25);
        opacity: 1;
    }
}

@keyframes vibrant-pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.15) rotate(5deg);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes rotate-ring {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float-path-1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -30px);
    }
    50% {
        transform: translate(0, -50px);
    }
    75% {
        transform: translate(-20px, -30px);
    }
}

@keyframes float-path-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, 20px) scale(1.2);
    }
    66% {
        transform: translate(-15px, 40px) scale(0.8);
    }
}

@keyframes float-path-3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(25px, -35px) rotate(180deg);
    }
}

@keyframes particle-float {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes dot-glow {
    0%, 100% {
        box-shadow: 0 0 15px currentColor;
    }
    50% {
        box-shadow: 0 0 30px currentColor, 0 0 50px currentColor;
    }
}

@keyframes text-vibrant-pulse {
    0%, 100% {
        opacity: 0.8;
        filter: drop-shadow(0 0 10px rgba(212, 225, 87, 0.5));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(212, 225, 87, 0.9)) drop-shadow(0 0 30px rgba(0, 168, 168, 0.5));
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(212, 225, 87, 0.15) 0%, rgba(232, 241, 114, 0.1) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-card {
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.mission-card {
    background: linear-gradient(135deg, rgba(139, 162, 87, 0.9) 0%, rgba(119, 139, 75, 0.85) 100%);
    color: white;
}

.approach-card {
    background: white;
    border: 2px solid rgba(139, 162, 87, 0.2);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.approach-card h3 {
    color: var(--text-primary);
}

.about-card p {
    font-size: 1.125rem;
    line-height: 1.8;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.95);
}

.approach-card p {
    color: var(--text-secondary);
}

/* Services Section */
.services {
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
}

.services-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

/* Services Dropdown */
.services-dropdown-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
}

.dropdown-container {
    position: relative;
}

.discover-more-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-yellow) 100%);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(212, 225, 87, 0.4);
}

.discover-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 225, 87, 0.5);
}

.discover-more-btn .dropdown-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.discover-more-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    right: 0;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item svg {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(212, 225, 87, 0.1) 0%, rgba(232, 241, 114, 0.05) 100%);
    padding-left: 2.5rem;
    color: var(--primary-color);
}

.dropdown-item:hover svg {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Service Page Styles */
.service-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 8rem 0 4rem;
    margin-top: 70px;
    color: white;
    text-align: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-icon {
    margin-bottom: 2rem;
}

.service-icon svg {
    width: 80px;
    height: 80px;
    color: var(--accent-color);
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.service-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.service-details {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--secondary-color);
}

.service-card-icon {
    margin-bottom: 1.5rem;
}

.service-card-icon svg {
    width: 48px;
    height: 48px;
    color: var(--secondary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    position: relative;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-benefits {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-bottom: 4rem;
    box-shadow: var(--shadow-md);
}

.service-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-cta {
    text-align: center;
    background: white;
    padding: 4rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.service-cta h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .dropdown-menu {
        position: relative;
        top: 0;
        margin-top: 1rem;
    }
    
    .discover-more-btn {
        font-size: 1.1rem;
        padding: 1.25rem 1.5rem;
    }
}

/* Tab Buttons */
.tab-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Keep Expert Care cards aligned (avoid 3+1 wrapping) */
@media (min-width: 640px) {
    .tab-buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .tab-buttons {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.tab-button-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    width: 100%;
    height: 100%;
    position: relative;
}

.tab-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    width: 100%;
    /* Keep all 4 service cards visually identical even if titles wrap differently */
    min-height: 165px;
}


.tab-button span {
    display: block;
    text-align: center;
    line-height: 1.25;
    /* Reserve up to ~2 lines of title height so shorter titles don't shrink the card */
    min-height: 2.5em;
}

/* Listening Circle: background image layer under text */
.tab-button-listening {
    position: relative;
    overflow: hidden;
}

.tab-button-listening::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/image3.svg") center / cover no-repeat;
    opacity: 0.55;
    z-index: 0;
}

/* Readability overlay (so text stays crisp over the image) */
.tab-button-listening::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(245, 249, 249, 0.65) 100%);
    z-index: 1;
}

.tab-button-listening svg,
.tab-button-listening span {
    position: relative;
    z-index: 2;
}

.tab-button-listening span {
    /* Keep text clearly visible over the background image */
    color: var(--primary-dark);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.7), 0 2px 14px rgba(44, 74, 74, 0.18);
}
.tab-button svg {
    width: 40px;
    height: 40px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.tab-button:hover {
    /* Match the "active" green style on hover */
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-yellow) 100%);
    border-color: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 225, 87, 0.4);
}

.tab-button:hover svg {
    color: var(--primary-dark);
    transform: scale(1.15);
}

/* Keep Listening Circle image visible on hover, with green overlay on top */
.tab-button-listening:hover {
    background: transparent;
    /* Override the generic hover text color so it doesn't go "active green" */
    color: var(--text-primary);
}

.tab-button-listening:hover svg {
    /* Override the generic hover icon color */
    color: var(--secondary-color);
    transform: scale(1.1);
}

.tab-button-listening:hover::before {
    /* Make the image sharper / more visible on hover */
    opacity: 0.9;
    filter: contrast(1.2) saturate(1.1) brightness(1.05);
}

.tab-button-listening:hover::after {
    /* Keep readability but let the image show through more (no green overlay) */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, rgba(245, 249, 249, 0.35) 100%);
}

/* Background images for other Expert Care tabs */
.tab-button-employee,
.tab-button-education,
.tab-button-counselor {
    position: relative;
    overflow: hidden;
}

.tab-button-employee::before,
.tab-button-education::before,
.tab-button-counselor::before {
    content: "";
    position: absolute;
    inset: 0;
    background: center / cover no-repeat;
    opacity: 0.45;
    z-index: 0;
}

.tab-button-employee::before { background-image: url("images/image5.svg"); }
.tab-button-education::before { background-image: url("images/image6.svg"); }
.tab-button-counselor::before { background-image: url("images/image7.svg"); }

.tab-button-employee::after,
.tab-button-education::after,
.tab-button-counselor::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(245, 249, 249, 0.65) 100%);
    z-index: 1;
}

.tab-button-employee svg,
.tab-button-education svg,
.tab-button-counselor svg,
.tab-button-employee span,
.tab-button-education span,
.tab-button-counselor span {
    position: relative;
    z-index: 2;
}

/* On hover: make the image sharper/more visible (and cancel the green hover fill) */
.tab-button-employee:hover,
.tab-button-education:hover,
.tab-button-counselor:hover {
    background: transparent;
    color: var(--text-primary);
}

.tab-button-employee:hover svg,
.tab-button-education:hover svg,
.tab-button-counselor:hover svg {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.tab-button-employee:hover::before,
.tab-button-education:hover::before,
.tab-button-counselor:hover::before {
    opacity: 0.9;
    filter: contrast(1.2) saturate(1.1) brightness(1.05);
}

.tab-button-employee:hover::after,
.tab-button-education:hover::after,
.tab-button-counselor:hover::after {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, rgba(245, 249, 249, 0.35) 100%);
}

.tab-button.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-yellow) 100%);
    border-color: var(--accent-color);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(212, 225, 87, 0.4);
}

.tab-button.active svg {
    color: var(--primary-dark);
    transform: scale(1.15);
}

/* Service sub-options dropdown (homepage) */
.discover-more-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.discover-more-toggle:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 168, 0.3);
}

.discover-more-toggle .submenu-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.tab-button-wrapper.submenu-open .discover-more-toggle .submenu-arrow {
    transform: rotate(180deg);
}

.service-submenu {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 5;
}

.tab-button-wrapper.submenu-open .service-submenu {
    display: flex;
}

.service-submenu a {
    display: block;
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.service-submenu a:hover {
    /* Match the same hover feel as the main service cards/buttons */
    background: linear-gradient(135deg, rgba(212, 225, 87, 0.05) 0%, rgba(232, 241, 114, 0.02) 100%);
    color: var(--secondary-color);
    transform: translateX(3px);
}

/* Tab Content */
.tab-content-wrapper {
    position: relative;
    min-height: 400px;
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.tab-content.active {
    display: block;
    animation: tabFadeIn 0.5s ease-out forwards;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tab-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-20px);
}

.tab-content.active .tab-item {
    animation: itemSlideIn 0.5s ease-out forwards;
}

.tab-content.active .tab-item:nth-child(1) {
    animation-delay: 0.1s;
}

.tab-content.active .tab-item:nth-child(2) {
    animation-delay: 0.2s;
}

.tab-content.active .tab-item:nth-child(3) {
    animation-delay: 0.3s;
}

.tab-content.active .tab-item:nth-child(4) {
    animation-delay: 0.4s;
}

.tab-content.active .tab-item:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes itemSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tab-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(212, 225, 87, 0.05) 0%, white 100%);
}

.tab-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.tab-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, rgba(212, 225, 87, 0.12) 0%, rgba(232, 241, 114, 0.08) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    opacity: 0.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Center the last "Anonymity" card when it wraps */
@media (min-width: 900px) {
    .features-grid .feature-item-center {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(520px, 100%);
    }
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:nth-child(odd) {
    background: rgba(255, 255, 255, 0.6);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
}

.feature-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 162, 87, 0.3);
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Blog Section */
.blog-section {
    background: linear-gradient(135deg, rgba(44, 74, 74, 0.04) 0%, rgba(212, 225, 87, 0.08) 100%);
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-color);
    opacity: 0.4;
}

.blog-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.blog-privacy-note {
    margin-top: 0.85rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(44, 74, 74, 0.12);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 2.5rem auto 0;
}

.blog-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(44, 74, 74, 0.10);
    border-radius: var(--border-radius);
    padding: 1.75rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(44, 74, 74, 0.08);
}

.blog-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-md);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-stars {
    color: rgba(212, 225, 87, 0.95);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(139, 162, 87, 0.25);
    white-space: nowrap;
}

.blog-quote {
    font-size: 1.15rem;
    line-height: 1.4;
}

.blog-author {
    margin-top: 0.75rem;
    margin-bottom: 0;
    color: rgba(44, 74, 74, 0.85);
    font-weight: 650;
    font-size: 0.95rem;
}

.blog-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(212, 225, 87, 0.9);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
}

.blog-badge-essay {
    background: rgba(106, 180, 180, 0.25);
    border: 1px solid rgba(106, 180, 180, 0.35);
    color: var(--primary-color);
}

.blog-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    white-space: nowrap;
}

.blog-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 650;
    margin-bottom: 0.75rem;
}

.blog-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.blog-read {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.blog-read:hover {
    color: var(--secondary-color);
    transform: translateX(2px);
}

.blog-cta {
    text-align: center;
    max-width: 900px;
    margin: 2.25rem auto 0;
}

.blog-cta-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* =========================
   Myndly Check-in (embed)
   ========================= */
.tracker-section {
    background: linear-gradient(135deg, rgba(245, 249, 249, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
    position: relative;
}

.tracker-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(980px, 92%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 168, 0.35), rgba(212, 225, 87, 0.35), transparent);
}

.tracker-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 168, 168, 0.14);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
    position: relative;
}

.tracker-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1rem;
}

.tracker-card-header h3 {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.tracker-card-header p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.98rem;
}

.tracker-open-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 168, 168, 0.22);
    background: rgba(0, 168, 168, 0.08);
    color: #2C4A4A;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.tracker-open-link:hover {
    background: rgba(0, 168, 168, 0.14);
    transform: translateY(-1px);
}

.tracker-embed {
    width: 100%;
    border: 0;
    display: block;
    height: 620px; /* fallback; will be auto-resized by postMessage */
    background: transparent;
    position: relative;
    z-index: 1;
}

/* Ziya check-in widget (Messenger-style floating bubble) */
.tracker-ziya-widget {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
}

.tracker-ziya-widget[hidden] {
    display: none;
}

.tracker-ziya-fab {
    width: 86px;
    height: 86px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: radial-gradient(circle at 30% 30%, rgba(212, 225, 87, 0.28) 0%, rgba(0, 168, 168, 0.18) 55%, rgba(20, 30, 30, 0.45) 100%);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 0.18s ease, filter 0.18s ease;
    position: relative;
}

.tracker-ziya-fab:hover {
    transform: translateY(-2px);
    filter: saturate(1.05);
}

.tracker-ziya-fab-avatar {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    padding: 7px;
}

.tracker-ziya-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 26px;
    height: 26px;
    padding: 0 7px;
    border-radius: 999px;
    background: #E53935;
    color: #fff;
    font-weight: 800;
    font-size: 0.78rem;
    line-height: 26px;
    text-align: center;
    border: 2px solid rgba(20, 30, 30, 0.85);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
    display: none;
}

.tracker-ziya-widget.has-unread .tracker-ziya-badge {
    display: inline-block;
}

.tracker-ziya-panel {
    position: absolute;
    right: 0;
    bottom: 100px;
    width: min(360px, calc(100vw - 36px));
    background: rgba(20, 30, 30, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 14px;
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.30);
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.tracker-ziya-widget.is-open .tracker-ziya-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.tracker-ziya-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}

.tracker-ziya-close:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-1px);
}

.tracker-ziya-body {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tracker-ziya-avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px;
    flex-shrink: 0;
}

.tracker-ziya-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.tracker-ziya-message {
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.92rem;
    line-height: 1.35;
}

.tracker-ziya-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.tracker-ziya-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(212, 225, 87, 0.18);
    border: 1px solid rgba(212, 225, 87, 0.22);
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: transform 0.15s ease, background 0.15s ease;
}

.tracker-ziya-cta:hover {
    background: rgba(212, 225, 87, 0.24);
    transform: translateY(-1px);
}

.tracker-ziya-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    transition: transform 0.15s ease, background 0.15s ease;
}

.tracker-ziya-secondary:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .tracker-ziya-widget {
        right: 14px;
        bottom: 14px;
    }
}

@media (max-width: 768px) {
    .tracker-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tracker-embed {
        height: 720px; /* fallback; will be auto-resized by postMessage */
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-yellow) 100%);
    color: var(--primary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(44, 74, 74, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

/* Live Impact Stats (CTA) removed */

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.voice-highlight {
    color: var(--primary-dark);
    font-weight: 800;
}

.talk-highlight {
    color: var(--primary-dark);
    font-weight: 800;
    font-style: italic;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.cta-content .btn {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
}

.cta-content .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(44, 74, 74, 0.4);
    background: var(--primary-dark);
}

/* Contact Section */
.contact {
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 225, 87, 0.08) 0%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.contact-item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.contact-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 168, 168, 0.10);
    color: var(--secondary-color);
    border: 1px solid rgba(0, 168, 168, 0.18);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(212, 225, 87, 0.15) 0%, rgba(255, 255, 255, 0.8) 100%);
    transform: translateX(5px);
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.contact-item p a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item p a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 225, 87, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

.footer-tagline {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 24px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        backdrop-filter: blur(15px);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 40px rgba(44, 74, 74, 0.4);
        transition: var(--transition);
        border-bottom: 3px solid var(--accent-color);
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 1.25rem;
        border-radius: 10px;
        transition: var(--transition);
        font-size: 1.1rem;
        text-align: center;
    }

    .nav-link:hover {
        background: rgba(212, 225, 87, 0.2);
    }

    .nav-link::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .cta-button {
        display: none;
    }

    /* Keep the top navbar row clean on mobile; show actions inside the slide-out menu */
    .nav-actions {
        display: none;
    }

    .nav-actions-mobile {
        display: block;
    }

    .nav-actions-mobile + .nav-actions-mobile {
        margin-top: 0.75rem;
    }

    .logo {
        padding: 0.4rem 1rem;
        gap: 0.5rem;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .footer-logo {
        height: 50px;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 2.75rem;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.75rem;
    }

    .hero-incubated {
        /* Mobile: keep the whole block centered under the headline */
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        align-items: center;
        margin-bottom: 1.8rem;
    }

    .hero-incubated-row {
        justify-content: center;
    }

    .hero-incubated-label,
    .hero-incubated-org,
    .hero-incubated-uni {
        text-align: center;
    }

    .hero-incubated-logo {
        width: 54px;
        height: 54px;
    }

    .hero-incubated-label {
        font-size: 1.18rem;
    }

    .hero-incubated-org {
        font-size: 1.08rem;
    }

    .hero-incubated-uni {
        font-size: 1.03rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn {
        padding: 0.9rem 1.75rem;
        font-size: 1rem;
    }

    .hero-stats {
        flex-wrap: nowrap;
        justify-content: space-around;
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .stat p {
        font-size: 0.8rem;
    }

    /* Sections Mobile */
    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* About Section Mobile */
    .about-cards {
        gap: 1.5rem;
    }

    .about-card {
        padding: 2rem;
    }

    /* Services Section Mobile */
    .tab-buttons {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .tab-button {
        flex-direction: row;
        justify-content: flex-start;
        padding: 1.25rem 1.5rem;
        text-align: left;
    }

    .tab-button svg {
        width: 32px;
        height: 32px;
    }

    .tab-items {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .tab-item {
        padding: 1.5rem;
    }

    /* Features Section Mobile */
    .features-grid {
        gap: 2rem;
    }

    /* CTA Section Mobile */
    .cta-content h2 {
        font-size: 2.25rem;
    }

    .cta-content p {
        font-size: 1.05rem;
    }

    /* Contact Section Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info {
        gap: 1.25rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 50px 0 25px;
    }

    .footer-content {
        gap: 2.5rem;
        grid-template-columns: 1fr;
    }

    .footer-section {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }

    .social-links {
        align-items: center;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    /* Navigation Mobile Small */
    .nav-wrapper {
        padding: 0.6rem 0;
    }

    .logo {
        padding: 0.35rem 0.85rem;
        gap: 0.4rem;
    }

    .logo-img {
        height: 35px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .nav-menu {
        top: 65px;
        padding: 1.5rem;
    }

    .nav-link {
        padding: 0.85rem 1rem;
        font-size: 1.05rem;
    }

    /* Hero Mobile Small */
    .hero {
        padding: 80px 0 50px;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.85rem;
    }

    .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.05rem;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
        padding: 1.25rem 1rem;
    }

    .stat {
        flex: 1;
        min-width: 0;
    }

    .stat h3 {
        font-size: 1.75rem;
    }

    .stat p {
        font-size: 0.75rem;
    }

    /* Animation Mobile Small */
    .wellbeing-animation {
        width: 100%;
        max-width: 350px;
        height: 350px;
        margin: 0 auto;
    }

    .background-glow {
        filter: blur(35px);
    }

    .glow-1,
    .glow-2,
    .glow-3 {
        width: 220px;
        height: 220px;
    }

    .breathing-circle {
        width: 200px;
        height: 200px;
    }

    .circle-outer {
        width: 200px;
        height: 200px;
    }

    .circle-middle {
        width: 140px;
        height: 140px;
    }

    .circle-inner {
        width: 85px;
        height: 85px;
    }

    .circle-accent {
        width: 170px;
        height: 170px;
        border-width: 2px;
    }

    .center-icon {
        width: 55px;
        height: 55px;
    }

    .wellness-particle {
        width: 12px;
        height: 12px;
    }

    .orbit-container {
        width: 170px;
        height: 170px;
    }

    .orbit-dot {
        width: 7px;
        height: 7px;
    }

    .breathe-text {
        font-size: 1.35rem;
        letter-spacing: 1px;
    }

    .animation-text {
        bottom: -15px;
    }

    /* Sections Mobile Small */
    section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-top: 1rem;
    }

    /* About Mobile Small */
    .about-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .about-card {
        padding: 1.75rem;
    }

    .about-card h3 {
        font-size: 1.35rem;
    }

    .about-card p {
        font-size: 1rem;
    }

    /* Services Mobile Small */
    .tab-buttons {
        gap: 0.6rem;
    }

    .tab-button {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .tab-button svg {
        width: 28px;
        height: 28px;
    }

    .tab-items {
        gap: 1rem;
    }

    .tab-item {
        padding: 1.25rem;
    }

    .tab-item h3 {
        font-size: 1.15rem;
    }

    .tab-item p {
        font-size: 0.9rem;
    }

    /* Features Mobile Small */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-badge {
        font-size: 0.95rem;
        padding: 0.45rem 1.25rem;
        margin-bottom: 1.25rem;
    }

    .feature-item h3 {
        font-size: 1.15rem;
    }

    .feature-item p {
        font-size: 0.95rem;
    }

    /* CTA Mobile Small */
    .cta-content h2 {
        font-size: 1.85rem;
        line-height: 1.3;
        margin-bottom: 0.85rem;
    }

    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }

    .btn-large {
        padding: 1rem 2.5rem;
        font-size: 1.05rem;
    }

    /* Contact Mobile Small */
    .contact-content {
        gap: 2rem;
    }

    .contact-item {
        padding: 1.25rem;
    }

    .contact-item h3 {
        font-size: 1.15rem;
    }

    .contact-item p {
        font-size: 1rem;
    }

    .contact-form {
        gap: 1.25rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.85rem;
        font-size: 0.95rem;
    }

    .contact-form textarea {
        min-height: 130px;
    }

    /* Footer Mobile Small */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-logo {
        height: 45px;
    }

    .footer-tagline {
        font-size: 1rem;
    }

    .footer-section h4 {
        font-size: 1.05rem;
        margin-bottom: 0.85rem;
    }

    .footer-section ul li {
        margin-bottom: 0.6rem;
    }

    .footer-section a {
        font-size: 0.95rem;
    }

    .footer-text {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 1.5rem;
    }
}

/* Mobile Landing Animation */
.mobile-landing {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s ease-out;
}

.mobile-landing.active {
    display: flex;
}

.mobile-landing.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Prevent scroll during landing */
body.landing-active {
    overflow: hidden;
    height: 100vh;
}

/* Main content fade in after landing */
body.landing-complete {
    animation: contentFadeIn 0.8s ease-out forwards;
}

@keyframes contentFadeIn {
    from {
        opacity: 0.7;
    }
    to {
        opacity: 1;
    }
}

.landing-animation {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Landing Background Glows */
.landing-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: glow-pulse 8s ease-in-out infinite;
}

.landing-glow.glow-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 225, 87, 0.4) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.landing-glow.glow-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 241, 114, 0.3) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: 2s;
}

.landing-glow.glow-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 201, 201, 0.35) 0%, transparent 70%);
    top: 20%;
    right: -5%;
    animation-delay: 4s;
}

/* Landing Breathing Circle */
.landing-breathing-circle {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.landing-circle-outer,
.landing-circle-middle,
.landing-circle-inner,
.landing-circle-accent {
    position: absolute;
    border-radius: 50%;
    animation: vibrant-breathe 4s ease-in-out infinite;
}

.landing-circle-outer {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(212, 225, 87, 0.3) 0%, rgba(232, 241, 114, 0.2) 50%, transparent 70%);
    box-shadow: 0 0 50px rgba(212, 225, 87, 0.5);
    animation-delay: 0s;
}

.landing-circle-middle {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232, 241, 114, 0.4) 0%, rgba(212, 225, 87, 0.2) 50%, transparent 70%);
    box-shadow: 0 0 35px rgba(232, 241, 114, 0.6);
    animation-delay: 0.5s;
}

.landing-circle-inner {
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(212, 225, 87, 0.35) 0%, rgba(232, 241, 114, 0.15) 50%, transparent 70%);
    box-shadow: 0 0 25px rgba(212, 225, 87, 0.5);
    animation-delay: 1s;
}

.landing-circle-accent {
    width: 250px;
    height: 250px;
    border: 3px solid rgba(232, 241, 114, 0.5);
    animation: rotate-ring 12s linear infinite;
    box-shadow: 0 0 20px rgba(232, 241, 114, 0.5);
}

.landing-center-icon {
    position: relative;
    width: 80px;
    height: 80px;
    z-index: 15;
    animation: vibrant-pulse 3s ease-in-out infinite;
}

.landing-center-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(232, 241, 114, 0.9));
}

.landing-center-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(232, 241, 114, 0.9));
}

/* Landing Floating Particles */
.landing-particle {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    z-index: 3;
}

.landing-particle .particle-glow {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: particle-float 5s ease-in-out infinite;
}

.landing-particle.particle-1 {
    top: 15%;
    left: 10%;
    animation: float-path-1 8s ease-in-out infinite;
}

.landing-particle.particle-1 .particle-glow {
    background: radial-gradient(circle, rgba(212, 225, 87, 0.9) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(212, 225, 87, 0.8);
}

.landing-particle.particle-2 {
    top: 25%;
    right: 12%;
    animation: float-path-2 7s ease-in-out infinite 1s;
}

.landing-particle.particle-2 .particle-glow {
    background: radial-gradient(circle, rgba(232, 241, 114, 0.9) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(232, 241, 114, 0.8);
}

.landing-particle.particle-3 {
    bottom: 25%;
    left: 15%;
    animation: float-path-3 9s ease-in-out infinite 2s;
}

.landing-particle.particle-3 .particle-glow {
    background: radial-gradient(circle, rgba(0, 201, 201, 0.9) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(0, 201, 201, 0.8);
}

.landing-particle.particle-4 {
    bottom: 30%;
    right: 10%;
    animation: float-path-1 6s ease-in-out infinite 1.5s;
}

.landing-particle.particle-4 .particle-glow {
    background: radial-gradient(circle, rgba(232, 241, 114, 0.9) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(232, 241, 114, 0.8);
}

/* Landing Text */
.landing-text {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 20;
}

.landing-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(212, 225, 87, 0.6));
    animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(212, 225, 87, 0.6));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 25px rgba(212, 225, 87, 0.9));
    }
}

.landing-breathe-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    animation: text-vibrant-pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(212, 225, 87, 0.7));
    letter-spacing: 3px;
}

/* Hero Title Animation Override for Mobile */
.hero-title .highlight {
    opacity: 0;
    transform: translateY(30px);
}

.hero-title .highlight.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Show landing on both desktop and mobile */
.hero-title .highlight {
    opacity: 0;
    transform: translateY(30px);
}

.hero-title .highlight.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Cursor Sparkle Effect */
.cursor-sparkle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    animation: sparkle-float 1s ease-out forwards;
    opacity: 0;
}

@keyframes sparkle-float {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: translate(var(--vx), var(--vy)) scale(1.2) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: translate(calc(var(--vx) * 1.5), calc(var(--vy) * 1.5)) scale(0) rotate(360deg);
    }
}

/* Custom cursor: use images/image9.svg (desktop) */
body {
    cursor: url("images/cursor-image9.png") 8 8, auto;
}

/* Clickable elements keep pointer semantics (still uses image9.svg) */
a, button, .btn, .nav-link, .cta-button, input, textarea {
    cursor: url("images/cursor-image9.png") 8 8, pointer;
}

/* Disable custom cursor on touch/mobile */
@media (max-width: 968px) {
    body {
        cursor: default;
    }

    a, button, .btn, .nav-link, .cta-button, input, textarea {
        cursor: pointer;
    }
}

/* =========================
   Ziya AI (ziya.html) styles
   Merged from E:\gemini-chat\style.css and scoped to `.ziya-page`
   ========================= */

body.ziya-page {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.05rem;
    background: linear-gradient(-45deg, #1F3535, #2C4A4A, #3D5F5F, #00A8A8, #5A7070, #8A9D9D, #00A8A8, #3D5F5F, #2C4A4A, #1F3535);
    background-size: 500% 500%;
    animation: ziyaGradientShift 15s ease infinite;
    color: #1F3535;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    padding-top: 80px; /* navbar offset */
}

body.ziya-page::before {
    content: "";
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    width: min(520px, 80vw);
    height: min(520px, 80vw);
    background-image: url('images/ziya/logo.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

@keyframes ziyaGradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 0%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 100%; }
    100% { background-position: 0% 50%; }
}

.ziya-app {
    width: min(1100px, 100%);
    height: calc(100vh - 80px);
    margin: 0 auto;
    background: rgba(245, 249, 249, 0.06);
    padding: 16px 18px 14px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.ziya-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 8px 10px;
}

.ziya-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ziya-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 999px;
}

.ziya-title h1 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    color: #1F3535;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.75);
}

.ziya-chat {
    flex: 1;
    padding: 12px 4px 6px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ziya-chat::-webkit-scrollbar { display: none; }

.ziya-row {
    display: flex;
    gap: 10px;
}

.ziya-row.user { justify-content: flex-end; }

.ziya-avatar {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.ziya-avatar.user {
    background: linear-gradient(135deg, #00A8A8, #5A7070);
    color: #fff;
}

.ziya-avatar.bot {
    background: linear-gradient(135deg, #D4E157, #00A8A8);
}

.ziya-avatar.bot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 999px;
}

.ziya-bubble {
    max-width: min(76%, 640px);
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 1rem;
    line-height: 1.45;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 168, 168, 0.95), rgba(212, 225, 87, 0.95));
    backdrop-filter: blur(4px);
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.ziya-row.user .ziya-bubble { border-bottom-right-radius: 6px; }
.ziya-row.bot .ziya-bubble { border-bottom-left-radius: 6px; border: 1px solid rgba(0, 168, 168, 0.25); }

.ziya-text p { margin: 6px 0; }
.ziya-text p:first-child { margin-top: 0; }
.ziya-text p:last-child { margin-bottom: 0; }
.ziya-text ul, .ziya-text ol { margin: 8px 0; padding-left: 20px; }
.ziya-text li { margin: 4px 0; }

.ziya-meta {
    margin-top: 6px;
    font-size: 0.9rem;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.85);
}

.ziya-input {
    display: flex;
    gap: 10px;
    padding: 10px 4px 6px;
    border-top: 1px solid rgba(90, 112, 112, 0.6);
}

.ziya-input textarea {
    flex: 1;
    resize: none;
    max-height: 120px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(138, 157, 157, 0.9);
    background: #fff;
    color: #1F3535;
    font-size: 1rem;
    outline: none;
}

.ziya-input textarea:focus {
    border-color: #00A8A8;
    box-shadow: 0 0 0 1px rgba(0, 168, 168, 0.6);
}

.ziya-input button {
    border: none;
    border-radius: 999px;
    padding: 0 18px;
    background: linear-gradient(135deg, #00A8A8, #D4E157);
    color: #1F3535;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ziya-input button:disabled { opacity: 0.6; cursor: not-allowed; }

.ziya-typing {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ziya-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #2C4A4A;
    opacity: 0.25;
    animation: ziyaBlink 1.2s infinite;
}
.ziya-dot:nth-child(2) { animation-delay: 0.2s; }
.ziya-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes ziyaBlink {
    0%, 80%, 100% { opacity: 0.25; }
    40% { opacity: 1; }
}

@media (max-width: 768px) {
    .ziya-app { height: calc(100vh - 80px); padding: 14px 12px 12px; }
    .ziya-bubble { max-width: 82%; }
    .ziya-avatar { width: 44px; height: 44px; }
}

/* Mobile-specific improvements */
@media (max-width: 968px) {
    /* Disable custom cursor on mobile */
    body {
        cursor: default;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Mobile menu item animations */
    .nav-menu li {
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Better tap targets for mobile */
    .btn, .nav-link, .service-card, .feature-item, .contact-item {
        -webkit-tap-highlight-color: rgba(212, 225, 87, 0.2);
    }

    /* Prevent text selection on buttons */
    .btn, .cta-button, .nav-link {
        -webkit-user-select: none;
        user-select: none;
    }

    /* Smooth scrolling for mobile */
    html {
        -webkit-overflow-scrolling: touch;
    }

    /* Better touch feedback */
    .service-card:active,
    .feature-item:active,
    .about-card:active {
        transform: scale(0.98);
    }

    .btn:active,
    .cta-button:active {
        transform: scale(0.95);
    }

    /* Optimize animations for mobile */
    .wellbeing-animation * {
        will-change: auto;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animation on Scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

