/* Global Styles */
:root {
    --primary-color: #267BBE;
    /* Deep Blue from header/buttons */
    --secondary-color: #1864A0;
    /* Darker blue for text/headings */
    --accent-color: #232C70;
    /* Lighter blue for hover/accents */
    --bg-light: #f4f7fa;
    /* Light background for sections */
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --font-family: 'Poppins', sans-serif;

    /* Feature Card Colors matching image */
    --f-purple-bg: #E6DDF2;
    --f-purple-border: #7300FF;
    --f-pink-bg: #E8D0D0;
    --f-pink-border: #A30606;
    --f-yellow-bg: #F6F6E9;
    --f-yellow-border: #FFCC00;
    --f-green-bg: #D1E8CB;
    --f-green-border: #1F9C00;
    --f-blue-bg: #DCF1F6;
    --f-blue-border: #223F8B;
}

/* ... existing body/container styles ... */

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5 cards in a row for desktop */
    gap: 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* Circle */
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 15px auto;
}

/* Ribbon CSS */
/* Ribbon CSS */
.coming-soon-card {
    overflow: visible !important;
    position: relative;
    z-index: 10;
}

.ribbon {
    position: absolute;
    right: -30px;
    top: 2px;
    z-index: 20;
    width: auto;
    height: auto;
    /* Remove clipping */
    overflow: visible;
}

.ribbon span {
    display: block;
    background-color: #bf1e1e;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 10px;
    text-transform: capitalize;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transform: rotate(24deg);
    white-space: nowrap;
}

.coming-soon-card::before {
    /* Corner triangle if needed, but ribbon span handles most */
}

/* Responsive Grid Update */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet */
    }
}


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

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-sizing: border-box;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-block {
    display: flex;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
}

.section-desc {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* ... existing code ... */

/* Pricing Card Button Updates */
.pricing-card .btn {
    width: 100%;
    /* border, padding, font-size, etc. inherited from .btn now */
    background-color: #0077b6;
    color: white;
    margin-top: auto;
    border: 2px solid transparent;
    /* Ensure border width matches */
}

.pricing-card .btn:hover {
    background-color: #023e8a;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Softer, deeper shadow */
    position: fixed;
    /* Floating behavior */
    top: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    border-radius: 20px;
    /* Rounded corners */
    z-index: 1000;
    backdrop-filter: blur(10px);
    /* Modern frosted effect */
    transition: all 0.3s ease;

    .btn-primary {
        padding: 0 20px;
    }
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;
    /* Adjustable based on preference, 48px is a good standard */
    width: auto;
}

.desktop-nav {
    display: flex;
    gap: 25px;
}

.desktop-nav a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 2px;
    transition: 0.3s;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    font-weight: 700;
}

/* Underline effect */
.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease-in-out;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 15px;

    .btn-outline {
        max-width: fit-content;
    }
}

.header-buttons .btn {
    width: 160px;
    white-space: nowrap;
}

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

.mobile-nav {
    display: none;
    /* JS will toggle this */
    position: absolute;
    top: calc(100% + 15px);
    /* Gap between header and menu */
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 20px;
    /* Match header radius */
}

.mobile-nav a {
    display: block;
    padding: 10px 0;
    font-size: 1.1rem;
}

.mobile-buttons {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Hero Section */
.hero {
    background-color: #eef4f9;
    /* Light blueish gray */
    padding: 120px 0 50px 0;
    /* Increase top padding to account for floating header (approx 100px) + spacing */
    min-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background visual shape similar to image (wave) can be added via pseudo-elements or distinct SVGs. 
   For simplicity and cleanliness, we'll use a gradient or simple background. */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(220, 230, 245, 0.5) 100%);
    z-index: 0;
}

.heartbeat-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.hb-track {
    display: flex;
    height: 100%;
    width: max-content;
    /* Ensure it holds all children */
    animation: scrollHeartbeat 40s linear infinite;
    /* Slowed down slightly for smoothness */
}

.hb-slice {
    width: 1440px;
    height: 100%;
    background-image: url('images/heart-beats.svg');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 1440px auto;
    flex-shrink: 0;
    /* Prevent shrinking */
}

.hb-slice.flipped {
    transform: scaleX(-1);
    /* Mirror the image to ensure seamless join */
}

@keyframes scrollHeartbeat {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-2880px);
        /* Move exactly width of 2 slices (Normal + Flipped) */
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    font-family: 'Manrope', sans-serif;
}

