/* ============================================
   CUSTOM STYLES FOR NARI WEBSITE
   Consolidated styles for all templates
   ============================================ */

/* ===== GLOBAL VARIABLES & BASE STYLES ===== */
:root {
    --cream: #F8EECF;
    --soft-yellow: #f8f8b8;
    --chocolate: #3E1E15;
    --accent-red: #a23636;
    --accent-red-light: #ff6b6b;
    --muted-brown: #6A3F33;
    --text-dark: #1D1D1B;
    --muted-gray: #7A7A78;
    --light-gray: #f5f5f5;
    --glass: rgba(255,255,255,0.08);
    --radius-lg: 18px;
    --max-width: 1200px;
    --transition: all 0.3s ease;
    --color-secondary-light: #f88344;
    --color-primary-dark: #3c1b0c;
    --gradient-red: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-light) 100%);
    --gradient-orange: linear-gradient(135deg, var(--color-secondary-light) 0%, #ffa94d 100%);
    --gradient-cream: linear-gradient(135deg, var(--light-gray) 0%, #f0f0f0 100%);
    --gradient-brown: linear-gradient(135deg, var(--chocolate) 0%, var(--muted-brown) 100%);
    --gradient-warm: linear-gradient(135deg, rgba(162, 54, 54, 0.1) 0%, rgba(248, 131, 68, 0.1) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

a {
    text-decoration: none !important;
    color: inherit !important;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-red);
    color: white !important;
}

.btn-primary:hover {
    background-color: var(--accent-red-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.3);
}

.btn-ghost {
    background-color: transparent;
    border: 1px solid var(--accent-red);
    color: var(--accent-red) !important;
}

.btn-ghost:hover {
    background-color: var(--accent-red);
    color: white !important;
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    transition: var(--transition);
}

.badge:hover {
    background-color: var(--accent-red);
    color: white;
    transform: translateY(-2px);
}

/* ===== HEADER STYLES ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 4px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo img {
    height: 96px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    color: #000;
    font-size: 18px;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-red);
    transition: var(--transition);
}

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

.header-actions {
    display: flex;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

#close-menu-btn {
    display: none;
}

/* Navigation */
.nav-links {
    display: flex;
    align-items: center;
}

.primary-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
}

.menu-link {
    color: #333;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    padding: 0.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.menu-link:hover {
    color: #a23636;
}

.menu-indicator {
    width: 4px;
    height: 4px;
    background: #a23636;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-link:hover .menu-indicator {
    opacity: 1;
}

.current-menu-item .menu-link {
    color: #a23636 !important;
    font-weight: 600;
}

.current-menu-item .menu-indicator {
    opacity: 1;
}

/* Header Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}



/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Close Menu Button */
.close-menu-btn {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #333;
    z-index: 1002;
}

.close-menu-btn svg {
    display: block;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }
    
    .mobile-menu-btn {
        display: block;
		background-color: #ffffff00 !important;
        box-shadow: none;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .close-menu-btn {
        display: block;
    }
    
    .primary-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .menu-item {
        width: 100%;
    }
    
    .menu-link {
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1.1rem;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-cta {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid #f0f0f0;
    }
    
    .btn-small {
        padding: 0.875rem 1.5rem;
        width: 100%;
        justify-content: center;
    }
    
    /* Animate hamburger to X */
    .nav-links.active ~ .mobile-menu-btn .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-links.active ~ .mobile-menu-btn .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .nav-links.active ~ .mobile-menu-btn .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}
/* ===== HOME PAGE STYLES ===== */
/* Enhanced Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    color: var(--text-dark);
    padding: 8rem 0 5rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-red-light) 0%, transparent 70%);
    opacity: 0.05;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-card {
    background-color: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.hero-card:hover {
    transform: translateY(-10px) rotateX(5deg);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--muted-gray);
}
input#mailpoet_email:focus{
    border: none !important;
}
.waitlist-form {
    margin: 2rem 0 1rem;
    border-radius: 2rem;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.1);
}

.waitlist-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    background: transparent;
}

.waitlist-form button {
    background-color: var(--accent-red);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.waitlist-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.waitlist-form button:hover::before {
    left: 100%;
}

.waitlist-form button:hover {
    background-color: var(--accent-red-light);
}

.sign-in-link {
    font-size: 0.9rem;
    color: var(--muted-gray);
}

.sign-in-link a {
    color: var(--accent-red);
    text-decoration: underline;
}

/* Enhanced Value Grid */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, white 0%, #fafafa 100%);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-red-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(229, 57, 53, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    transition: var(--transition);
    position: relative;
}

.value-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--accent-red);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(10deg);
}

.value-card:hover .value-icon::after {
    opacity: 0.3;
    transform: scale(1.1);
}

/* Enhanced Feature Sections */
.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.feature-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-section:nth-child(even) .feature-content {
    order: 2;
}

.feature-section:nth-child(even) .feature-image {
    order: 1;
}

.feature-content {
    padding: 2rem;
    position: relative;
}

.feature-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.5s ease;
    position: relative;
}

.feature-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(229, 57, 53, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-image:hover::before {
    opacity: 1;
}

.feature-image:hover {
    transform: rotateY(5deg) scale(1.02);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.05);
}

