:root {
    --primary-purple: #4e008e;
    --accent-pink: #bc13fe;
    --whatsapp-green: #25D366;
    --text-white: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #0b0116;
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at top right, var(--accent-pink), transparent),
                linear-gradient(135deg, #1a0033 0%, #0b0116 100%);
    padding: 40px 5%;
    box-sizing: border-box;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    z-index: 2;
}

/* Big Title Styling */
.hero-title {
    font-size: 8rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 0.9;
    margin: 0;
    letter-spacing: -4px;
    text-transform: uppercase;
}

.hero-title .outline {
    -webkit-text-stroke: 2px white;
    color: transparent;
}

.hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin: 20px 0 40px 0;
    max-width: 500px;
}

/* Buttons */
.hero-action-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-contact {
    background: var(--text-white);
    color: #000;
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: white;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Image Mockup Styling */
.hero-image-wrapper {
    position: relative;
    transform: rotate(-10deg);
}

.mockup-img {
    max-height: 600px;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}

/* Background Large Text */
.bg-large-text {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-title { font-size: 5rem; }
    .hero-action-buttons { justify-content: center; }
    .hero-image-wrapper { margin-top: 50px; transform: rotate(0); }
    .mockup-img { max-height: 400px; }
}

:root {
    --primary-purple: #4e12c1; /* Matching the Healthix purple */
    --text-dark: #1a1a1a;
    --text-gray: #555;
    --font-main: 'Inter', sans-serif;
}

.overview-section {
    padding: 100px 5%;
    background-color: #ffffff;
    font-family: var(--font-main);
    display: flex;
    justify-content: center;
}

.overview-container {
    max-width: 1100px;
    width: 100%;
}

.category-label {
    color: var(--primary-purple);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 25px;
    display: block;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 60px;
}

/* The purple background highlight effect */
.main-title .highlight {
    background-color: var(--primary-purple);
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.description-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

/* Feature Pills Styling */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

.pill {
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pill.outline {
    border: 1px solid #333;
    color: #333;
}

.pill.solid {
    background-color: var(--primary-purple);
    color: white;
}

.pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(78, 18, 193, 0.2);
}

/* Responsive for Mobile */
@media (max-width: 992px) {
    .main-title { font-size: 2rem; }
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
:root {
    --purple-primary: #4e12c1;
    --bg-light: #f9f9ff;
    --text-dark: #1a1a1a;
}

.app-showcase-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    overflow: hidden; /* Crucial to prevent horizontal scrollbars */
    font-family: 'Inter', sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-header .badge {
    color: var(--purple-primary);
    background: rgba(78, 18, 193, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin: 15px 0;
    color: var(--text-dark);
}

/* MARQUEE LOGIC */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee-wrapper {
    display: flex;
    width: fit-content; /* Important: Wrapper fits the length of content */
    animation: scrollAnimation 40s linear infinite; /* Speed can be adjusted here */
}

/* Pause animation on hover for better user experience */
.marquee-container:hover .marquee-wrapper {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    gap: 30px;
    padding-right: 30px; /* Must match gap for seamless transition */
}

.screen-card {
    width: 260px;
    background: white;
    padding: 10px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.screen-card img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #eee;
}

.card-label {
    margin-top: 15px;
    font-weight: 600;
    color: var(--purple-primary);
    font-size: 0.95rem;
}

/* THE ANIMATION */
@keyframes scrollAnimation {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* Animates half of the wrapper (one group) */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .screen-card { width: 180px; }
    .section-header h2 { font-size: 1.8rem; }
}