.hero p {
    font-size: 24px;
    color: #1E1E1E;
    font-weight: 500;
    margin-bottom: 40px;
    font-family: 'Urbanist', sans-serif;
}

/* Stats Section */
.stats-bar {
    background-color: var(--primary-color);
    padding: 30px 0;
    color: var(--white);
    margin-top: -30px;
    /* Overlap or connect with hero */
    position: relative;
    z-index: 2;
}

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

.stat-item {
    flex: 1;
    /* Distribute space equally */
    position: relative;
    cursor: default;
}

.stat-item div,
.stat-item p {
    transition: transform 0.3s ease;
}

.stat-item:hover div,
.stat-item:hover p {
    transform: scale(1.15);
}

/* Vertical Divider */
.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.stat-item div {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    padding: 0;
    margin-bottom: -5px;
    /* Pull text closer */
    line-height: 1;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 600;
    font-family: 'Urbanist', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background-image: url('images/mission-vision-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mv-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 768px;
    gap: 30px;
}

.mv-card {
    /* Semi-transparent for glass look */
    backdrop-filter: blur(40px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.356);
    /* Blurs the background behind the card */
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Soft white border */
    text-align: center;
    position: relative;

    /* Ultra-smooth transition using a custom cubic-bezier */
    transition:
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease;

    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    overflow: hidden;
}

.mv-card:hover {
    /* Lift + Zoom: 12px up and 5% larger */
    transform: translateY(-12px) scale(1.05);

    /* Glowing shadow matching your brand color (primary-color) */
    box-shadow:
        0 20px 40px rgba(38, 123, 190, 0.15),
        0 0 0 1px rgba(38, 123, 190, 0.1);
    /* Subtle colored outline */

    border-color: rgba(38, 123, 190, 0.4);
}

/* The Animated Accent Bar */
.mv-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--primary-color);
    transition: all 0.4s ease;
    border-radius: 2px;
}

.mv-card:hover::after {
    width: 60%;
    left: 20%;
}

/* Internal Movement: Make the text move slightly too */
.mv-card h3 {
    transition: transform 0.5s ease;
}

.mv-card:hover h3 {
    /* This creates 'Parallax' - the text moves independently of the card */
    transform: translateY(-5px);
    color: var(--primary-color);
}