/* Enhanced Problem Section */
.problem-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #f0f0f0 100%);
    padding: 5rem 0;
    position: relative;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.problem-stat {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, white 0%, #fafafa 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}
section.contact-home {
    padding: 80px 0px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    width: 100%;
    background: #a23636;
}
.problem-stat:hover::before {
    opacity: 0.05;
}

.problem-stat:hover {
    transform: translateY(-10px);
}

.problem-stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}
.home-contact-info {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
 /* Enhanced Middle Section (Dark Brown) */
        .middle-section {
            background: linear-gradient(135deg, var(--color-primary-dark) 0%, #2d160d 100%);
            color: var(--color-text-light);
            padding: 8rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .middle-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, var(--color-secondary-light) 0%, transparent 70%);
            opacity: 0.03;
            animation: rotate 20s linear infinite;
        }

        .tag-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .tag {
            border: 1px solid var(--color-secondary-light);
            color: var(--color-secondary-light);
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .tag::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(248, 131, 68, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .tag:hover::before {
            left: 100%;
        }

        .tag:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 5px 15px rgba(248, 131, 68, 0.3);
        }

        .mantra {
            font-size: 67px;
            font-weight: 500;
            line-height: 1.2;
            color: var(--color-secondary-light);
            margin-bottom: 3rem;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        .mantra .word {
            display: inline-block;
            transition: all 0.3s ease;
            position: relative;
        }

        .mantra .word::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-secondary-light);
            transition: width 0.3s ease;
        }

        .mantra .word:hover::after {
            width: 100%;
        }

        .mantra:hover .word {
            transform: translateY(-5px);
        }

        .mantra .dot {
            color: var(--accent-red);
            margin: 0 6px;
            font-size: 1.2em;
            animation: pulse 2s infinite;
        }

        .description {
            max-width: 700px;
            margin: 0 auto 5rem;
            font-size: 1rem;
            color: var(--color-secondary-light);
            position: relative;
            z-index: 1;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem 2rem;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.3s ease;
            padding: 2rem 1rem;
            border-radius: var(--radius-lg);
            position: relative;
            overflow: hidden;
        }

        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(248, 131, 68, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }

        .feature-item:hover::before {
            opacity: 1;
        }

        .feature-item:hover {
            transform: translateY(-10px);
        }

        .feature-item svg {
            width: 80px;
            height: 80px;
            margin-bottom: 1rem;
            fill: none;
            stroke: var(--color-secondary-light);
            stroke-width: 1;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .feature-item:hover svg {
            stroke: var(--accent-red);
            transform: scale(1.1);
            filter: drop-shadow(0 5px 15px rgba(248, 131, 68, 0.3));
        }

        .feature-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--color-secondary-light);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .feature-item:hover .feature-title {
            transform: translateY(-2px);
        }

        .feature-description {
            font-size: 0.9rem;
            color: var(--color-secondary-light);
            position: relative;
            z-index: 1;
        }

/* Enhanced MVP Features */
.mvp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mvp-card {
    background: linear-gradient(135deg, white 0%, #fafafa 100%);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mvp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mvp-badge {
    position: absolute;
    top: -47px;
    right: -45px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.3);
    z-index: 1;
}

/* Enhanced Traction Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-red), var(--accent-red-light));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-content {
    padding: 2rem;
    background: linear-gradient(135deg, white 0%, #fafafa 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content:hover {
    transform: scale(1.03);
}



/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px) rotateX(5deg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: border 0.3s ease, transform 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    transform: translateZ(5px);
}




/* Newsletter Specific Styles */
.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input[type="email"] {
    padding: 10px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 14px;
    flex-grow: 1;
    min-width: 150px;
}

.newsletter-form button {
    background-color: #a23636;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #d32f2f;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-card {
        max-width: 70%;
    }
    
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mantra {
        font-size: 5rem;
    }
    
    .values-grid-warm {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .day-with-nari-wrap {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Header & Navigation */
    .nav-links, .header-actions {
        display: none;
    }
    .hero{
      min-height: 60vh !important;
    }
    .nav-links.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    #close-menu-btn {
        display: block;
        position: absolute;
        top: 2rem;
        right: 3rem;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        z-index: 1002;
    }
    
    /* Hero Section */
    .hero-card {
        max-width: 100%;
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .waitlist-form {
        flex-direction: column;
    }
    
    /* Layout adjustments */
    .feature-section, .team-section {
        grid-template-columns: 1fr;
    }
    
    .value-grid, .problem-stats {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .mantra {
        font-size: 3rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-col, .footer-links, .newsletter-col {
        width: 100%;
    }
    
    /* About Page */
    .features-grid-warm {
        grid-template-columns: 1fr;
    }
    
    .values-grid-warm {
        grid-template-columns: 1fr;
    }
    
    .timeline-warm::before {
        left: 31px;
    }
    
    .timeline-item-warm {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .founder-grid-warm {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero-card {
        padding: 1.5rem;
    }
    
    .mantra {
        font-size: 2rem;
    }
    
    .cta-button-warm {
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
    }
    
    /* Specific mobile adjustments */
    .expertise-content_heading {
        font-size: 22px;
    }
    
    .expertise-content_img {
        height: 200px;
        width: 100px;
        border-radius: 10px;
    }
    
    .heading-xs {
        font-size: 16px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* ===== UTILITY CLASSES ===== */
.glow {
    position: relative;
}

.glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(229, 57, 53, 0.1) 0%, transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.glow:hover::before {
    opacity: 1;
}

.rotate-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hover-3d:hover {
    transform: translateZ(10px);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}
form#mailpoet-ajax-form1 button {
    background-color: #a23636 !important;
}
.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.feature-item:hover {
    transform: translateY(-10px);
    border-radius: 15px !important;
    background: linear-gradient(135deg, rgba(248, 131, 68, 0.1), transparent) !important;
}
input[type="email"]{
	height:48px !important;
}

 /* ---------- Newsletter Form Wrapper ---------- */
.tnp-subscription {
    max-width: 448px !important;
    border-radius: 18px !important;
    font-family: "Inter", sans-serif;
    width: 100% 1important;
}

/* ---------- Label ---------- */
.tnp-subscription label {
    font-size: 14px !important;
    color: #333 !important;
    margin-bottom: 6px !important;
    display: block !important;
    font-weight: 600 !important;
}

/* ---------- Input Field ---------- */
.tnp-subscription .tnp-email {
    width: 100% !important;
    padding: 14px 16px !important;
    font-size: 15px !important;
    border: 1px solid #ccc !important;
    border-radius: 12px !important;
    outline: none;
    transition: all 0.3s ease !important;
}

/* Focus Effect */
.tnp-subscription .tnp-email:focus {
    border-color: #5a3ff6 !important;
    box-shadow: 0 0 0 4px rgba(90, 63, 246, 0.2) !important;
}
 .expertise-slide.blue_animation_card {
   height: 846px ;
 }
/* ---------- Submit Button ---------- */
.tnp-subscription .tnp-submit {
    width: 100% !important;
    padding: 11px !important;
    background: #a23636 !important;
    border: none !important;
    border-radius: 12px;
    color: white !important;
    font-size: 16px !important;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s 
ease-in-out;
}

/* Hover Effect */
.tnp-subscription .tnp-submit:hover {
    background: #a23636 !important;
    transform: translateY(-2px) important;
    box-shadow: 0 6px 15px rgba(90,63,246,0.3) important;
}

/* Expertise Section */
.expertise-content_img {
    background: #0b0b0b;
    border-radius: 36px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}

.expertise-content_img .medium-image {
    overflow: hidden;
    border-radius: 32px;
    position: relative;
    aspect-ratio: 3 / 6;
}

.expertise-content_img .medium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 32px;
}

.expertise-content_heading {
    font-size: 50px;
}

.expertise-content_bottom {
    max-width: 40em;
}

.heading-xs {
    font-size: 30px;
    font-weight: 500;
}

.paragraph-m {
    font-size: 16px;
    font-weight: 400;
}

.expertise-points {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}
form#mailpoet-ajax-form button {
    border-radius: 0;
	background-color: #a23636;
}

form#mailpoet-ajax-form {
    display: flex;
    width: 100%;
}
p#mailpoet_message {
    position: absolute;
    width: 100%;
    margin-top: 10px;
}
.expertise-points li {
    position: relative;
    padding: 10px 14px 10px 40px;
    margin-bottom: 10px;
    background: #fefefe54;
    border-radius: 12px;
    font-size: 14px;
    color: #333;
    line-height: 1.45;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    border: 1px solid #a2363645;
}

.expertise-points li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    background: #4CAF50;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Science Section */
.science-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.science-diagram {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid rgba(162, 54, 54, 0.1);
}

.diagram-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-red);
    transition: var(--transition);
}

.diagram-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.science-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--muted-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.science-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(162, 54, 54, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(248, 131, 68, 0.05) 0%, transparent 50%);
    z-index: 1;
}
 .science-content {
    position: relative;
    z-index: 2;
    }

    .science-header {
    text-align: center;
    margin-bottom: 4rem;
    }

    .science-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(162, 54, 54, 0.3);
    }

    .science-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    }

    .science-visual {
    position: relative;
    padding: 2rem;
    }

    .science-diagram {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid rgba(162, 54, 54, 0.1);
    }

    .diagram-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-red);
    transition: var(--transition);
    }

    .diagram-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .diagram-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    flex-shrink: 0;
    }

    .diagram-text {
    flex: 1;
    }

    .diagram-text h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    }

    .diagram-text p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--muted-gray);
    }

    .science-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    }

    .stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    }

    .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
    }

    .stat-label {
    font-size: 0.8rem;
    color: var(--muted-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    }

    .science-text {
    padding: 2rem;
    }
    .feature-item-science {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #f9efef73 0%, #f8f9fa 100%);
    transition: var(--transition);
    }

    .feature-item-science:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .feature-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
    }

    .feature-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1rem;
    }

    .feature-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted-gray);
    line-height: 1.5;
    }
 /* Enhanced Blog Section */
