.heading-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.heading-container > h1 {
    font-size: 1.5rem;
    color: #101828;
    font-weight: 500;
}
.heading-container > p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4a5565;
    font-weight: 400;
}

.icon {
    width: 20px;
    height: 20px;
    color: #4a5565;
}

.top-section {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.top-section-container-left,
.top-section-container-right {
    border-radius: 12px;
    padding: 1rem;
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.welcome-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 15px;
    background: #3b4de4ad;
    background: linear-gradient(
        113deg,
        rgba(59, 77, 228, 1) 68%,
        rgba(59, 77, 228, 1) 70%,
        rgba(59, 77, 228, 1) 100%
    );
}

.welcome-card > h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.welcome-card > p {
    font-size: 0.9rem;
    font-weight: 400;
    color: #fff;
}

.welcome-card > p > span {
    font-weight: 700;
}

.active-projects {
    margin-top: 1rem;
}

.active-projects > h2 {
    font-size: 1rem;
    font-weight: 600;
    color: #101828;
}

.active-projects-list {
    margin-top: 1.5rem;
    padding: 2rem;
    box-shadow:
        rgba(0, 0, 0, 0.12) 0px 1px 3px,
        rgba(0, 0, 0, 0.24) 0px 1px 2px;
    border-radius: 12px;
}

.active-projects-list > li > h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #101828;
}

.badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* Size of the outer container */
    width: 14px;
    height: 14px;

    /* Center it vertically if used next to text */
    vertical-align: middle;
}

/* The Outer Circle */
.badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Green border and faint green background */
    border: 2px solid #28a745; /* Success Green */
    background-color: rgba(40, 167, 69, 0.1); /* Light green tint */
    border-radius: 50%;

    box-sizing: border-box;
}

/* The Inner Dot */
.badge::after {
    content: "";
    /* position: absolute; */

    /* Size of the dot */
    width: 7px;
    height: 7px;
    background-color: #28a745;
    border-radius: 50%;
}

.badge-status-text {
    font-size: 0.8rem;
    color: #6a7282;
    font-weight: 500;
}

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

.announcement-header > h2 {
    font-size: 1rem;
    color: #101828;
    font-weight: 600;
}

.announcement-header > a {
    font-size: 0.8rem;
    color: #3b4de4;
    text-decoration: none;
    font-weight: 500;
}

.latest-announcements-list {
    margin-top: 2rem;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.latest-announcements-list > li {
    padding: 1rem;
    box-shadow:
        rgba(0, 0, 0, 0.12) 0px 1px 3px,
        rgba(0, 0, 0, 0.24) 0px 1px 2px;
    border-radius: 12px;
}

.latest-announcements-list > li > h4 {
    font-size: 14px;
    color: #101828;
}

.calender-icon {
    width: 15px;
    height: 15px;
    color: #1db954;
}

.date-views-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
}

.dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #4a5565;
    border-radius: 50%;
}
.date,
.views {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6a7282;
}

.section-container {
    border-radius: 12px;
    margin-top: 30px;
    padding: 1rem;
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

/* my project section */
.heading-container > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.heading-container > div > h2 {
    font-size: 1rem;
    font-weight: 600;
    color: #101828;
}

.heading-container > div > p {
    font-size: 0.8rem;
    font-weight: 400;
    color: #4a5565;
}

.heading-container > a {
    font-size: 0.8rem;
    color: #3b4de4;
    text-decoration: none;
    font-weight: 500;
}

/* Stats Grid Container */
.stats-container {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 188px), 1fr));
    gap: 20px;
    justify-content: flex-start;
}

/* Individual Stat Box */
.stat-box {
    width: 100%;
    /* height: 162px; */
    box-sizing: border-box;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    justify-content: center;

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

/* Optional Hover Effect */
.stat-box:hover {
    transform: translateY(-2px);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Stat Box Typography & Icons */
.stats-icon-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 35%;
    margin: 0 auto;
}

.my-project-stats-icon-container{
    display: flex;
    align-items: center;
    gap: 10px;
}


.stat-icon {
    width: 20px;
    height: 20px;
}

.stat-value {
    text-align: center;
    margin: 0 0 5px 0;
    font-size: 2rem;
    color: #1e293b;
    font-weight: 700;
}

.stat-label {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    text-align: center;
}

/* Orders Grid Container */
.orders-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 16px;
    justify-content: flex-start;
}

