/* Design Tokens: Light Theme (Shift Model) */

:root {
    --bg-cream: #F9F8F4;
    --bg-white: #FFFFFF;
    --bg-dark: #140F2D; /* Dark Navy for Footer/Text */
    --accent-yellow: #ec8d53; /* The specific yellow from the image */
    --accent-green: #38C7A0; /* New: Green for Success/Shift Side */
    --text-dark: black;
    --text-grey: #545454;
    --border-color: #E5E5E5;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.main-wrapper {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: var(--font-main);
    width: 100%;
    overflow-x: hidden;
    line-height: 1.6;
    margin-top: 2rem;
}
.content-container-headline {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    margin-top:25px;

}
.mobile-comparison-section{
    display: none;
}
/* --- Notification Bar --- */
.notification-bar {
    background-color: var(--bg-dark);
    color: white;
    text-align: center;
    padding: 0 0;
    font-size: 0.9rem;
}
.notification-bar a { color: var(--accent-yellow); text-decoration: underline; }

/* --- Navbar --- */
.navbar { padding: 10px 0; max-width: 800px;     margin: 0 auto;}
.nav-flex { display: flex; justify-content: center; align-items: center; }
.nav-logo { height: 10vh; width: auto; }
.footer-logo { height: 60px; width: auto; }
/* --- Buttons --- */
.primary-btn, .secondary-btn {
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
    transition: all 0.2s ease-in-out; 
}

.primary-btn {
    background-color: var(--accent-yellow);
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(255, 186, 144, 0.4);
}
.primary-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 6px 15px rgba(255, 186, 144, 0.6); 
}
.primary-btn.small { 
    padding: 10px 20px; 
    font-size: 0.9rem; 
    border-radius: 8px; /* Pill style */
}
.cta-group {
    margin-top: 1.5rem;
    text-align: center;
}
.micro-copy { font-size: 0.85rem; color: var(--text-grey); margin-top: 12px; }

/* Secondary Button (Dark Footer CTA) */
.secondary-btn {
    background: black;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
}
.secondary-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

/* --- Shared Headings --- */
.section-heading { 
    text-align: center; 
    font-size: 2.2rem; 
    margin-bottom: 10px; 
    /* font-weight: 800;  */
    color: var(--text-dark);
}
.section-subheading { 
    font-size: 1.2rem; 
    color: var(--text-grey); 
    margin-top: 10px; 
}
.section-headingUserStory { 
 color: white; font-size: 2.5rem; margin-bottom: 10px; line-height: 1.2; font-weight: 800;
 text-align: center;
}
.section-subheadingUserStory { 
    font-size: 1.2rem; 
    color: white; 
    margin-top: 10px; 
}
.section-header-center { 
    text-align: center; 
    margin-bottom: 50px; 
}


/* --- Hero Section --- */
.hero-section { padding: 0px 0 5px; text-align: center; }
.hero-content { max-width: 800px; margin: 0 auto 1.5rem; }
.eyebrow {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--text-grey);
    margin-bottom: 5px;
}
h1 {
    font-size: 3.2rem;
    line-height: 1.1;

    font-weight: 800;
    color: var(--text-dark);
}
h1 strong { font-weight: 800; }
.subtitle { font-size: 1.25rem; color: var(--text-grey); line-height: 1.5; }

/* Hero Video Frame */
.video-frame-wrapper {
    aspect-ratio: 16 / 9;
    background: black;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* --- Pain Points / Conversations Grid --- */

.conversations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.conversation-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.conversation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
}
.conversation-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.convo-quote {
    font-style: italic;
    color: var(--text-grey);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    border-left: 4px solid var(--accent-yellow); 
    padding-left: 1rem;
}

/* --- Expert / Hook Section --- */