.blog-section {
    padding: 5rem 0;
    position: relative;
     background-color: var(--light-gray);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: linear-gradient(135deg, white 0%, #fafafa 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.blog-card:hover::before {
    opacity: 0.05;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: var(--muted-gray);
}

.blog-tag {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 500;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--accent-red);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--muted-gray);
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--accent-red);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    transform: translateX(5px);
    text-shadow: 0 0 20px rgba(229, 57, 53, 0.3);
}

/* New: Contact Details Section */
.contact-details-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #f0f0f0 100%);
    padding: 4rem 0;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact-detail-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.contact-detail-card:hover::before {
    opacity: 0.05;
}

.contact-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(229, 57, 53, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.contact-detail-card:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-detail-card h3 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-detail-card p {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* New: Experience NARI Section */
.experience-nari-section {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-light) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.experience-nari-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.experience-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.experience-nari-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.experience-nari-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.experience-btn {
    background-color: white;
    color: var(--accent-red) !important;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.experience-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background-color: var(--light-gray);
}

.medium-image .image {
    width: 65%;
}
.expertise-content_img {
    transform: rotate(360deg);
}
/* UL Styling */
.expertise-points {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    padding-left:0 !important;
}

    /* LI Item */
    .expertise-points li {
      position: relative;
        padding: 10px 14px 10px 40px;
        margin-bottom: 10px;
        background: #fefefe54;
        border-radius: 12px;
        font-size: 14px;
        color: #333;
        line-height: 1.45;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
        border: 1px solid #a2363645;
    }
    .expertise-content {
    justify-content: flex-start !important;
    }
    /* Icon Bullet */
    .expertise-points li::before {
        content: "✔";
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        background: #4CAF50;
        color: #fff;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .expertise-content_bottom {
        max-width: 40em;
    }
   .button-wrap a {
        color: #fff;
    }


.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-red), var(--accent-red-light));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 2rem;
    background: linear-gradient(135deg, white 0%, #fafafa 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.timeline-content:hover::before {
    opacity: 0.05;
}

.timeline-content:hover {
    transform: scale(1.03);
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    border: 4px solid white;
    border-radius: 50%;
    top: 15px;
    right: -10px;
    z-index: 1;
    box-shadow: 0 0 20px rgba(229, 57, 53, 0.3);
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}


.redy-nari
 {
    height: 60vh;
}

/* Organic Background */
.organic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.organic-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(40px);
}

.organic-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-red);
    top: -200px;
    left: -200px;
    animation: float 30s ease-in-out infinite;
}