/* Individual Order Box */
.order-box {
    width: 100%;
    height: 258px;
    padding-top: 20.8px;
    padding-right: 20.8px;
    padding-bottom: 0.8px;
    padding-left: 20.8px;

    border-radius: 16px;
    border: 0.8px solid #e5e7eb;
    opacity: 1;
    background-color: #f9fafb;
    box-sizing: border-box;
    box-shadow:
        rgba(0, 0, 0, 0.12) 0px 1px 3px,
        rgba(0, 0, 0, 0.24) 0px 1px 2px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Inner Card Elements */
.order-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.orders-stats-actions-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.orders-stats-icon-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 35%;
    background-color: #033576;
}

.orders-stats-more-icon {
    width: 20px;
    height: 20px;
    color: #4f5257;
    cursor: pointer;
}

.order-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.order-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: #101828;
    display: block;
}

.order-stats-icon {
    width: 18px;
    height: 18px;
    color: #99a1af;
    margin-right: 0.4rem;
}

.customer-date-order-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-customer {
    display: flex;
    align-items: center;
    color: #4a5565;
    font-size: 0.85rem;
    font-weight: 400;
}

.order-customer > span {
    color: #101828;
    font-weight: 500;
    margin-left: 0.4rem;
}

.order-date {
    display: flex;
    align-items: center;
    color: #4a5565;
    font-size: 0.85rem;
    font-weight: 400;
}

.order-date > span {
    color: #101828;
    font-weight: 500;
    margin-left: 0.4rem;
}

/* Order Status Badge Wrapper */
.order-status-wrapper {
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}

.order-status-wrapper > span {
    font-size: 0.85rem;
    font-weight: 400;
    color: #4a5565;
}

.order-status {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

/* happiness program section  */
.happiness-program-heading-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.heading-container-text > h2 {
    font-size: 1rem;
    color: #101828;
    font-weight: 500;
}
.heading-container-text > p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #4a5565;
    font-weight: 400;
}

.heading-container-more {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.heading-container-more > p {
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: #033576;
}

.heading-container-more > p > span {
    margin-left: 0.5rem;
    color: #6a7282;
}

.heading-container-more > span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
    border: 1px solid #e2e3e4;
    border-radius: 35%;
}

/* Container Grid Layout */
.happiness-program-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Card Styling */
.happiness-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.happiness-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Image Wrapper for Absolute Positioning Context */
.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 128px;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps images from stretching */
    display: block;
}

.card-icon {
    width: 25px;
    height: 25px;
}

/* The Left-Floating Icon */
.floating-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #f5a623; /* A warm, happy color for the icon */
    width: 45px;
    height: 45px;
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Card Text Content area */
.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Pushes the link to the bottom if text lengths vary */
}

.card-heading {
    font-size: 1.1rem;
    color: #101828;
    font-weight: 600;
}

.card-desc {
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0 0 1.5rem 0;
    color: #4a5565;
    line-height: 1.6;
    flex-grow: 1;
}

/* Link Styling */
.card-link {
    text-decoration: none;
    color: #033576;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.card-link:hover {
    color: #0b40b8;
}

/* The main card container */
.future-service-widget {
    display: flex;
    background-color: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    padding: 3rem 2rem;
    height: 100%;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
}

.future-service-widget:hover {
    background-color: #f1f5f9;
    border-color: #94a3b8;
}

/* The vertical stack wrapper */
.widget-content-stack {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers items horizontally */
    justify-content: center; /* Centers items vertically */
    text-align: center;
    width: 100%;
    gap: 0.75rem; /* Clean, consistent spacing between all elements */
}

/* The icon container */
.widget-icon-box {
    background-color: #e2e8f0;
    color: #475569;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem; /* Extra space before the title */
}

/* Size for the Heroicon */
.icon-svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

/* Typography */
.widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #101828;
    margin: 0;
}

.widget-text {
    font-size: 0.95rem;
    font-weight: 400;
    color: #4a5565;
    line-height: 1.5;
    margin: 0;
    max-width: 250px;
}

/* Revenue Ready Kit  */

/* Container Layout */
.revenue-ready-kit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Card Styling */
.revenue-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Keeps everything left-aligned */
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.revenue-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
    border-color: #cbd5e1;
}