.mv-card h3 {
    color: var(--accent-color);
    font-size: 28px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-card div {
    color: var(--accent-color);
    margin-top: 0;
    font-size: 18px;
}

.feature-card p {
    margin-top: 0;
    font-size: 16px;
    color: black;
    letter-spacing: 0%;
}

.border-purple {
    border-color: var(--f-purple-border);
    background-color: var(--f-purple-bg);
}

.border-pink {
    border-color: var(--f-pink-border);
    background-color: var(--f-pink-bg);
}

.border-yellow {
    border-color: var(--f-yellow-border);
    background-color: var(--f-yellow-bg);
}

.border-green {
    border-color: var(--f-green-border);
    background-color: var(--f-green-bg);
}

.border-blue {
    border-color: var(--f-blue-border);
    background-color: var(--f-blue-bg);
}

.feature-card {
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    /* Transition: Adjusted to cubic-bezier for a more 'snappy' professional feel */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s ease,
        border-color 0.3s ease;
    max-height: 255px;
    position: relative;
    overflow: hidden;
    height: 100%;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Individual Color Hover Logic */
/* We target the specific border classes to make the shadow match the color */

.border-purple:hover {
    box-shadow: 0 10px 30px var(--f-purple-bg);
    border-color: var(--f-purple-border);
}

.border-pink:hover {
    box-shadow: 0 10px 30px var(--f-pink-bg);
    border-color: var(--f-pink-border);
}

.border-yellow:hover {
    box-shadow: 0 10px 30px var(--f-yellow-bg);
    border-color: var(--f-yellow-border);
}

.border-green:hover {
    box-shadow: 0 10px 30px var(--f-green-bg);
    border-color: var(--f-green-border);
}

.border-blue:hover {
    box-shadow: 0 10px 30px var(--f-blue-bg);
    border-color: var(--f-blue-border);
}

.feature-card:hover {
    /* Slightly more lift for attractiveness */
    transform: translateY(-8px) scale(1.03);
}

.feature-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* Using 50% is cleaner for circles */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 12px auto;
    background-color: white;
    /* Adding a subtle initial shadow to the icon */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.feature-card:hover .icon {
    /* The icon now "pops" more and tilts */
    transform: scale(1.2) rotate(8deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card .icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.f-pink .icon {
    background: white;
    color: var(--f-pink-border);
}

.f-red .icon {
    background: white;
    color: var(--f-red-border);
}

.f-yellow .icon {
    background: white;
    color: var(--f-yellow-border);
}

.f-green .icon {
    background: white;
    color: var(--f-green-border);
}

.f-purple .icon {
    background: white;
    color: var(--f-purple-border);
}

/* Services */
.services {
    padding: 50px 0;
    font-family: 'Manrope', sans-serif;
    /* Use Manrope for the bold look */
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background: transparent;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: all 0.3s ease;
    border-bottom: 1px solid black;
    cursor: pointer;
}

.service-item:hover {
    background-color: var(--primary-color);
    border-bottom-color: transparent;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 78, 146, 0.2);
    /* Blueish shadow */
    transform: scale(1.02);
}

.s-number {
    font-size: 32px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    color: #1a1a1a;
    line-height: 1;
    min-width: 60px;
    /* Ensure alignment */
    transition: color 0.3s;
}

.s-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    /* Split title and desc */
    align-items: center;
    gap: 30px;
    width: 100%;
}

.s-content h3 {
    font-size: 24px;
    margin-bottom: 0;
    color: #1a1a1a;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s;
}

.s-content p {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.5;
    font-family: 'Urbanist', sans-serif;
    margin: 0;
    transition: color 0.3s;
}

/* Hover States for Children */
.service-item:hover .s-number,
.service-item:hover .s-content h3,
.service-item:hover .s-content p {
    color: var(--white);
}

/* Testimonials */
.testimonials {
    padding: 0;
    text-align: center;
    background-image: url('images/testimonials-bg.svg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    padding-bottom: 40px;
    padding-top: 70px;
    /* Extra space for bg */
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.avatars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Bottom align to simulate curve with heights/transforms */
    gap: 70px;
    margin-bottom: -40px;
    /* Overlap with card */
    position: relative;
    z-index: 2;
    height: 120px;
    top: -30;
    /* Fixed height for alignment */
}

.avatars img {
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    object-fit: cover;
}

/* Arc Effect using translateY */
/* Arc Effect using translateY */

/* Mobile (3 Items - Symmetrical) */
@media (max-width: 768px) {
    .btn-outline {
        max-width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .avatars img:nth-child(2) {
        /* Center Active */
        width: 80px;
        height: 80px;
        transform: translateY(-20px);
        border-color: #232C70;
        z-index: 5;
        opacity: 1;
    }

    .avatars img:nth-child(1),
    .avatars img:nth-child(3) {
        /* Side Items */
        width: 60px;
        height: 60px;
        transform: translateY(-60px);
        opacity: 0.8;
        z-index: 4;
    }
}

/* Desktop (7 Items) */
@media (min-width: 769px) {
    .avatars img:nth-child(4) {
        /* Center Active */
        width: 90px;
        height: 90px;
        transform: translateY(0px);
        /* Push slightly down to sit on card */
        border-color: #232C70;
        /* Dark blue border for active */
        z-index: 5;
    }

    .avatars img:nth-child(3),
    .avatars img:nth-child(5) {
        width: 65px;
        height: 65px;
        transform: translateY(-30px);
        z-index: 4;
    }

    .avatars img:nth-child(2),
    .avatars img:nth-child(6) {
        width: 65px;
        height: 65px;
        transform: translateY(-50px);
        z-index: 3;
        opacity: 0.9;
    }

    .avatars img:nth-child(1),
    .avatars img:nth-child(7) {
        width: 65px;
        height: 65px;
        transform: translateY(-70px);
        z-index: 2;
        opacity: 0.8;
    }
}


.testimonial-card-wrapper {
    position: relative;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    background: #E6E5E6;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 1;
    min-height: 270px;
    height: 270px;
    /* Fixed height to prevent resizing */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Anchor content to top */
}

/* Animation for avatars */
@keyframes avatarFadeIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Note: We handle specific transform translations in nth-child rules, 
   so avoiding transform animation here to prevent conflict. 
   Using simple opacity/filter instead. */
@keyframes avatarSimpleFade {
    from {
        opacity: 0;
        filter: blur(5px);
    }

    to {
        opacity: 1;
        filter: blur(0);
    }
}

.avatars img {
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    object-fit: cover;
    animation: avatarSimpleFade 0.5s ease-out forwards;
}

.testimonial-card h4 {
    font-size: 24px;
    color: var(--accent-color);
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    margin-bottom: -8px;
}

.testimonial-card .role {
    display: block;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-size: 16px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.nav-btn {
    width: 40px;
    height: 40px;
    background-color: var(--f-blue-border);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0;
}

.nav-btn i {
    line-height: 1;
    margin-top: 2px;
    /* Visual correction for font rendering */
}

.nav-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.nav-btn.prev {
    left: 28px;
}

.nav-btn.next {
    right: 28px;
}



/* Pricing */


/* Pricing */
.pricing {
    padding: 80px 0;
    position: relative;
    /* To contain the absolute positioned SVGs */
    overflow: hidden;

    /* Prevent SVGs from spilling out */
}

/* Background SVGs attached to cards to prevent gap overflow */
.pricing-card-left::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    /* Anchored to the inner edge (next to gap) */
    width: 200%;
    /* Extends far leftwards */
    height: 100%;
    background-image: url('images/left.svg');
    background-repeat: no-repeat;
    background-position: right bottom;
    /* Align image end to the cut-off point */
    background-size: cover;
    z-index: -2;
    /* Cover height, keep aspect */
    pointer-events: none;
}

.pricing-card-right::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    /* Anchored to the inner edge (next to gap) */
    width: 200%;
    /* Extends far rightwards */
    height: 130%;
    background-image: url('images/right.svg');
    background-repeat: no-repeat;
    background-position: left bottom;
    /* Align image start to the cut-off point */
    background-size: cover;
    z-index: -2;
    pointer-events: none;
    transform: translateY(50px);
}

.pricing-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.pricing-card {
    /* Light gray background/off-white */
    padding: 20px 20px;
    border-radius: 12px;
    text-align: left;

    box-shadow: 0 10px 50px rgba(53, 65, 73, 0.2);
    /* Soft shadow */
    position: relative;
    isolation: isolate;
    border: none;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: white;
    border-radius: inherit;
    z-index: -1;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.356);
    z-index: 10;
    /* Create stacking context on hover to pop out */
}

.pricing-card.popular {
    /* Background handled by ::after */

    /* Same bg */
    border: 1px solid #311b92;
    /* Dark purple border */
    transform: scale(1.05);
    /* Slightly bigger */
    z-index: 1;
    margin-top: -15px;
    /* Slight lift to emphasize size */
}

/* Badge for popular card */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #311b92;
    /* Dark purple */
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 10px rgba(49, 27, 146, 0.3);
}

.popular-badge i {
    font-size: 0.8rem;
    color: #FFCC00;
}

.pricing-card h3 {
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: #000;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-family: 'Manrope', sans-serif;
}

.pricing-card .price span {
    font-size: 1rem;
    color: #999;
    font-weight: 500;
}

.card-desc {
    color: #777;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.pricing-card ul {
    margin-bottom: 10px;
    text-align: left;
    padding-left: 0;
}

.pricing-card ul li {
    margin-bottom: 10px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-card ul li i {
    color: #0077b6;
    /* Blue check */
    margin-right: 0;
    font-size: 1rem;
}

/* Custom button styles for pricing */
.pricing-card .btn {
    margin-top: auto;
    border-radius: 50px;
    /* Rounded pill buttons */
    padding: 10px 0;
    font-weight: 600;
    font-size: 0.95rem;
}

.pricing-card .btn-outline {
    background: transparent;
    border: 1px solid #0077b6;
    color: #0077b6;
}

.pricing-card .btn-outline:hover {
    background: #0077b6;
    color: white;
}

.pricing-card .btn-primary {
    background: #0077b6;
    border: 1px solid #0077b6;
    color: white;
}


/* FAQ */
.faq {
    padding: 50px 0;
}

.faq-grid {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.faq-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.faq-item.faq-expanded {
    background-color: var(--primary-color);
    color: var(--white);
}

.faq-question {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Icon Styles */
.faq-question i {
    color: var(--primary-color);
    /* Primary color plus by default */
    transition: 0.3s;
}

.faq-item.faq-expanded .faq-question i {
    color: var(--white);
    /* White icon when active */
}

/* Question Text */
.faq-item.faq-expanded .faq-question {
    color: var(--white);
}

/* Answer Styles */
/* Answer Styles - Animated */
.faq-answer {
    margin-top: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.faq-item.faq-expanded .faq-answer {
    color: rgba(255, 255, 255, 0.9);
    max-height: 200px;
    /* Adjust if content is longer */
    opacity: 1;
    margin-top: 10px;
}

/* Contact */
/* Contact */
/* Contact */
.contact {
    /* Use padding to push content down into the 'blue' area of the curve */
    padding: 100px 0 100px 0;
    min-height: 800px;
    background-image: url('images/contact-us-bg.svg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.contact .container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    /* Push content down to avoid overlapping the top curve white space */
    padding-top: 100px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Text 1fr, Form slightly wider */
    gap: 80px;
    align-items: start;
}

/* Contact Text (Left Side) */
.contact-text {
    text-align: left;
    margin-top: 20px;
}

.contact-text h3 {
    font-size: 36px;
    /* Requested 36px */
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Urbanist', sans-serif;
    color: #1a1a1a;
}

.contact-desc {
    font-size: 24px;
    /* Requested 24px */
    color: #000;
    line-height: 1.5;
    margin-bottom: 50px;
    font-family: 'Urbanist', sans-serif;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* Specific colors for icon circles */
.info-item:nth-child(1) .icon-circle {
    background-color: #A3060666;
    color: #fff;
}

.info-item:nth-child(2) .icon-circle {
    background-color: #1F9C0066;
    color: #fff;
}

.info-item:nth-child(3) .icon-circle {
    background-color: #2F9CCE66;
    color: #fff;
}

.info-item div {
    display: flex;
    flex-direction: column;
    font-family: 'Urbanist', sans-serif;
}

.info-item h5 {
    font-size: 20px;
    /* Requested 20px */
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.info-item p {
    font-size: 14px;
    /* Requested 14px */
    color: #4a4a4a;
    margin: 0;
}

/* Form Card (Right Side) */
.contact-form-card {
    /* Semi-transparent white card */
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.356);
    /* Soft shadow */
    backdrop-filter: blur(10px);
    width: 100%;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.contact-form label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border-radius: 12px;
    border: none;
    background: #ffffff;
    font-family: inherit;
    font-size: 14px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

.required {
    color: red;
}

.error-msg {
    color: red;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

.input-error {
    border: 1px solid red !important;
}

.form-action {
    text-align: right;
    width: 100%;
}

.form-action .btn {
    padding: 12px 40px;
    font-size: 16px;
    border-radius: 50px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact .container {
        padding-top: 50px;
    }

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

    .contact-items {
        align-items: center;
        /* Center items if using flex column */
    }

    .info-item {
        text-align: left;
        /* Keep text left aligned relative to icon */
    }

    /* If we want center alignment of text, we can change to: */
    /* .info-item { flex-direction: column; text-align: center; } */
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 30px;
    }

    .contact-text h3 {
        font-size: 36px;
    }

    .contact-desc {
        font-size: 24px;
        font-weight: 500;
    }

    .pricing-card h3 {
        font-size: 24px;
    }

    .pricing-card .price {
        font-size: 32px;
    }
}



/* Footer */
footer {
    background: #e6e6e6;
    /* Matching the grayish vibe from the image */
    padding: 60px 0 20px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.5fr 1fr;
    /* Adjusted for column widths */
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-col .logo {
    margin-bottom: 25px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 800;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-dark);
    position: relative;
    padding-bottom: 2px;
    transition: 0.3s;
    display: inline-block;
    font-weight: 500;
}

/* Underline effect for footer links */
.footer-col ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease-in-out;
}

.footer-col ul li a:hover {
    color: black;
    font-weight: 700;
}

.footer-col ul li a:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 0;
}

.social-icons.vertical {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    /* Center icons horizontally in their stack */
    width: 100%;
    /* Ensure container takes full width to align properly with text if needed */
}

/* Specific alignment for Follow Us column */
.footer-container .footer-col:nth-child(3) {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centers both the h4 and the icons */
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: #203C88;
    /* Match logo blue */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.footer-action {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    /* Vertically center button */
}

.copyright {
    border-top: none;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.legal-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.legal-links a {
    color: var(--text-dark);
    font-weight: 500;
}

.legal-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Tablet & Smaller Desktop */
@media (max-width: 1024px) {
    .pricing-grid {
        gap: 15px;
        grid-template-columns: repeat(2, 1fr);
        /* 2 col on tablet */
    }

    /* Hide background SVGs when cards stack */
    .pricing-card:first-child::before,
    .pricing-card:last-child::before {
        display: none;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .contact-wrapper {
        gap: 40px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* Header */
    /* Header - Professional Mobile Look */
    .desktop-nav,
    .header-buttons {
        display: none;
    }

    header {
        position: fixed;
        width: 100%;
        /* Full width */
        margin: 0;
        top: 0;
        left: 0;
        padding: 15px 20px;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 0 0 20px 20px;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

        .mobile-buttons {
            margin-left: 40px;
            margin-right: 40px;
        }
    }

    .logo img {
        height: 40px;
    }

    .mobile-menu-icon {
        display: block;
        font-size: 1.5rem;
    }

    .mobile-nav.active {
        display: flex;
        top: 80px;
    }

    /* Hero Section - Split Layout */
    .hero {
        height: 55vh;
        /* Top half of screen */
        min-height: 55vh;
        padding: 90px 20px 0 20px;
        display: flex;
        flex-direction: column;
        /* Keep text high up */
        align-items: center;
        text-align: center;
        overflow: hidden;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Center within the 55vh */
        align-items: center;
        width: 100%;
        padding-top: 0;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        max-width: 100%;
    }

    /* Stats Section - Bottom half of viewport */
    .stats-bar {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 45vh;
        /* Bottom half taking remaining space */
        min-height: 45vh;
        background: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stats-container {
        flex-direction: column !important;
        /* Stack vertically as per image */
        gap: 30px;
        /* Space them out */
        padding: 0;
        justify-content: center;
        height: 100%;
    }

    .stat-item {
        flex: initial;
    }

    .stat-item div {
        font-size: 2.5rem;
        /* Big Numbers */
        margin-bottom: 0;
        line-height: 1;
    }

    .stat-item p {
        font-size: 0.9rem;
        margin-top: 5px;
        color: rgba(255, 255, 255, 0.9);
    }

    /* Slightly smaller numbers */

    /* Mission - Mobile Background */
    .mission-vision {
        background-image: url('images/mobile-mission-vision-bg.svg');

        h3 {
            font-size: 24px;
        }

        p {
            font-size: 18px;
        }
    }

    /* Hero - Mobile Heartbeat Background */
    .hb-slice {
        width: 100vw;
        /* Fit screen width */
        background-image: url('images/mobile-heartbeat.svg');
        background-size: 100% auto;
        /* Ensure full visibility */
    }

    /* Ensure divider lines are removed */
    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item:active div,
    .stat-item:active p {
        transform: scale(1.15);
        /* Keep animation on tap/active */
    }

    /* Mission */
    .mv-container {
        grid-template-columns: 1fr;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Services */
    /* Services - Redesign for Mobile */
    .services-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .service-item {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 15px;
        padding: 25px 20px;
        background: white;
    }

    /* Reset hover state for mobile touch */
    .service-item:hover {
        background-color: var(--primary-color);
        color: inherit;
        border-bottom-color: #333;
    }

    .s-number {
        font-size: 2rem;
        font-weight: 800;
        color: #311b92;
        /* Dark purple */
        margin-right: 10px;
        display: inline-block;
    }

    .s-content {
        display: block;
        text-align: left;
    }

    .s-content h3 {
        display: inline;
        font-size: 1.2rem;
        color: #311b92;
        /* Match number color per design intuition/image */
        font-weight: 700;
    }

    .s-content p {
        margin-top: 10px;
        font-size: 0.95rem;
        color: #000;
        font-weight: 600;
        line-height: 1.4;
    }

    /* Testimonials */
    .avatars {
        gap: 25px;
        margin-bottom: -20px;
    }

    .avatars img {
        width: 40px;
        height: 40px;
    }

    .avatars img.active {
        width: 80px;
        height: 80px;
    }

    .testimonial-card-wrapper {
        margin-top: 20px;
    }

    .testimonial-card {
        padding: 20px 40px;
        min-height: 320px;
        height: 320px;
    }



    .nav-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .nav-btn.prev {
        left: 10px;
    }

    .nav-btn.next {
        right: 10px;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 50px;
    }

    /* FAQ */
    .faq-grid {
        flex-direction: column;
    }

    /* Contact - Mobile Redesign */
    .contact {
        padding: 40px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-text {
        display: block;
        text-align: left;
        margin-bottom: 20px;
    }

    .contact-text h3 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .contact-desc {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .contact-details {
        align-items: flex-start;
        gap: 20px;
    }

    .info-item {
        width: 100%;
        align-items: flex-start;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .subscribe-form {
        max-width: 400px;
        margin: 20px auto 0 auto;
    }

    .copyright {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    visibility: hidden;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    visibility: hidden;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    visibility: hidden;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* Pulse animation for hero button */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(38, 123, 190, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(38, 123, 190, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(38, 123, 190, 0);
    }
}

.btn-primary {
    animation: pulse-glow 2s infinite;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20b858;
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.4);
    color: white;
    /* Ensure icon stays white */
}

/* Terms & Conditions Page */
.legal-hero {
    padding: 200px 0 100px 0;
    /* Reduced bottom padding */
    background-color: #eef4f9;
    position: relative;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.legal-title {
    font-size: 54px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Manrope', sans-serif;
}

.legal-subtitle {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 10;
}

.legal-desc {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
    z-index: 10;
}

.legal-content {
    background-color: #f4f6f8;
    min-height: 50vh;
    font-family: 'Urbanist', sans-serif;
    padding-bottom: 50px;
}

.legal-sections {
    max-width: 900px;
    margin: -120px auto 0 auto;
    /* Pull up over hero */
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.legal-item {
    margin-bottom: 40px;
}

.legal-item:last-child {
    margin-bottom: 0;
}

.legal-item h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-family: 'Manrope', sans-serif;
}

.legal-item p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
}

.legal-item ul {
    list-style-type: disc;
    padding-left: 25px;
    color: #444;
    margin-bottom: 15px;
}

.legal-item ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-list {
    list-style: none !important;
    padding-left: 0 !important;
}

.contact-list li {
    margin-bottom: 12px !important;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--primary-color);
}

.contact-list span {
    font-weight: 700;
    color: #444;
}

.contact-list a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 140px 0 40px 0;
    }

    .legal-title {
        font-size: 2.2rem;
        padding: 0 20px;
    }

    .legal-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .legal-sections {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .legal-item h2 {
        font-size: 1.5rem;
    }
}

/* Push heartbeat down for legal pages */
.legal-hero .heartbeat-background {
    top: 50%;
    transform: translateY(0%);
    opacity: 0.5;
}

/* Fixed Heartbeat for Legal Pages */
.legal-hero .heartbeat-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -5;
    /* Place deep in background */
    opacity: 0.4;
    transform: none;
    /* Reset previous transforms */
}

/* Center the heartbeat line vertically in the fixed container */
.legal-hero .heartbeat-background .hb-slice {
    background-position: left center;
}