.organic-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--color-secondary-light);
    bottom: -150px;
    right: -150px;
    animation: float 40s ease-in-out infinite reverse;
}

/* Warm Hero Section */
.warm-hero-about {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-cream);
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.warm-hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.warm-hero-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--gradient-red);
    color: var(--cream);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(162, 54, 54, 0.2);
}

.warm-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--chocolate);
    position: relative;
    display: inline-block;
}

.warm-hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: var(--gradient-red);
    border-radius: 2px;
}

.warm-hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--muted-brown);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Redesigned Numbered Image Cards Layout - MODIFIED FOR COLUMN LAYOUT */
.numbered-image-cards {
    padding: 6rem 2rem;
    background: white;
    position: relative;
}

.card-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.story-card-modern {
    display: flex; /* Changed from grid */
    flex-direction: column; /* Content Top, Image Bottom */
    gap: 3rem; /* Reduced gap for vertical flow */
    margin-bottom: 3rem;
    align-items: center;
    position: relative;
}

/* Removed even/odd reordering logic to enforce consistent column layout */
.story-card-modern:nth-child(even) {
    /* Kept for consistency but no longer needed for layout */
}

.story-card-modern:nth-child(even) .story-image-side {
    order: unset;
}

.story-card-modern:nth-child(even) .story-content-side {
    order: unset;
}

/* Image Side */
.story-image-side {
    position: relative;
    width: 100%; /* Full width of its container */
    max-width: 1000px; /* Added max-width for better aesthetic on desktop */
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(62, 30, 21, 0.15);
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-card-modern:hover .story-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(62, 30, 21, 0) 0%,
        rgba(62, 30, 21, 0.4) 100%);
    z-index: 1;
}

/* Large Number Badge */
.large-number-badge {
    position: absolute;
    top: -30px;
    left: 30px;
    width: 120px;
    height: 120px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(162, 54, 54, 0.4);
    border: 6px solid white;
}

.large-number-badge::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(248, 131, 68, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Content Side */
.story-content-side {
    padding: 0; /* Adjusted for column layout */
    max-width: 1000px; /* Added max-width to match image */
}

.story-title-modern {
    font-size: 3rem;
    font-weight: 800;
    color: var(--chocolate);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
}

.story-title-modern::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-orange);
    border-radius: 2px;
}

.story-text-modern {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted-brown);
    margin-bottom: 2rem;
}

.story-highlight {
    background: linear-gradient(135deg, 
        rgba(248, 236, 207, 0.3),
        rgba(248, 248, 184, 0.3));
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-red);
    margin: 2rem 0;
}

.story-highlight p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--chocolate);
    line-height: 1.6;
    margin: 0;
}

.story-bullets-modern {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.story-bullets-modern li {
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--muted-brown);
    border-bottom: 1px solid rgba(62, 30, 21, 0.1);
}

.story-bullets-modern li:last-child {
    border-bottom: none;
}

.story-bullets-modern li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 20px;
    height: 20px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.story-bullets-modern li:nth-child(1)::before { content: '✓'; }
.story-bullets-modern li:nth-child(2)::before { content: '✧'; }
.story-bullets-modern li:nth-child(3)::before { content: '✦'; }
.story-bullets-modern li:nth-child(4)::before { content: '♡'; }
.story-bullets-modern li:nth-child(5)::before { content: '★'; }
.story-bullets-modern li:nth-child(6)::before { content: '✓'; }
.story-bullets-modern li:nth-child(7)::before { content: '✦'; }

/* Image Caption */
.image-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    color: white;
    z-index: 2;
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Founder Spotlight */
.founder-spotlight-warm {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #fff5f5f0 0%, #fefafa 100%);
    position: relative;
}

.founder-grid-warm {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founder-portrait-warm {
    position: relative;
}

.portrait-frame-warm {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border: 8px solid white;
}

.portrait-frame-warm::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: var(--gradient-red);
    border-radius: calc(var(--radius-lg) + 10px);
    z-index: -1;
    opacity: 0.2;
}

.portrait-frame-warm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-badge-warm {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    background: var(--gradient-red);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(162, 54, 54, 0.3);
    transform: rotate(3deg);
}

.founder-info-warm {
    padding: 2rem;
}

.founder-name-warm {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--chocolate);
    margin-bottom: 0.5rem;
}

.founder-title-warm {
    font-size: 1.4rem;
    color: var(--accent-red);
    margin-bottom: 2rem;
    font-weight: 500;
}

.founder-story-warm {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted-brown);
    margin-bottom: 2rem;
}

.founder-quote-warm {
    padding: 2.5rem;
    background: linear-gradient(135deg, 
        rgba(248, 236, 207, 0.8),
        rgba(248, 248, 184, 0.8));
    border-radius: var(--radius-lg);
    margin: 3rem 0;
    border-left: 4px solid var(--color-secondary-light);
    position: relative;
}

.founder-quote-warm::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: var(--color-secondary-light);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.founder-quote-warm p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--chocolate);
    line-height: 1.6;
    margin: 0;
}

/* Features Showcase */
.features-showcase-warm {
    padding: 8rem 2rem;
    background: var(--chocolate);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.features-header-warm {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.features-header-warm h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, 
        var(--color-secondary-light),
        var(--cream));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-header-warm p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: var(--soft-yellow);
}

/* Stats Section */
.stats-section-warm {
    padding: 6rem 2rem;
    background: var(--gradient-cream);
    position: relative;
}

.stats-grid-warm {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.stat-item-warm {
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(62, 30, 21, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item-warm:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(62, 30, 21, 0.15);
}

.stat-item-warm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-red);
}