/* Shared Icon Wrapper Logic */
.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sizing for the Main Top Icon */
.main-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px; /* Soft square */
    margin-bottom: 1.5rem;
}

.main-icon svg {
    width: 28px;
    height: 28px;
}

/* Typography */
.revenue-card .title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.75rem 0;
}

.revenue-card .desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    flex-grow: 1; /* This pushes the 'Get More' button to the bottom if descriptions vary in length */
}

/* 'Get More' Pill Button */
/* The Flex Container wrapping both elements */
.card-action-row {
    display: flex;
    align-items: center;
    gap: 1rem; /* Space between the button and the icon */
    width: 100%;
    margin-top: auto; /* Pushes this whole row to the bottom of the card */
}

/* The Expanded Button */
.get-more-btn {
    flex: 1; /* This is the magic line that makes it take up the remaining space */
    display: flex;
    align-items: center;
    justify-content: center; /* Centers the text inside the button */
    padding: 12px 20px;
    background-color: #e8ebf3;
    border: 1px solid #e2e8f0;
    border-radius: 20px; /* Standard square-ish button */
    text-decoration: none;
    color: #1f3c88;
    font-weight: 600;
    font-size: 0.95rem;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.get-more-btn:hover {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
}

/* The Separate Icon Container */
.btn-icon {
    flex-shrink: 0; /* Prevents the icon box from getting squished by the button */
    width: 44px;
    height: 44px;
    border-radius: 50%; /* Matches the button's border radius */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Size for your dynamic Blade component SVG */
.stat-icon {
    width: 20px;
    height: 20px;
}

/* <!-- Venture Bench Support --> */

.venture-bench-support {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.venture-bench-card {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.venture-bench-card-text-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.venture-bench-card-text-info > h3 {
    font-size: 1rem;
    color: #101828;
    font-weight: 600;
}
.venture-bench-card-text-info > p {
    font-size: 0.8rem;
    color: #4a5565;
    font-weight: 400;
}

.see-more-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center; /* Centers the text inside the button */
    padding: 12px 20px;
    background-color: #033576;
    border: 1px solid #e2e8f0;
    border-radius: 20px; /* Standard square-ish button */
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.see-more-btn:hover {
    background-color: #ffffff;
    color: #364153;
    border-color: #cbd5e1;
}

/* Freelancing Opportunities and Upcoming Projects Section */
.bottom-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 1. The Grid Container */
.upcoming-projects-cards {
    display: grid;
    /* This creates fluid columns. Minimum 200px wide, stretching to fill space */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px; /* Space between the cards */
    width: 100%;
}

/* 2. The Individual Card */
.upcoming-projects-card {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column; /* Stacks icon, title, and button vertically */
    align-items: flex-start;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

/* Optional: Slight lift effect on hover */
.upcoming-projects-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* 3. Icon Styling */
.upcoming-projects-card .icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.upcoming-projects-card .stat-icon {
    width: 24px;
    height: 24px;
}

/* 4. Title Styling */
.upcoming-projects-card .title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

/* 5. Action Row (Pushed to the bottom) */
.upcoming-projects-card .card-action-row {
    margin-top: auto;
    width: 100%;
    display: flex;
    align-items: center;
}

.see-more {
    display: flex;
    gap: 10px;
    color: #1f3c88;
    font-weight: 400;
    font-size: 0.8rem;
}

.see-more-icon {
    width: 16px;
    height: 16px;
    color: #1f3c88;
}

/* The List Container */
.freelance-opportunity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Space between each list item */
    max-width: 600px; /* Adjust based on your sidebar/container width */
}

/* Individual List Item */
.freelance-list-item {
    display: flex;
    align-items: center; /* Vertically centers the icon and text */
    background-color: #f9fafb; /* The background color you requested */
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb; /* Subtle border to define the shape */
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.freelance-list-item:hover {
    background-color: #e5e7eb; /* Slightly darker gray on hover */
    transform: translateX(4px); /* Gentle slide-right effect on hover */
}

/* The Colored Badge Icon */
.badge-icon {
    flex-shrink: 0; /* Prevents the badge from squishing */
    width: 48px;
    height: 48px;
    border-radius: 12px; /* Soft square shape */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem; /* Space between the badge and the text */
}

.list-icon-svg {
    width: 24px;
    height: 24px;
}

/* Text Content Container */
.list-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.list-title {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.list-desc {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.4;
}

.freelance-list-item .icon {
    width: 20px;
    height: 20px;
    color: #94a3b8;
    margin-left: 1rem;
    flex-shrink: 0;

    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

/* Optional: Make the arrow pop when you hover over the row */
.freelance-list-item:hover .icon {
    color: #0f172a; /* Darkens the arrow on hover */
    transform: translateX(2px); /* Slight nudge to the right */
}

.view-all-opportunities-btn {
    display: flex;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    align-items: center;
    text-align: center;
    padding: 0.5rem;
    color: #033576;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    margin-top: 2rem;
}

/*Latest Blogs and news  */

/* The List Container */
.news-list-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
}

/* Individual List Item (Set as an anchor tag for easy clicking) */
.news-list-item {
    display: flex;
    align-items: center;
    background-color: #f9fafb;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-decoration: none; /* Removes underline from the link */
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.news-list-item:hover {
    background-color: #ffffff;
    border-color: #cbd5e1;
    transform: translateY(-2px); /* Slight lift effect instead of slide */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Image Wrapper & Thumbnail */
.news-image-wrapper {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    margin-right: 1.25rem;
    border-radius: 8px;
    overflow: hidden; /* Ensures the image respects the border-radius */
    background-color: #e2e8f0; /* Placeholder color while image loads */
}

.news-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents the image from squishing */
    display: block;
}

/* Text Content */
.news-content {
    flex: 1; /* Pushes the arrow to the right edge */
    display: flex;
    align-items: center;
}

.news-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Arrow Icon */
.news-arrow-icon {
    width: 20px;
    height: 20px;
    color: #94a3b8;
    margin-left: 1rem;
    flex-shrink: 0;
    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

.news-list-item:hover .news-arrow-icon {
    color: #0f172a;
    transform: translateX(3px); /* Subtle nudge right on hover */
}

.latest_Blogs_News_Section_container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.latest_Blogs_News_Section {
    flex: 1;
}


.need_help_box {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    margin-top: 30px;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(to right, #1e2939, #101828);
    padding: 1.3rem;
    border-radius: 12px;
}

.need_help_box > h5 {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
    margin: 0;
}
.need_help_box > P {
    font-size: 1rem;
    color: #d1d5dc;
    font-weight: 400;
    margin: 0;
}

.need_help_box_icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff1a;
    border-radius: 16px;
    margin-bottom: 16px;
}

.need_help_icon {
    width: 24px;
    height: 24px;
    color: #fff;
}

.start_chat_btn {
    width: 250px;
    color: #ffffff;
    padding: 0.5rem;
    background-color: #25d366 !important;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
}

.start_chat_icon {
    width: 25px;
    height: 25px;
    color: #ffffff;
}


@media (min-width: 768px) {
    .top-section {
        flex-direction: row;
    }

    .top-section-container-left,
    .top-section-container-right {
        flex: 1;
    }

    .future-service-widget {
        width: 300px;
    }

    .stats-icon-container {
        margin: 0;
    }

    .stat-value,
    .stat-label {
        text-align: left;
    }

    .latest_Blogs_News_Section_container {
        flex-direction: row;
    }

    .need_help_box {
        width: 350px;
    }
}

/* TABLET VIEW: Hide the 3rd dynamic card (keep 2 dynamic + 1 static) */
@media (max-width: 992px) {
    .happiness-program-section-container .happiness-card:nth-child(3) {
        display: none;
    }
}

/* MOBILE VIEW: Hide the 2nd AND 3rd dynamic cards (keep 1 dynamic + 1 static) */
@media (max-width: 768px) {
    .happiness-program-section-container .happiness-card:nth-child(2),
    .happiness-program-section-container .happiness-card:nth-child(3) {
        display: none;
    }
}

/* Ensure the static 'Coming Soon' card NEVER hides */
.happiness-program-section-container .coming-soon-card {
    display: flex !important;
}

/* When the screen is wider than 992px (Desktop/Full Screen) */
@media (min-width: 992px) {
    .bottom-section {
        flex-direction: row; /* Places them side-by-side */
    }

    /* Make the first container wider */
    .bottom-section .section-container:first-child {
        flex: 1; /* Takes up 2 parts of the available space */
    }

    /* Make the second container narrower */
    .bottom-section .section-container:last-child {
        flex: 1; /* Takes up 1 part of the available space */
    }
}