.expert-card {
    background: #F2F0E9; /* Slightly darker cream for card */
    border-radius: 20px;
    padding: 0px  60px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.quote-icon {
    font-size: 5rem;
    color: #E5E5E5;
    position: absolute;
    top: 30px;
    left: 40px;
    line-height: 0;
}
.expert-grid {
    display: flex; 
    gap: 50px;
    height:550px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.expert-text { flex: 1.5; }
.expert-visual { flex: 1; }
.expert-text h3 { font-size: 1.8rem; margin-bottom: 20px; line-height: 1.3; color: var(--text-dark); }
.highlight { 
    background: linear-gradient(180deg, transparent 60%, var(--accent-yellow) 60%); 
    transition: background 0.3s ease;
}
.highlight-comparison-section{
    
        background: linear-gradient(180deg, transparent 60%, var(--accent-yellow) 60%); 
    transition: background 0.3s ease;
}
.expert-card:hover .highlight {
    background: linear-gradient(180deg, transparent 50%, var(--accent-yellow) 50%);
}
.expert-photo {
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: rotate(2deg);
    border: 5px solid white;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.expert-card:hover .expert-photo {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.signature { margin-top: 20px; padding-top: 20px; border-top: 1px solid #dcdcdc; }
.signature strong { display: block; font-size: 1.1rem; }



.comparison-grid {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}
.comparison-card {
    flex: 1;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.comparison-card:hover {
    transform: translateY(-5px);
}
.traditional-card {
    background-color: #F8D8D8; /* Light Red/Pink */
    border: 3px solid #E09090;
}
.shift-card {
    background-color: #E8F7F3; /* Light Green/Teal */
    border: 3px solid var(--accent-green);
}
.comparison-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.traditional-card h3 { color: #D55050;text-align: center; }
.shift-card h3 {  color: black; text-align: center; }
.comparison-card .price-tag {
    font-size: 1.4rem;
    text-align: center;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px; color: black;
}

.shift-card .price-tag { 
    color: var(--accent-green); 
    display: flex; 
    align-items: center;
    justify-content: center;
}
.shift-card .price-tag span {
    font-size: 1.5rem;
    font-weight: 700;
   
  color: black;
}
.comparison-card ul {
    list-style: none;
    padding: 0;
    margin-top: 0px;
}
.comparison-card li {
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    text-align: left;
    font-weight: 600;
    font-size: 1.05rem;
}
.comparison-card li:last-child {
    border-bottom: none;
}
.comparison-card .icon {
    margin-right: 10px;
    font-size: 1.2rem;
}
.shift-card .icon { color: var(--accent-green); }
.traditional-card .icon { color: #D55050; }

/* CTA inside the comparison grid container */
.comparison-cta {
    margin-top: 40px;
}


/* --- Feedback Video Grid Section --- */

.video-staggered-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.video-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}
.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.video-preview-container {
    position: relative;
    padding-top: 70%; 
    width: 100%;
    overflow: hidden;
}
.video-preview-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    transition: filter 0.3s ease;
}
.video-card:hover .video-preview-container iframe {
    filter: brightness(1);
}

/* Play Button Overlay */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    border: 2px solid white;
    transition: all 0.2s ease-in-out;
    z-index: 10;
}
.play-overlay:after {
    content: '▶';
    font-size: 20px;
    color: white;
    margin-left: 5px;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
.video-card:hover .play-overlay {
    background: rgba(255, 186, 144, 0.9); /* Accent color on hover */
    transform: translate(-50%, -50%) scale(1.1);
}

/* Client Info Below Video */
.client-info {
    padding: 15px 10px 20px;
    text-align: center;
    position: relative;
}
.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: -25px; 
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid var(--bg-white);
    box-shadow: 0 0 0 2px var(--accent-yellow); /* Yellow ring */
}
.client-name {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 30px; 
    font-size: 1rem;
}
.client-role-company {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.3;
}
.client-role-company strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* --- Features Section --- */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feature-card {
    background: var(--bg-cream);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.feature-card .icon-header {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 15px;
}
.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 0.95rem;
    color: var(--text-grey);
}
.feature-card .benefit {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    color: var(--accent-green);
    border-top: 1px dashed #ddd;
    padding-top: 10px;
}
/* --- Success Story Section CSS --- */
.success-story-section {
    
    color: white;
}

/* --- Carousel Wrapper (Viewport) --- */
.story-carousel-wrapper {
    position: relative; /* Essential for button positioning */
    overflow: hidden; /* Hides stories that are off-screen */
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    background: #2b2545; /* Dark background */
    border: 1px solid #4a4175; 
}

/* --- Story Track (The Sliding Element) --- */
.story-track {
    display: flex; /* Forces cards side-by-side */
    width: 300%; /* Total width for 3 cards (100% * 3) */
    /* CRUCIAL for the sliding animation effect */
    transition: transform 0.6s ease-in-out; 
    /* Remove any previous CSS animations */
}

/* --- Individual Story Cards --- */
.story-card {
    width: 33.333%; /* Each card takes up 1/3 of the track width (100% of viewport) */
    flex-shrink: 0; 
    padding: 60px;
    background: transparent; 
    border-radius: 0; 
    border: none; 
}

/* Existing Story Styles */
.story-header h2 { font-size: 2.5rem; margin-bottom: 10px; font-weight: 800; text-align: left; color: white; }
.story-content-grid { display: flex; gap: 40px; margin-top: 30px; align-items: center; }
.story-text { flex: 2; }
.story-text strong { color: var(--accent-yellow); }
.story-metrics { flex: 1; background: var(--accent-yellow); color: var(--text-dark); padding: 30px; border-radius: 12px; text-align: center; font-weight: 800; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.story-metric-item { margin-bottom: 20px; }
.story-metric-item h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 5px; }
.story-metric-item p { font-size: 2.5rem; line-height: 1; color: var(--bg-dark); }
.story-metric-item .sub-label { font-size: 0.9rem; font-weight: 600; color: #4a4175; margin-top: 5px; }
.story-cta { margin-top: 40px; text-align: left; }

/* --- Carousel Buttons Styling --- */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15); 
    color: white;
    border: none;
    padding: 15px 10px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, opacity 0.2s;
    border-radius: 8px;
    line-height: 1; 
}

.carousel-btn:hover {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

.carousel-btn.prev-btn {
    left: 20px;
}

.carousel-btn.next-btn {
    right: 20px;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

/* Mobile Responsive Adjustments */
@media (max-width: 900px) {
    .story-card {
        padding: 40px 20px;
    }
    .story-content-grid {
        flex-direction: column;
    }
    .story-header h2, .story-cta {
        text-align: center;
    }
    .carousel-btn {
        padding: 10px 8px;
        font-size: 1.2rem;
    }
}
/* --- NEW: Success Story Section --- */
.success-story-section {
 
    color: white;
}
.story-card {
    background: #2b2545; /* Slightly lighter dark for contrast */
    border-radius: 20px;
    padding: 60px;
    border: 1px solid #4a4175;
}
.story-header h2, .story-header p {
    color: white;
}
.story-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 800;
    text-align: left;
}
.story-content-grid {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    align-items: center;
}

.story-metrics {
    flex: 1;
    background: var(--accent-yellow);
    color: var(--text-dark);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.story-metric-item {
    margin-bottom: 20px;
}
.story-metric-item:last-child {
    margin-bottom: 0;
}
.story-metric-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.story-metric-item p {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--bg-dark);
}
.story-metric-item .sub-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a4175;
    margin-top: 5px;
}
.story-cta {
    margin-top: 40px;
    text-align: left;
}


/* --- Modal Styles --- */
.modal-backdrop {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background:transparent; 
    z-index: 10500;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    animation: fadeIn 0.3s forwards;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.modal-content {
    width: 90%;
    max-width: 900px;
    /* aspect-ratio: 16 / 9; */
    background: black;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    animation: slideUp 0.3s forwards;
}
.modal-contentvideo {
    /* width: 90%;
    max-width: 900px; */
    aspect-ratio: 16 / 9;
    background: black;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    animation: slideUp 0.3s forwards;
}
@keyframes slideUp {
    from { transform: translateY(20px) scale(0.95); opacity: 0.8; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem; 
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.close-btn:hover { opacity: 1; }

/* Modal Badge */
.member-badge{
    position: absolute;
    bottom: 30px;

    /* Center horizontally */
    left: 50%;
    transform: translateX(-50%);

    background: var(--bg-dark);
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    border-top: 4px solid var(--accent-yellow);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    z-index: 5;
    pointer-events: none;
    width: 300px;
    text-align: center;
    line-height: 1.3;
}

.member-badge strong {
    display: block;
    color: white; 
    font-size: 1.3rem;
    font-weight: 800;
}
.member-badge span.role {
    display: block;
    color: #a0a0a0; 
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 2px;
}
.member-badge span.company {
    display: block;
    color: var(--accent-yellow); 
    font-size: 0.9rem;
    margin-top: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Testimonials Marquee --- */
.content-container.full-width {
    max-width: 1200px;
    padding: 0;
    overflow: hidden;
    margin:25px auto;
}
.content-container-headline.full-width {
    max-width: 100%;
    padding: 0;
    overflow: hidden;
}
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 5%, black 20%, black 80%, transparent 95%);
    -webkit-mask-image: linear-gradient(to right, transparent 5%, black 20%, black 80%, transparent 95%);
}
.marquee-track {
    will-change: transform;
    transform: translateZ(0);
}

.marquee-track {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap; /* important for continuous scroll */
    width: max-content;
    animation: scroll 20s linear infinite; /* slower for smoother mobile */
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* move by half the duplicated content */
}

.marquee-track:hover {
    animation-play-state: paused;
}
.review-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    min-width: 380px; 
    max-width: 380px;
    flex-shrink: 0;
    white-space: normal;
    transition: box-shadow 0.3s ease;
}
.review-card:hover {
    box-shadow: 0 10px 30px rgba(255, 186, 144, 0.2);
}
.stars { color: #FFB800; margin-bottom: 15px; letter-spacing: 2px; }
.reviewer strong { display: block; color: var(--text-dark); margin-top: 15px; font-weight: 700; }
.reviewer span { font-size: 0.9rem; color: var(--text-grey); }

/* --- Founders Section --- */

.founder-row { display: flex; align-items: center; gap: 60px; margin-bottom: 25px; }
.founder-row.reverse { flex-direction: row-reverse; }
.founder-text { flex: 1; }
.founder-text h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--text-dark); font-weight: 700; }
.founder-quote { font-style: italic; border-left: 4px solid var(--accent-yellow); padding-left: 20px; margin-top: 20px; font-size: 1.1rem; color: var(--text-grey); }
.founder-img {
    width: 400px;
    height: 400px;
    border-radius: 15%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Footer CTA (Dark Banner) --- */
.footer-cta { 
    max-width: 1080px;
    margin: 0 auto;
    display: flex; 
    align-items: center; 
    gap: 40px; 
    background: #1e1939; 
    padding: 60px; 
    border-radius: 20px; 
    margin-top: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.cta-text { flex: 1; }
.cta-text h2 { color: white; font-size: 2.5rem; margin-bottom: 15px; line-height: 1.2; font-weight: 800; }
.cta-text p { color: white; margin-bottom: 25px; }
.cta-image img { max-width: 400px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.2); }

/* --- FAQ --- */
.faq-section {   margin: 0 auto;margin-bottom:25px }
details {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: background-color 0.2s;
}
details:hover {
    background-color: #f5f5f5;
}
summary { font-weight: bold; font-size: 1.1rem; list-style: none; color: var(--text-dark); position: relative; padding-right: 30px; }
summary::-webkit-details-marker { display: none; }
summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    color: var(--accent-yellow);
    transition: transform 0.2s;
}
details[open] summary::after {
    content: '–';
    transform: rotate(180deg);
}
details p { margin-top: 10px; color: var(--text-grey); padding-bottom: 10px; }


.footer-container {
    background-color:var(--bg-dark);
    color: white;
    padding: 0rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-top-row, .footer-middle-row, .footer-bottom-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
    padding: 20px 0;
}
.footer-top-row {
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.footer-middle-row {
    border-top: 1px solid #ccc;

    justify-content: center;
}
.footer-bottom-row {
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.footer-section {
    flex: 1;
    min-width: 280px;
    font-size: 0.95rem;
    text-align: left;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: end;
    text-align: center;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-link-item {
    display: block;
    padding: 7px 0;
    cursor: pointer;
    transition: color 0.3s ease;
    color: #ec8d53 !important;
    font-weight: 700;
    text-decoration: none;
}
.footer-link-item:hover {
    color: white;
    text-decoration: none;
}
.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #aaa;
}
.footer-copyright {
    color: #aaa;
    font-size: 0.8rem;
    text-align: center;
    width: 100%;
}
.footer-advisory-disclosure {
    text-align: center;
    flex: 1;
    min-width: 250px;
}
.footer-advisory-disclosure .footer-disclosure {
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}
/* Existing styles... */
/* ... existing card styles ... */

/* Wrapper to align Image + Text side by side */
.reviewer-wrapper {
    display: flex;
    align-items: center;
    margin-top: 15px;
    gap: 12px; /* Space between image and text */
}

/* The Image Style */
.avatar-img {
    width: 45px;
    height: 45px;
    border-radius: 50%; /* Makes it a perfect circle */
    object-fit: cover; /* Ensures image doesn't stretch */
    border: 2px solid #f3f3f3;
}

/* The Fallback Circle (if no image) */
.avatar-placeholder {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #0070d2; /* Salesforce Blue */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    border: 2px solid #f3f3f3;
}

/* The Text Container */
.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-info strong {
    font-size: 0.95rem;
    color: #333;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: #777;
}
.review-card {
    /* Ensure your card has a fixed width or flex logic here */
    padding: 1rem;
    background: white;
    border-radius: 8px;
    /* ... other card styles */
}

/* Logic for truncating text */
.text-content {
    display: -webkit-box;
    -webkit-line-clamp: 7; /* <-- Change this line from 6 to 7 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    transition: all 0.3s ease;
}

/* The .text-content.expanded class remains the same: */
.text-content.expanded {
    -webkit-line-clamp: unset; /* Remove limit */
    overflow: visible;
}

/* Button styling */
.see-more-btn {
    background: none;
    border: none;
    color: #0070d2; /* Salesforce Blue or your brand color */
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0;
    margin-top: 5px;
    text-decoration: underline;
}
.David-Social{
        margin: 0 auto;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #ccc;
    justify-content: center;
    justify-self: center;
}
/* Mobile Responsive */
@media (max-width: 900px) {
    .video-staggered-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    .comparison-grid {
        flex-direction: column;
        margin-top: 10px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .story-content-grid {
        flex-direction: column;
    }
    .story-header h2 {
        text-align: center;
    }
    .story-cta {
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.3rem;font-weight: 800; }
    .eyebrow{
        font-size: 0.60rem;
    }
    .subtitle { font-size: 1.1rem; }
    .expert-grid, .founder-row, .founder-row.reverse, .footer-cta {
        flex-direction: column;
        text-align: center;
        height:auto;
        gap: 0;
    }
    .expert-photo { margin: 20px auto 0; transform: rotate(0); max-width: 300px; }
    .expert-card:hover .expert-photo { transform: rotate(0deg) scale(1.03); }
    .quote-icon { display: none; }
    .expert-card { padding: 0px; }
    .founder-quote { border-left: none; border-top: 4px solid var(--accent-yellow); padding-left: 0; padding-top: 20px; }
    .founder-img-wrapper { order: -1; margin-bottom: 20px; }
    .founder-img { width: 300px; height: 300px; }
    .footer-cta { padding: 40px 20px; text-align: center; }
    .cta-image { order: -1; }
    .cta-image img{
     max-width: 75vw;
    }
    .cta-text h2 {margin-top: 1rem; font-size: 2rem; }
    .video-staggered-grid {
        grid-template-columns: 1fr; 
    }
    .review-card {
        min-width: 300px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        margin-top: 0px;
    }
    .story-card {
        padding: 40px 20px;
    }
        .footer-top-row, .footer-middle-row, .footer-bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    .footer-section, .footer-advisory-disclosure {
        width: 100%;
        min-width: unset;
        text-align: center;
    }
    .footer-navigation .footer-sub-links {
        padding-left: 0;
    }
}
.modal-backdrop {

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:transparent; /* dark overlay matches your footer/nav color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10500;
    backdrop-filter: blur(2px);
    animation: fadeIn 0.3s ease-out forwards;
    height: auto;
}
.Opt-Disclosure{
    font-size: 0.8rem;
}
.Optout-Disclosure{
    font-size: 0.65rem;
}
/* --- Modal Content (Adjusted for Max Height and Scrolling) --- */
.modal-content {
    width: 90%;
    max-width: 900px;
    /* Added max-height and overflow to allow scrolling within the modal if content is too long */
    max-height: 95vh; 
    overflow-y: auto; 
    
    border-radius: 16px;
    overflow-x: hidden; /* Prevent horizontal overflow */
    /* display: flex; */
    flex-direction: row;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
    background: var(--bg-cream);
    font-family: var(--font-main);
    animation: slideUp 0.3s ease-out forwards;
}
.modal-contentvideo {
    /* width: 90%; */
    /* max-width: 900px; */
    /* Added max-height and overflow to allow scrolling within the modal if content is too long */
    /* max-height: 95vh;  */
    overflow-y: auto; 
    
    border-radius: 16px;
    overflow-x: hidden; /* Prevent horizontal overflow */
    display: flex;
    flex-direction: row;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
    background: var(--bg-cream);
    font-family: var(--font-main);
    animation: slideUp 0.3s ease-out forwards;
}
/* --- Modal Grid Layout --- */
.modal-grid {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 400px;
}

/* --- Left Panel: Michael / Branding --- */
.modal-left {
    flex: 1;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-green) 100%);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.modal-left .modal-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    object-fit: cover;
}

.modal-left h3 {
    margin-top: 1rem;
    font-size: 1.8rem;
    font-weight: 800;
}

.modal-left .modal-experience {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

/* --- Right Panel: Form --- */
.modal-right {
    flex: 1;
    background: var(--bg-white);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 auto;
    text-align: center;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-grey);
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: var(--accent-yellow);
}

.modal-text {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: center;
}
/* --- New Styles for Row Checkboxes --- */
.lead-form .checkbox-row {
    margin:0 auto;
    display: flex; /* Enables flexbox layout for the form group */
    align-items: center; /* Vertically aligns items in the center */
    gap: 1rem; /* Adds space between the checkbox and the label */
}

/* Override the general label block setting for this specific group */
.lead-form .checkbox-row label {
    display: inline; /* Overrides 'display: block;' to allow row layout */
    margin-bottom: 0; /* Removes the existing margin for vertical stacking */
    font-weight: normal; /* Often checkbox labels are not bold */
}

/* Ensure the checkbox input doesn't take up 100% width like other inputs */
.lead-form .checkbox-row input[type="checkbox"] {
    width: auto;
    padding: 0;
}
/* --- Form Styles --- */
.lead-form .form-group {
    margin-bottom: 1rem;
}

.lead-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.lead-form input {
    width: 100%;
    padding: 0.65rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    transition: border 0.2s ease;
}

.lead-form input:focus {
    border-color: var(--accent-green);
    outline: none;
}

.lead-form .required {
    color: red;
}

.error-text {
    color: red;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* --- Submit Button --- */
.submit-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--accent-yellow);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease-in-out, transform 0.2s ease;
}
 .Desktop-Comparison-Section{
        display: block;
    }
.submit-btn:hover {
    background-color: var(--accent-yellow);
    color: var(--bg-dark);
    transform: translateY(-2px);
}
.modal-video-frame{
    width: 1200rem;
    max-width: 1080px;

}

.social-icons-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #ccc;
}
.social-icon {
    width: 40px;
    height: 40px;
    background-color: #EDE0D4;
    padding: 8px;
    border-radius: 50%;
    transition: transform 0.2s ease;
}
.social-icon:hover {
    transform: scale(1.1);
}
.social-icond {
    width: 40px;
    height: 40px;
    background-color: #EDE0D4;
    padding: 8px;
    border-radius: 50%;
    transition: transform 0.2s ease;
}
.social-icond:hover {
    transform: scale(1.1);
}
/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
    from { transform: translateY(20px) scale(0.95); opacity: 0.8; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
/* Desktop only */
@media (min-width: 768px) {
    .notification-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10000;
        background: var(--bg-dark);
    }
    .logo-area{
        margin-top: 3rem;
    }
}


/* --- Responsive (Mobile Fixes) --- */
@media screen and (max-width: 768px) {
    .social-icons-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 200px;
}
    .modal-video-frame{
    width: auto;
    max-width: 1200px;
    height: 80vh;

}
    .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
   
}
    .modal-content {
        /* Set explicit max width and height, and remove scrolling */
        width: 85vw;
        max-width: 85vw;
      
        max-height: 85vh;
        /* max-height: 85vh; 
        overflow-y: hidden; Prevent scrolling */
        
        /* The flex-direction: column should be on the grid itself for clean stacking */
        flex-direction: column; 
    }
        .footer-contact {
  
    align-items: center;
    text-align: center;
}
      .modal-contentvideo{
        height: 80vh;
        /* Set explicit max width and height, and remove scrolling */
        /* width: 85vw;
        max-width: 85vw;
        height: 82vh;
        max-height: 85hv; */
        /* max-height: 85vh; 
        overflow-y: hidden; Prevent scrolling */
        
        /* The flex-direction: column should be on the grid itself for clean stacking */
        flex-direction: column; 
    }
    /* Ensure the main grid layout also stacks vertically */
    .modal-grid {
        flex-direction: column;
        min-height: unset; /* Allow the grid height to be defined by its content */
    }

    /* CRUCIAL FIX: Remove flex: 1 on mobile. This makes the left and right panels only 
       take up the space they need, ensuring the form (modal-right) is visible. */
    .modal-left, .modal-right {
        flex: unset; 
        padding: 1rem; /* Reduced padding */
      
    }

    /* Adjust the visual presentation of the left panel (image/branding) */
    .modal-left {
        min-height: unset; 
        text-align: center;
        padding-bottom: 1rem;
    }
    
    /* Smaller avatar */
    .modal-left .modal-avatar {
        width: 80px;
        height: 80px;
    }

    /* Smaller headline */
    .modal-left h3 {
        font-size: 1.25rem;
        margin-top: 0.5rem;
    }
    
    /* Smaller experience text */
    .modal-left .modal-experience {
        font-size: 0.90rem;
        margin-top: 0.5rem;
    }

    /* Adjust the form panel */
    .modal-right {
        padding-top: 1rem;
    }
    
    /* Smaller form header */
    .modal-header h2 {
        font-size: 1.2rem;
        text-align: center;
    }

    /* Smaller descriptive text */
    .modal-text {
        font-size: 0.875rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    /* Smaller form inputs and button */
    .lead-form input {
        padding: 0.5rem;
        font-size: 0.875rem;
    }

    .submit-btn {
        padding: 0.65rem;
        font-size: 0.95rem;
    }
}

  @media (max-width: 768px) {
    .marquee-track {
        gap: 20px;
        animation: scroll 20s linear infinite; /* slower to match smaller screen */
    }
       .Desktop-Comparison-Section{
        display: none;
    }
    .content-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 10px;
    margin-top: 25px;
}
.hero-section { padding: 0px 0 5px; text-align: center; margin-top: 5rem;}
    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10000;
        background: var(--bg-cream); /* background for navbar */
    }

    .notification-bar {
        font-size: 0.9rem;
        padding: 3px 1px;
    }

    .navbar {
        padding: 13px 0;
    }

    .nav-logo {
        height: 50px;
        width: auto;
    }

    /* Push the content down so the sticky bar doesn’t cover it */
    .main-wrapper {
        margin-top: 5.5rem !important; /* Adjust depending on your final mobile height */
    }

.shift-card .price-tag { 
   justify-content: center;
}
.comparison-card {
    flex: 1;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
    /* Remove CTA button on mobile */
/*   
    .cta-group,
    .primary-btn, 
    .secondary-btn {
        display: none !important;
    }
     .primary-btn.small{
    display: block !important;;
   } */
    /* Ensure the footer CTA banner itself is not hidden, but its buttons are */
    .footer-cta {
        margin-top: 10px;
        margin-bottom: 10px;
        display: grid; /* Restore original layout if it was set to none by .cta-group */
    }
    .mobile-comparison-section{
        display: block;
    }
   .section-header-center { 
    text-align: center; 
    margin-bottom: 10px; 
}
 .primary-btn {
    background-color: var(--accent-yellow);
    color: white;
    padding: 10px 10px;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(255, 186, 144, 0.4);
}
}
@media (max-width: 300px) {
  .main-wrapper {
        margin-top: 10rem !important; /* Adjust depending on your final mobile height */
    }
}
/* Main Container */
.main-containeruserStory {
    background-color: var(--bg-dark);
    color: #ffffff;
    padding: 60px 20px;
    max-width: 1200px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden; /* Prevents horizontal scroll on page */
    margin: 50px auto;
    border-radius: 20px;
}

.header-sectionuserStory {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDownuserStory 0.8s ease-out;
}

.sub-headinguserStory {
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.main-headinguserStory {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.learn-more-linkuserStory {
    color: #91ded3;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.learn-more-linkuserStory:hover {
    color: #ffffff;
}

/* Carousel Wrapper */
.carousel-wrapperuserStory {
    position: relative;
    width: 100%;
    /* max-width: 1200px;  Removed max-width to allow full bleed if needed, or keep it */
    margin: 0 auto;
    padding: 0 40px; /* Space for arrows */
}

/* Carousel Track */
.carousel-trackuserStory {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth; /* Critical for smooth auto-scroll */
    gap: 30px;
    padding: 20px 0; 
    scrollbar-width: none; /* Firefox hide scrollbar */
    -ms-overflow-style: none;
}
.carousel-trackuserStory::-webkit-scrollbar {
    display: none; /* Chrome/Safari hide scrollbar */
}

/* Carousel Navigation Buttons (Arrows) */
.carousel-nav-btnuserStory {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-nav-btnuserStory:hover {
    background-color: #91ded3;
    color: #1a3649;
    border-color: #91ded3;
}

.nav-prevuserStory { left: 0; }
.nav-nextuserStory { right: 0; }

/* Story Card */
.story-carduserStory {
    flex: 0 0 auto;
    width: 500px;
    z-index: 9999; /* ensures it stays above most elements */
    position: relative; /* needed for z-index to apply */
    
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;

    /* background-color: #fff; */

    /* elevation shadow */
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.10);

    transition: 
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Hover Animation for Card */
.story-carduserStory:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25),
        0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image-containeruserStory {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.card-imguserStory {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.story-carduserStory:hover .card-imguserStory {
    transform: scale(1.1); /* Zoom effect on image on hover */
}

.card-content-containeruserStory {
    width: 60%;
    background-color:white;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.shift-logouserStory {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.brand-logo-imguserStory {
    height: 25px; /* Adjust based on actual logo size */
    width: auto;
    display: block;
}

.quote-boxuserStory {
    background-color: #ffffff;
    padding: 25px;
    color: #1a3649;
    margin-top: 45px;
    border-radius: 4px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.quote-textuserStory {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 15px;
}

.author-infouserStory {
    font-size: 0.85rem;
}

.author-nameuserStory {
    font-weight: bold;
    margin: 0;
}

.author-titleuserStory {
    margin: 0;
    opacity: 0.7;
}

/* ================= Modal Styling & Animations ================= */
.modal-overlayuserStory {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 54, 73, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeInuserStory 0.3s ease-in-out;
}

/* Modal Content Box with slide-up animation */
.modal-content-boxuserStory {
    background-color: #ffffff;
    width: 80%;
    max-width: 900px;
    max-height: 85vh;
    border-radius: 12px;
    overflow-y: auto;
    position: relative;
    z-index: 10001;
    color: #1a3649;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    animation: slideUpuserStory 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-body-flexuserStory {
    display: flex;
    align-items: stretch;
}

.modal-img-wrapperuserStory {
    flex: 1;
    min-height: 400px;
}

.modal-imguserStory {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.modal-text-wrapperuserStory {
    flex: 1.5;
    padding: 40px;
    overflow-y: auto;
}

.modal-author-nameuserStory {
    font-size: 2rem;
    margin: 0 0 5px 0;
    color: #1a3649;
}

.modal-author-titleuserStory {
    font-size: 1.1rem;
    color: var(--bg-dark);
    margin: 0 0 25px 0;
}

.modal-full-storyuserStory p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Modal Arrows */
.modal-arrowuserStory {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #91ded3;
    font-size: 3rem;
    cursor: pointer;
    padding: 20px;
    z-index: 1002;
    transition: transform 0.2s, color 0.2s;
    outline: none;
}
.modal-arrowuserStory:hover {
    color: #ffffff;
    transform: translateY(-50%) scale(1.2);
}
.arrow-leftuserStory { left: 20px; }
.arrow-rightuserStory { right: 20px; }

/* Keyframe Animations */
@keyframes fadeInuserStory {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-arrowuserStory {
  
    padding: 0px;
  
}
    .quote-boxuserStory{
        padding:5px;
    }
    .story-carduserStory {
        width: 300px;
      
    }
    .card-image-containeruserStory {
        width: 100%;
        height: auto;
    }
    .card-content-containeruserStory {
        width: 100%;
        padding: 5px;
    }
    .modal-body-flexuserStory {
        flex-direction: column;
    }
    .modal-img-wrapperuserStory {
        min-height: 250px;
    }
    .modal-imguserStory {
        height: 30vh;
        border-radius: 12px 12px 0 0;
    }
    .carousel-wrapperuserStory {
        padding: 0; /* Full width on mobile */
    }
    .carousel-nav-btnuserStory {
        display: none; /* Hide standard arrows on mobile, rely on swipe */
    }
}