.stat-circle-warm {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(162, 54, 54, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-circle-warm::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid transparent;
    border-top-color: var(--accent-red);
    border-radius: 50%;
    animation: spin 3s linear infinite;
}

.stat-number-warm {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.stat-label-warm {
    font-size: 0.9rem;
    color: var(--muted-brown);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section-warm {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, 
        var(--color-primary-dark),
        var(--chocolate));
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(248, 131, 68, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(162, 54, 54, 0.1) 0%, transparent 50%);
}

.cta-content-warm {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-badge-warm {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-orange);
    color: var(--chocolate);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(248, 131, 68, 0.3);
}

.cta-title-warm {
    font-size: 3.5rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-description-warm {
    font-size: 1.3rem;
    color: var(--soft-yellow);
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-button-warm {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: var(--gradient-orange);
    color: var(--chocolate);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(248, 131, 68, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button-warm:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(248, 131, 68, 0.4);
}

.cta-button-warm::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    transition: left 0.7s ease;
}

.cta-button-warm:hover::after {
    left: 100%;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .warm-hero-title {
        font-size: 3.5rem;
    }
    
    /* Removed .story-card-modern gap adjustment as it's now flex-column */
    
    .stats-grid-warm {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .warm-hero-about {
        padding: 6rem 1rem 3rem;
    }
    
    .story-card-modern {
        /* Already column due to flex-direction: column */
        gap: 3rem;
    }
    
    /* Removed all even/odd reordering logic for column layout */
    .story-card-modern:nth-child(even) {
        /* This block is no longer relevant for layout change */
    }
    
    .story-card-modern:nth-child(even) .story-image-side,
    .story-card-modern:nth-child(even) .story-content-side {
        order: unset;
    }
    
    .story-image-side {
        height: 400px;
    }
    
    .large-number-badge {
        width: 100px;
        height: 100px;
        font-size: 2.8rem;
        top: -25px;
        left: 25px;
    }
    
    .founder-grid-warm {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .portrait-frame-warm img {
        height: 100%;
    }
	.founder-info-warm{
		padding:1rem;
	}
}

@media (max-width: 768px) {
    .warm-hero-title {
        font-size: 2.8rem;
    }
    
    .story-title-modern,
    .features-header-warm h2,
    .founder-name-warm,
    .cta-title-warm {
        font-size: 2.5rem;
    }
    
    .story-image-side {
        height: 350px;
    }
    
    .large-number-badge {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
        top: -20px;
        left: 20px;
        border-width: 4px;
    }
}

@media (max-width: 576px) {
    .warm-hero-title {
        font-size: 2.3rem;
    }
    
    .numbered-image-cards,
    .founder-spotlight-warm,
    .features-showcase-warm,
    .stats-section-warm,
    .cta-section-warm {
        padding: 80px 20px;
    }
	.founder-info-warm{
		padding:0 !important;
	}
	.founder-story-warm{
		padding:0;
	}
    .story-title-modern,
    .features-header-warm h2,
    .founder-name-warm,
    .cta-title-warm {
        font-size: 2rem;
    }
    
    .story-image-side {
        height: 300px;
    }
    
    .stats-grid-warm {
        grid-template-columns: 1fr;
    }
    
    .cta-button-warm {
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
    }
}

/* Features Showcase */
.features-showcase-warm {
    padding: 8rem 2rem;
    background: var(--chocolate);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.features-header-warm {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.features-header-warm h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, 
        var(--color-secondary-light),
        var(--cream));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-header-warm p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: var(--soft-yellow);
}

.features-grid-warm {
    display: grid;
    gap: 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    grid-template-columns: repeat(2, 1fr);
}

.feature-card-warm {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(248, 236, 207, 0.2);
    border-radius: var(--radius-lg);
    padding: 3rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card-warm:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(248, 236, 207, 0.3);
}

.feature-number-warm {
       position: absolute;
    top: -4px;
    right: 0px;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(248, 236, 207, 0.05);
    line-height: 1;
}

.feature-header-warm {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon-warm {
    width: 70px;
    height: 70px;
    background: var(--gradient-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-header-warm h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--cream);
}

.feature-description-warm {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: var(--soft-yellow);
}

.feature-benefits-warm {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-benefits-warm li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(248, 236, 207, 0.1);
    color: var(--soft-yellow);
}

.feature-benefits-warm li:last-child {
    border-bottom: none;
}

.feature-benefits-warm li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary-light);
    font-weight: bold;
}

/* Values Section */
.values-section-warm {
    padding: 8rem 2rem;
    background: white;
    position: relative;
}

.values-container-warm {
    max-width: var(--max-width);
    margin: 0 auto;
}

.values-header-warm {
    text-align: center;
    margin-bottom: 6rem;
}

.values-header-warm h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--chocolate);
}

.values-header-warm p {
    font-size: 1.2rem;
    color: var(--muted-brown);
    max-width: 600px;
    margin: 0 auto;
}

.values-grid-warm {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.value-card-warm {
   
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid rgba(162, 54, 54, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card-warm:hover {
    transform: translateY(-10px);
    border-color: var(--color-secondary-light);
    box-shadow: 0 20px 40px rgba(248, 131, 68, 0.1);
}

.value-card-warm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-red);
}

.value-icon-warm {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    transition: var(--transition);
}

.value-card-warm:hover .value-icon-warm {
    transform: scale(1.1) rotate(10deg);
    background: var(--gradient-red);
    color: white;
}

.value-card-warm h3 {
    font-size: 1.5rem;
    color: var(--chocolate);
    margin-bottom: 1rem;
}

.value-card-warm p {
    color: var(--muted-brown);
    line-height: 1.6;
}


@media(max-width: 780px){
    .features-grid-warm{
        grid-template-columns: repeat(1, 1fr);
    }
    .values-grid-warm {
    grid-template-columns: repeat(1, 1fr);
    }
    .timeline-warm::before{
        left: -5%;
    }
    .timeline-item-warm{
        width: 100%;
    }
}
h2.expertise-content_heading.glow a {
            color: #000 !important;
        }
h2.expertise-content_heading.glow a:hover {
    color: #000 !important;
}
.btn-primary a:hover {
    background-color: var(--accent-red) !important;
    color: white !important;
}
@media(max-width: 420px){
    .expertise-content_heading {
        font-size: 22px;
    }
    .expertise-content{
        height: 600px !important;
        grid-row-gap: 0.5em !important;
        padding: 1em !important;
    }
    .expertise-content_img {
        height: 200px;
        width: 100px;
        border-radius: 10px;
    }
    .heading-xs {
        font-size: 16px;
    }
    .expertise-slide.blue_animation_card {
    height: 640px;
   }
}


@media (max-width: 768px) {
    /* Reduce animation intensity for better performance */
    .feature-section,
    .timeline-item,
    .value-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .button-wrap {
        display: none;
    }
    
    /* Disable hover effects on touch devices */
    @media (hover: none) {
        .value-card:hover,
        .feature-image:hover,
        .mvp-card:hover,
        .blog-card:hover {
            transform: none;
        }
    }
    .content-box{
        text-align: left;
    }
    .content-title{
        text-align: left;
    }
    .content-desc{
        text-align: left;
    }
    .content-notes{
        text-align: left;
    }
    .content-subtitle{
        text-align: left;
    }
    .science-visual {
        padding: 0;
    }
    .science-diagram{
        position: 1rem;
    }
    .stat-item{
        text-align: left;
    }
    .science-text{
        padding: 0;
    }
    .contact-form{
        padding:1rem;
    }
    .redy-nari{
        display:none;
    }
   section#expertises {
       padding: 0px 0px; 
    }
    .heading-xs {
        font-size: 21px;
         margin-bottom: 0;
    }
    .paragraph-m {
        font-size: 11px;
        margin-bottom: 0;
    }
    .expertise-content_heading {
        font-size: 30px;
    }
    .expertise-points li{
        font-size:10px;
        padding: 5px 14px 5px 40px;
    }
    a.logo img {
        height: 78px;
    }
    .expertise-points {
         margin: 0px 0 0; 
    }
    .phone-frame {
        width: 100% !important;
    }
    .app-screen{
        padding:0;
    }
    .expertise-content_img{
        border-radius: 24px;
    }
    .expertise-content_img{
        aspect-ratio: 1 / 1;
        margin:auto;
    }
    .medium-image {
        aspect-ratio: 3 / 6;
    }
}
section#contact {
    position: relative;
    z-index: 1;
}

.button-default__text {
    color: #000;
}

.waitlist-form input {
    height: 47px;
}

img.custom-logo {
    height: 100px;
    width: 100%;
}



/* ---- MAIN NAV ---- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}


#nav-menu .menu-link {
    display: block;
    padding: 12px 0;
    font-size: 18px;
}

/* Close Button */
#close-menu-btn {
    font-size: 35px;
    border: none;
    background: none;
    cursor: pointer;
    margin-left: auto;
    color: #d6417a;
}

/* ---- HAMBURGER ---- */
.hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #111;
}


/* Day with NARI Section */
.day-with-nari {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f9f9ff 0%, #fff5f5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: block;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(90deg, #a23636, #d45c5c);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.gradient-text {
    background: linear-gradient(90deg, #a23636, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout */
.day-with-nari-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* CONTENT SLIDER */
.content-slider {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.content-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.content-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: all;
}

.content-category {
    display: inline-block;
    background: #fee2e2;
    color: #a23636;
    font-size: 12px;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.content-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.content-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.content-notes {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
}

.content-notes li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #444;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.content-notes li:last-child {
    border-bottom: none;
}

.content-notes li::before {
    content: "✓";
    color: #a23636;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Content Navigation */
.content-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #eee;
}

.nav-btn {
    background: #a23636;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-btn:hover {
    background: #8a2c2c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(162, 54, 54, 0.3);
}

.nav-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.slide-indicator {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.current-slide {
    color: #a23636;
    font-weight: 700;
    font-size: 1.2em;
}

/* PHONE DISPLAY */
.phone-display {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 50%;
    height: 550px;
    background: #1a1a1ad1;
    border-radius: 15px;
    padding: 4px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-notch {
  position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #aeaeae;
    border-radius: 50%;
    z-index: 2;
}

.phone-time {
    position: absolute;
    top: 17px;
    left: 35px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    z-index: 3;
}

.phone-battery {
    position: absolute;
    top: 17px;
    right: 35px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-screens {
    width: 100%;
    height: 100%;
    position: relative;
}

.app-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    object-fit: cover;
}

.app-screen.active {
    opacity: 1;
    visibility: visible;
}

/* Slide Dots */
.slide-dots {
    display: flex;
    gap: 12px;
    margin-top: 2rem;
    background: white;
    padding: 9px 10px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-dot.active {
    background: #a23636;
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(162, 54, 54, 0.2);
}

.slide-dot:hover {
    background: #a23636;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1100px) {
    .day-with-nari-grid {
        gap: 3rem;
    }
    
    .phone-mockup {
        width: 320px;
        height: 650px;
    }
}

@media (max-width: 992px) {
    .day-with-nari-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .phone-display {
        order: -1;
    }
    
    .content-slider {
        min-height: 500px;
    }
    
    .phone-mockup {
        width: 300px;
        height: 620px;
    }
}

@media (max-width: 768px) {
    .day-with-nari {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .content-title {
        font-size: 1.7rem;
    }
    
    .content-nav {
        margin-top: 3rem;
        padding-top: 1.5rem;
    }
    
    .phone-mockup {
        width: 278px;
        border-radius: 35px;
        height: 570px;
    }
    
    .slide-dots {
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .content-title {
        font-size: 1.5rem;
    }
    
    .content-desc {
        font-size: 1rem;
    }
    
    .nav-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .phone-mockup {
        width: 260px;
        height: 540px;
        border-radius: 35px;
    }
    
    .phone-screen {
        border-radius: 25px;
    }
}


/* ===== MOBILE RESPONSIVE (max-width: 780px) ===== */
@media (max-width: 780px) {
    /* Header Adjustments */
    .header-container {
        padding: 0.5rem 1rem;
    }
    
    .logo img {
        height: 70px;
    }
    
    /* Hero Section */
    .hero {
        min-height: 70vh;
        padding: 6rem 0 3rem;
    }
    
    .hero-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .waitlist-form {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .waitlist-form input,
    .waitlist-form button {
        width: 100%;
        padding: 0.8rem;
    }
    
    .waitlist-form button {
        margin-top: 0.5rem;
    }
    
    /* Problem Section */
    .problem-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-stat {
        padding: 1.5rem;
    }
    
    .problem-stat-number {
        font-size: 2.2rem;
    }
    
    /* Middle Section (Dark Brown) */
    .middle-section {
        padding: 3rem 1rem;
    }
    
    .mantra {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .mantra .word {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .mantra .dot {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-item svg {
        width: 60px;
        height: 60px;
    }
    
    /* Value Grid */
    .value-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    
    
    /* Day with NARI Section */
    .day-with-nari-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .phone-display {
        order: -1;
    }
    
    .phone-mockup {
        width: 280px !important;
        height: 570px !important;
    }
    
    .content-slider {
        min-height: 500px;
    }
    
    .content-title {
        font-size: 1.5rem;
    }
    
    .content-desc {
        font-size: 0.95rem;
    }
    
    .content-nav {
        position: absolute;
        margin-top: 2rem;
        padding-top: 1rem;
    }
    
    .slide-dots {
        justify-content: center;
        margin-top: 1rem;
    }
    
    /* Science Section */
    .science-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .science-diagram {
        padding: 1.5rem;
    }
    
    .diagram-item {
        padding: 0.8rem;
    }
    
    .science-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item {
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .feature-item-science {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    /* Blog Section */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-image {
        height: 180px;
    }
    
    /* Experience NARI Section */
    .experience-nari-section {
        padding: 3rem 1rem;
    }
    
    .experience-content h2 {
        font-size: 2rem;
    }
    
    /* MVP Features */
    .mvp-grid {
        grid-template-columns: 1fr;
    }
    
    .mvp-card {
        padding: 1.5rem;
    }
    
    /* Timeline */
    .timeline::after {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item::after {
        left: 20px;
        right: auto;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    /* Contact Details */
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-detail-card {
        padding: 1.5rem;
    }
    
    /* Contact Form */
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Footer */
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .newsletter-section {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* About Page Specific */
    .warm-hero-title {
        font-size: 2.2rem;
    }
    
    .story-card-modern {
        flex-direction: column;
        margin-bottom: 3rem;
    }
    
    .story-image-side {
        height: 250px;
    }
    
    .large-number-badge {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        top: -15px;
        left: 15px;
    }
    
    .story-title-modern {
        font-size: 1.8rem;
    }
    
    .story-text-modern {
        font-size: 1rem;
    }
    
    .features-grid-warm,
    .values-grid-warm {
        grid-template-columns: 1fr;
    }
    
    .feature-card-warm,
    .value-card-warm {
        padding: 1.5rem;
    }
    
    .timeline-warm::before {
        left: 20px;
    }
    
    .timeline-item-warm {
        width: 100%;
        padding-left: 50px;
        padding-right: 15px;
    }
    
    .milestone-card-warm {
        padding: 1.5rem;
    }
    
    /* Hide non-essential animations on mobile */
    .glow::before,
    .value-card:hover::before,
    .feature-image:hover::before {
        display: none;
    }
    
    /* Disable complex hover effects */
    .value-card:hover,
    .feature-image:hover,
    .mvp-card:hover,
    .blog-card:hover,
    .contact-detail-card:hover {
        transform: none !important;
    }
    
    /* Improve touch targets */
    .btn,
    .nav-btn,
    .menu-link {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Font size adjustments for readability */
    body {
        font-size: 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}

/* Additional small screen fixes */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem !important;
    }
    
    .mantra {
        font-size: 1.6rem;
    }
    
    .expertise-content_heading {
        font-size: 1.5rem !important;
    }
    
    .phone-mockup {
        width: 250px !important;
        height: 510px !important;
    }
    
    .content-title {
        font-size: 1.3rem;
    }
    
    .nav-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .slide-dots {
        padding: 10px 15px;
    }
    
    .slide-dot {
        width: 10px;
        height: 10px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects that might cause issues */
    .value-card:hover,
    .feature-image:hover,
    .blog-card:hover,
    .mvp-card:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    /* Increase tap targets */
    .menu-link,
    .btn,
    .nav-btn,
    .slide-dot {
        padding: 7px;
    }
    
    /* Prevent text selection on interactive elements */
    .btn,
    .nav-btn,
    .menu-link {
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }
}

/* Mobile-specific utilities */
@media (max-width: 780px) {
    .mobile-hide {
        display: none !important;
    }
    
    .mobile-show {
        display: block !important;
    }
    
    .mobile-flex {
        display: flex !important;
    }
    
    .mobile-flex-column {
        display: flex !important;
        flex-direction: column;
    }
    
    .mobile-text-center {
        text-align: center !important;
    }
    
    .mobile-full-width {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Improve button visibility */
    .btn-primary,
    .btn-ghost {
        font-size: 16px; /* Prevents iOS zoom */
    }
}

/* Prevent unwanted horizontal scroll */
@media (max-width: 780px) {
    .container,
    .section,
    .hero-content,
    .hero-card {
        max-width: 100vw;
        overflow-x: hidden;
    }
}
h1.glow {
    font-size: 70px;
    margin: 0;
}

p.hero-subtitle {
    margin-bottom: 1.5rem !important;
}

.science-diagram .elementor-icon-box-title {
    margin-top: 0;
}
.timeline-section-warm {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #fef7f3 0%, #fceee8 100%);

}

.timeline-container-warm {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-header-warm {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-header-warm h2 {
    font-size: 2.8rem;
    color: #8b4513;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.timeline-header-warm p {
    font-size: 1.2rem;
    color: #a0522d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.timeline-warm {
    position: relative;
    padding: 2rem 0;
}

.timeline-warm:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #e6b8a2 0%, #8b4513 100%);
    transform: translateX(-50%);
    border-radius: 10px;
}

.timeline-item-warm {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.timeline-item-warm:nth-child(odd) {
    padding-right: 50%;
}

.timeline-item-warm:nth-child(even) {
    padding-left: 50%;
}

.milestone-card-warm {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
    border-left: 5px solid #d2691e;
    max-width: 450px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.milestone-card-warm:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.15);
}

.milestone-year-warm {
    display: inline-block;
    background: linear-gradient(135deg, #a23636 0%, #ee5353 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.milestone-card-warm h3 {
    color: #8b4513;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.milestone-card-warm p {
    color: #5d4037;
    line-height: 1.7;
    font-size: 1.05rem;
}

.timeline-item-warm:nth-child(odd) .milestone-card-warm:before {
    content: '';
    position: absolute;
    right: -15px;
    top: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.timeline-item-warm:nth-child(even) .milestone-card-warm:before {
    content: '';
    position: absolute;
    left: -15px;
    top: 30px;
    width: 0;
    height: 0;
    border-right: 15px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.timeline-item-warm:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #d2691e;
    border-radius: 50%;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    z-index: 1;
}

/* Responsive design */
@media (max-width: 992px) {
    .timeline-warm:before {
        left: 30px;
    }
    
    .timeline-item-warm:nth-child(odd),
    .timeline-item-warm:nth-child(even) {
        padding: 0;
        padding-left: 80px;
        justify-content: flex-start;
    }
    
    .timeline-item-warm:after {
        left: 30px;
    }
    
    .timeline-item-warm:nth-child(odd) .milestone-card-warm:before,
    .timeline-item-warm:nth-child(even) .milestone-card-warm:before {
        left: -15px;
        right: auto;
        border-right: 15px solid white;
        border-left: none;
    }
}

.mvp-card.visible.e-flex.e-con.e-child {
    overflow: hidden;
}

@media (max-width: 768px) {
    .timeline-header-warm h2 {
        font-size: 2.2rem;
    }
    
    .milestone-card-warm {
        padding: 1.5rem;
    }
}
#primary{
	margin: 0 !important;
}

.btn-primary:hover{
	color: #fff !important;
}
		/* =========================
   Contact Form 7 – Modern UI
========================= */

.wpcf7 {
    max-width: 100%;
}

/* Form layout */
.wpcf7-form p {
    margin-bottom: 1.4rem;
}

/* Labels */
.wpcf7-form label {
    display: block;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #333;
}

/* Inputs, textarea, select */
.wpcf7-form-control:not(.wpcf7-submit) {
    width: 100% !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Focus state */
.wpcf7-form-control:not(.wpcf7-submit):focus {
    outline: none;
    border-color: #222;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

/* Textarea */
.wpcf7-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Select */
.wpcf7-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23666' d='M5.5 7l4.5 4.5L14.5 7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    cursor: pointer;
}

/* Submit Button */
.wpcf7-submit {
    background: #111;
    color: #fff;
    padding: 14px 26px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

/* Hover */
.wpcf7-submit:hover {
    background: #000;
    transform: translateY(-1px);
}

/* Spinner */
.wpcf7-spinner {
    display: none;
}

/* Response message */
.wpcf7-response-output {
    border: none !important;
    background: #e8f7ee;
    color: #1f7a4d;
    padding: 14px !important;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 16px !important;
    text-align: center;
}

/* Error message */
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output {
    background: #fdecea;
    color: #b42318;
}

/* Validation error text */
.wpcf7-not-valid-tip {
    font-size: 13px;
    color: #b42318;
    margin-top: 6px;
}

/* Mobile spacing */
@media (max-width: 768px) {
    .wpcf7-form-control:not(.wpcf7-submit) {
        padding: 11px 12px;
    }
	form#mailpoet-ajax-form{
	display:block;
}
.waitlist-form button {
        margin-top: 0;
        padding: 15px;
}
.home-contact-info{
	padding:2rem;
}
h1.glow {
    font-size: 40px !important;
    margin-bottom: 2rem;
}

.journey-section-modern {
	padding: 80px 0px !important;
	background: #fff;
}

.nari-visual-column{
	padding: 0 20px !important;
}
	.values-section-warm{
		padding:80px 20px !important;
	}	
.journey-card-modern {
    padding: 60px 20px 0px !important;
	margin:0 !important;
}

.feature-item-alt{
	padding: 30px 0 30px !important;
}

.feature-benefits-alt{
	margin-left:8px;
}

.founder-info-warm{
	text-align:left;
}
.timeline-item-warm:nth-child(odd), .timeline-item-warm:nth-child(even){
		padding-left:60px !important;
}
	.contact-form-modern {
    width: 100% !important;
}
}
@media (max-width: 420px){
.phone-mockup {
    width: 184px !important;
    height: 364px !important;
}
	.journey-image-modern{
		margin-bottom:20px;
	}
.home-contact-info{
	padding:1rem;
}
.faq-question{
		font-size:1rem !important;
	}
	.contact-hero-split{
		min-height:70vh !important;
	}
.btn, .nav-btn, .menu-link {
    min-height: 35px;
    min-width: 80px;
}
.nav-btn{
	font-size: 0.7rem;
	padding: 5px;
    border-radius: 12px;
}
.experience-btn {
	padding: 12px;
	font-size: 11px;
}
h1.glow {
    font-size: 30px !important;
    margin-bottom: 2rem;
}

.journey-section-modern {
	padding: 80px 0px !important;
	background: #fff;
}

.nari-visual-column{
	padding: 0 20px;
}
.journey-card-modern {
    padding: 60px 20px;
}

.feature-item-alt{
	padding: 30px 0 30px !important;
}

.feature-benefits-alt{
	margin-left:8px;
}

.founder-info-warm{
	text-align:left;
}
.timeline-item-warm:nth-child(odd), .timeline-item-warm:nth-child(even){
		padding-left:60px !important;
}
.contact-form-modern {
    width: 100% !important;
}

}