.border-orange-500 {
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
}

.bg-orange-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}

.banner-gap.py-20 {
    padding-top: calc(5rem - 80px);
    padding-bottom:  5rem;
}

.banner-gap.pt-20 {
    padding-top: calc(5rem - 60px);
    padding-bottom:  5rem;
}

/* Button to open the modal */
.modal .hp-open-modal-button {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    background-color: #dc3545; /* Red */
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* .hp-open-modal-button:not(.whitespace-nowrap):hover {
    background-color: #bb2d3b; 
    box-shadow: 0 0.35rem 0.7rem rgba(0, 0, 0, 0.15);
} */

.hp-open-modal-button-not-hover:hover {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Custom Modal/Message Box Styles */
.hp-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Darker overlay for modal */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Ensure it's above other content */
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.hp-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.hp-modal-content-message { /* For the small message modal */
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 90%;
    width: 400px;
    box-sizing: border-box;
}
.hp-modal-content-message p {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #212529;
}

/* Form Modal Specific Styles */
.hp-form-container {
    display: flex;
    background-color: #ffffff;
    border-radius: 1rem;
    width: 100%;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    transform: scale(0.95); /* Slightly scale down when hidden */
    transition: transform 0.3s ease-in-out;
}

.hp-modal-overlay.model .hp-form-container {
    overflow: hidden;
    width: 90%;
    max-width: 900px;
    min-height: 360px;
    max-height: calc(100vh - 40px);
}

.hp-modal-overlay.show .hp-form-container {
    transform: scale(1); /* Scale up when shown */
}

.hp-sidebar-header {
    position: sticky;
    top: 0;
    z-index: 1;
    background: inherit;
    padding-top: 2rem;
}

/* Sidebar styles */
.hp-sidebar {
    width: auto;
    background-color: rgba(249, 250, 251, 1);
    border-right: 2px solid #e9ecef;
    color: #f8f9fa;
    padding: 0 2rem 2rem;
    /* display: flex;
    flex-direction: column;
    justify-content: space-between; */
    flex-shrink: 0; 
}

.hp-modal-overlay.model .hp-sidebar {
    overflow: auto;
    max-height: 80%;
}


.hp-sidebar-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.25rem;
}
.hp-sidebar-header p {
    font-size: 0.875rem;
    color: rgba(75, 85, 99, 1);
    margin-top: 0;
}
.hp-sidebar-nav {
    margin-top: 2rem;
}

/* Sidebar nav items */
.hp-nav-item {
    position: relative; /* Needed for positioning the dot */
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; /* Add color transition */
    color: #000; /* Default text color */
}

/* Default icon color */
.hp-nav-item i {
    font-size: 16px;
    color: #adb5bd; /* Default icon color */
    transition: color 0.2s ease-in-out;
}

.hp-nav-item span {
    flex-grow: 1; /* Pushes dot to the right */
}

/* Active state */
.hp-nav-item.active {
    background-color: #fff; 
    color: #000;
    font-weight: 500; 
}
.hp-nav-item.active i {
    /* color: #ffffff;  */
}

/* Red dot for active item */
.hp-nav-item.active::after {
    content: '';
    display: block;
    width: 8px; /* Size of the dot */
    height: 8px;
    background-color: #dc3545; /* Red dot color */
    border-radius: 50%;
    margin-left: 0.5rem; /* Space from text */
    flex-shrink: 0; /* Prevent it from shrinking */
}

/* Completed state */
.hp-nav-item.completed {
    color: rgba(22, 163, 74, 1);
}
.hp-nav-item.completed i {
    color: #16A34A; /* Green checkmark for completed */
}

/* Hover state for non-active items */
.hp-nav-item:hover:not(.active) {
    /* background-color: #495057;
    color: #fff; */
}

/* Main content styles */
.hp-main-content {
    flex-grow: 1;
    padding: 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    overflow: auto;
    max-height: 100%;
}
.hp-main-content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the start for better spacing */
    margin-bottom: 2rem;
    position: sticky;
    top: 0;
    z-index: 1;
    background: #FFF;
    padding-top: 2rem;
}
.hp-main-content-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-top: 0;
    margin-bottom: 0.5rem;
}
.hp-main-content-header p {
    font-size: 1rem;
    color: #495057;
    margin-top: 0;
}
.hp-main-content-header .hp-close-button { /* Custom close button */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
}
.hp-main-content-header .hp-close-button:hover {
    color: #495057;
}

/* Company Size Specific Styles */
.hp-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.hp-option-card {
    border: 2px solid #e9ecef; /* Light border */
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    position: relative;
}
.hp-option-card.selected {
    border-color: #DF5660; 
    background-color: #FFE4E6;
    box-shadow: 0 0.25rem 0.5rem rgba(220, 53, 69, 0.1);
}
.hp-option-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.hp-option-card i:first-child {
    font-size: 2.5rem;
    color: #495057;
    margin-bottom: 1rem;
}
.hp-option-card.selected i {
    color: #dc3545; /* Red icon for selected card */
}
.hp-option-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}
.hp-option-card p {
    font-size: 0.875rem;
    color: #6c757d;
}
.hp-selected-icon {
    /* position: absolute;
    bottom: 0.75rem;
    left: 50%; */
    font-size: 1.5rem;
    color: #dc3545; /* Red checkmark */
    display: none;
    margin-top: 20px;
}
.hp-option-card.selected .hp-selected-icon {
    display: block;
}

/* Form Fields (Contact Info & Requirements) */
.hp-form-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    /* margin-top: 2rem; */
    padding-bottom: 20px;
}
.hp-form-group {
    display: flex;
    flex-direction: column;
}
.hp-form-group label {
    font-size: 16px;
    font-weight: 500;
    color: #212529;
    margin-bottom: 0.5rem;
}
.hp-form-control { /* Custom form control */
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-sizing: border-box; /* Ensure padding is included */
}
.hp-form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #dc3545; /* Red focus border */
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); /* Red shadow */
}
.hp-form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}
textarea.hp-form-control {
    min-height: 120px;
    resize: vertical; /* Allow vertical resizing */
}
.hp-full-width {
    grid-column: 1 / -1;
}

/* Use Cases Specific Styles (Custom Checkboxes) */
.hp-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    /* margin-top: 2rem; */
}

.hp-use-case-card {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.hp-use-case-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Custom checkbox box */
.hp-use-case-card::before {
    content: '';
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    border: 1px solid hsl(353, 70%, 60%); 
    border-radius: 0.25rem;
    margin-right: 0.75rem;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
    flex-shrink: 0;
}

/* Custom checkmark inside the box */
.hp-use-case-card::after {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 23px; /* Adjust based on padding and box size */
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: #fff;
    display: none;
}

/* Styles when checkbox is checked */
.hp-use-case-card:has(input[type="checkbox"]:checked) {
    border-color: #dc3545; /* Danger color */
    background-color: #ffebeb;
    box-shadow: 0 0.25rem 0.5rem rgba(220, 53, 69, 0.1);
}

.hp-use-case-card:has(input[type="checkbox"]:checked)::before {
    background-color: #dc3545;
    border-color: #dc3545;
}

.hp-use-case-card:has(input[type="checkbox"]:checked)::after {
    display: block;
}

.hp-use-case-card:hover {
    border-color: #f1aeb5;
}

/* Form Footer */
.hp-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto; /* Push to the bottom */
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

/* Custom Buttons */
.hp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.375rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.hp-button-danger {
    color: #fff;
    /* background-color: #dc3545; */
    border-color: #dc3545;
    border: 0;
}
.hp-button-danger:hover {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #bb2d3b;
}
.hp-button-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}
.hp-button-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.hp-button:disabled {
    pointer-events: none;
    opacity: 0.65;
}

/* Final Checklist (Thank You) Specific Styles */
.hp-thank-you-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding-bottom: 2rem;
    text-align: center;
}

.hp-checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* background-color: #35dc53;  */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hp-thank-you-content h1 {
    font-size: 1.75rem; /* Adjusted for better fit */
    font-weight: 700;
    color: #212529;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}
.hp-thank-you-content p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    /* max-width: 400px; */
    line-height: 1.5;
}

.hp-info-card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 1.5rem;
    width: auto;
    max-width: 400px;
    text-align: left;
    /* margin-bottom: 1rem; */
    box-sizing: border-box;
}
.hp-info-card:last-child {
    margin-bottom: 0;
}
.hp-info-card .hp-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0.5rem;
}
.hp-info-card i {
    color: #6c757d;
    font-size: 1.25rem; /* Adjusted icon size */
    margin-right: 0.75rem;
}
.hp-info-card h2 {
    font-size: 1.2rem !important; 
    font-weight: 600;
    color: #212529;
    margin: 0;
}
.hp-info-card p {
    font-size: 0.875rem;
    color: #6c757d;
    /* margin-left: 2rem;  */
    margin-top: 0.25rem;
    margin-bottom: 0;
}
.hp-info-card a {
    color: #dc3545;
    text-decoration: none;
}
.hp-info-card a:hover {
    text-decoration: underline;
}

/* Ensure the form-footer for this screen is centered */
.hp-main-content .hp-form-footer.hp-text-center-footer {
    justify-content: center;
}

/* Hide all step containers by default */
.hp-step-container {
    display: none;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.hp-thank-you-content h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #212529;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hp-form-container {
        flex-direction: column;
        min-height: auto; /* Allow height to adjust */
        width: 100%; /* Take full width on small screens */
        border-radius: 0.5rem;
    }

    .hp-sidebar {
        width: 100%;
        padding: 1.5rem;
        flex-direction: row; /* Horizontal layout for sidebar on small screens */
        overflow-x: auto; /* Allow horizontal scroll if many items */
        white-space: nowrap; /* Prevent wrapping */
        justify-content: flex-start; /* Align items to start */
        gap: 1rem; /* Space between sidebar items */
    }
    .hp-sidebar-header {
        display: none; /* Hide header on small screens */
    }
    .hp-sidebar-nav {
        margin-top: 0;
        text-align: center;
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hp-main-content-header {
        position: static;
    }

    .hp-nav-item { 
        display: inline-flex; 
    }

    .hp-nav-item {
        padding: 0.5rem 0.75rem;
        margin-bottom: 0;
        flex-direction: column;
        font-size: 0.875rem;
        width: fit-content;
        text-align: center;
    }

    .hp-nav-item.active {
        background-color: #fff;
        color: #000;
        font-weight: 500;
        display: flex;
        margin-bottom: 10px;
        width: 100%;
        order: -1;
    }

    .hp-nav-item i {
        margin-right: 0;
        margin-bottom: 0.25rem; /* Space between icon and text */
        font-size: 1rem;
    }
    .hp-nav-item span {
        white-space: normal; /* Allow text to wrap if needed */
    }
    .hp-nav-item::after { /* Hide dot on small screens */
        display: none !important;
    }

    .hp-main-content-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }
    .hp-main-content-header h2 {
        font-size: 1.5rem;
    }
    .hp-main-content-header .hp-close-button {
        position: absolute; /* Position relative to the main content */
        top: 1rem;
        right: 1rem;
    }

    .hp-options-grid, .hp-form-fields, .hp-use-cases-grid {
        grid-template-columns: 1fr 1fr; /* Single column layout */
        gap: 1rem;
    }

    .hp-form-footer {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
    }
    .hp-button {
        width: 100%; /* Full width buttons */
    }

    .hp-thank-you-content h1 {
        font-size: 1.5rem;
    }

    .min-w-100 {
        min-width: 100%;
    }

    .m-big-img {
        margin-left: auto;
        margin-right: auto;
    }

    .leading-relaxed {
        max-width: max-content;
    }

}

/**/


.gradient-cta {
    background: linear-gradient(135deg, hsl(353, 70%, 60%), hsl(270, 52%, 32%));
}

.hp-nav-item.active .hp-sidebar-icon {
    background: linear-gradient(135deg, hsl(353, 70%, 60%), hsl(270, 52%, 32%));
}

.hp-nav-item.completed .hp-sidebar-icon {
    background: rgba(22, 163, 74, 0.3);
}

.hp-sidebar-icon {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(229, 231, 235, 1);
}

/**/

/* .play-icon:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(343%) hue-rotate(9deg) brightness(116%) contrast(100%);
} */
.hp-nav-item.active .hp-sidebar-icon i {
    color: white;
}









/* HEADER SECTION RESPONSIVE START */
@media (max-width: 1023px) {
    .headerMenu-wrapper { background: #FFF; position: absolute; height: 100vh; width: 300px; left: -100%; top: 0; box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5); padding: 10px 0px; overflow: auto; z-index: 99; transition: all 0.3s ease; }
    .headerMenu-wrapper.show { left: 0%; }
    .headerMenu-wrapper .nav-links { display: inline-flex; justify-content: space-between; width: 100%; padding: 10px 30px; margin-left: 0 !important; }
    /* .headerMenu-wrapper .nav-links #usecase-arrow { height: 25px; width: 25px; padding: 3px; border: 1px solid #868686; border-radius: 3px; background: linear-gradient(135deg , hsl(353 67% 62%), hsl(268 47% 32%)); stroke: #FFF; } */
    .headerMenu-wrapper .dropdown-menu-wrap { position: static; border: 1px solid transparent; background: transparent; width: 100%; padding: 0 30px; box-shadow: none; }
    .headerMenu-wrapper .dropdown-menu-wrap.invisible { display: none; }
    .header-btns .hp-open-modal-button { padding: 10px; font-size: 14px; gap: 0; }
    .lg-ml-60px { margin-left: 60px; }

    .grid-menu, .grid-menu2 {
        transform: none !important;
    }
    .sm\:grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }
    .dropdown-div {
        margin-left: 0 !important;
    }
    .mobile-menu-img {
        width: 35px;
        height: 35px;
    }   
    .dropdown-div h3 {
        font-size: 14px;
    }
    .dropdown-div p {
        font-size: 12px;
    }
    .normalSection-titletracking-tight {
        font-size: 28px;
    }
}

@media (max-width: 639px) {
    .header-btns .hp-open-modal-button { display: none; }
    .hp-open-modal-button { padding: 10px; gap: 0; display: flex; align-items: center; font-size: 14px; }
    .hidden.hp-open-modal-button { display: flex !important; }
    .mobile-menu-show {
        display: block !important;
        margin-left: 0 !important;
    }
    .mobile-menu-hidden {
        display: none !important;
    }
    .mobile-menu-show button {
        margin-top: 10px;
    }
}
.hidden.hp-open-modal-button { display: none; }
button#closeMenuBtn { height: 25px; width: 25px; border-radius: 5px; background: #FFF; }
/* HEADER SECTION RESPONSIVE END */


/* DASHBOARD PAGE RESPONSIVE START */
.footerGrid-wrap { grid-template-columns: repeat(auto-fit, minmax(180px, 5fr)); width: 100%; }
@media (max-width: 1023px) {
    .bannerSection .banner-title { font-size: clamp(1.96rem, 3.19vw, 3.5rem) !important; line-height: normal; }
    .bannerSection .banner-pera { font-size: clamp(16px, 1.25vw, 24px); line-height: 1.4; margin-top: 1rem !important; }
    .bannerSection .bannerBtn { margin-top: 1rem !important; } 
    .bannerSection .bannerBtn button span { font-size: medium !important; }
    .normalSection-title { font-size: clamp(24px, 2.5vw, 48px) !important; line-height: 1.2; margin-bottom: 1rem; }
    .section-pera { font-size: clamp(17px, 1.04vw, 20px); line-height: 1.2; }
    .section { padding: 2rem 2rem; }
    .footerGrid-wrap { gap: 10px; }
    .content h2 { font-size: 2rem !important; }
    .section h2 { font-size: 2rem; }
}

@media (max-width: 491px) {
    .footerGrid-wrap { gap: 10px; }
}


@media (max-width: 575px) {
    .hp-options-grid, .hp-form-fields, .hp-use-cases-grid { grid-template-columns: 1fr; }
    .hp-nav-item:not(.active) { display: none; }
    .hp-nav-item.active { margin: 0 20px; }
}

.cookie-main-wrapper { position: fixed; height: 100%; width: 100%; background: rgba(0, 0, 0, 0.3); display: none; justify-content: center; align-items: end; bottom: 0; z-index: 99; }
.cookie-main-wrapper > div { display: block; position: static; padding: 20px; border-radius: 10px; margin: 0 20px 10px; }
.cookie-main-wrapper > div p { font-size: 13px; line-height: 1.3; font-weight: 500; }
.cookie-main-wrapper  > div button { padding: 10px 30px; font-size: 16px; font-weight: 600; background: linear-gradient(135deg, hsl(353 67% 62%), hsl(268 47% 32%)); border-radius: 5px; }
/* DASHBOARD PAGE RESPONSIVE END */


/* Release Note */

.release-detail h5 {
    font-size: 28px;
    font-weight: 500;
}

.release-container,
.filter-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e6ed;
    position: relative;
}

.release-container {
    margin: 0px 0px 30px 30px;
}

.release-container::after {
    content: "";
    position: absolute;
    top: 60px;
    left: -25px;
    background-color: #ccc;
    height: 70px;
    width: 1px;
}

.release-container::before {
    content: "";
    position: absolute;
    top: 30px;
    left: -30px;
    background-color: #DF5660;
    height: 10px;
    width: 10px;
    border-radius: 100%;
}

.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: #f0f2f5;
    border: 1px solid #dcdfe4;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

.filter-button:hover {
    background-color: #e6e8eb;
}

.release-history-heading {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
}

.release-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e6ed;
    margin-bottom: 20px;
}

.version-number {
    font-size: 20px;
    font-weight: 600;
}

.status-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: 10px;
}

.tag {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.stable {
    background-color: #eaf8ee;
    color: #2e7d32;
}

.major-release {
    background-color: #fde8e8;
    color: #d32f2f;
}

.release-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    color: #666;
    font-size: 14px;
}

.compatible-with {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.compatible-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

.compatible-item {
    background-color: #f0f2f5;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #4a5568;
}

.release-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    padding: 8px 16px;
    border: 1px solid #dcdfe4;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.btn-secondary {
    background-color: #f0f2f5;
}

.btn-secondary:hover {
    background-color: #e6e8eb;
}

.btn-primary {
    background-color: #4a5568;
    color: #fff;
    border-color: #4a5568;
}

.btn-primary:hover {
    background-color: #2d3748;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-group {
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.group-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.group-heading span {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.feature-item {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 14px;
    margin: 0;
    color: #000;
    /* font-weight: 500; */
}

.feature-item ul {
    margin: 10px 0px 10px 30px;
}

.feature-item ul li {
    /* list-style: disc; */
    font-size: 14px;
    color: #333;
}

.feature-meta {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.impact-tag {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.impact-high {
    background-color: #eaf8ee;
    color: #2e7d32;
}

.impact-medium {
    background-color: #fff3e0;
    color: #ef6c00;
}

.impact-low {
    background-color: #fde8e8;
    color: #d32f2f;
}

.team-tag {
    background-color: #f0f2f5;
    color: #4a5568;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.new-features .feature-item {
    background-color: #eaf8ee;
}

.improvements .feature-item {
    background-color: #fff3e0;
}

.bug-fixes .feature-item {
    background-color: #fde8e8;
}

.card {
    background-color: white;
    padding: 3rem 1.5rem 1.5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 350px;
}

.card.card-pink {
    /* background: linear-gradient(135deg, #fef2f7, #fdf8f9); */
    /* border: 1px solid #d156d1; */
    border: 1px solid #DF5660;
}

.card.card-yellow {
    /* background: linear-gradient(135deg, #fffcf0, #fffcf0); */
    border: 1px solid #DF5660;
}

.card.card-blue {
    /* background: linear-gradient(135deg, #f1f8fe, #f1f8fe); */
    border: 1px solid #DF5660;
}

.icon-container {
    border-radius: 0.75rem;
    padding: 0.75rem;
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-pink {
    background-color: #f7dff7;
    color: #d156d1;
}

.icon-yellow {
    background-color: #f8edc5;
    color: #d8c247;
}

.icon-blue {
    background-color: #d7ecfb;
    color: #55b2f5;
}

.content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.content p {
    font-size: 1rem;
    color: #7f8c8d;
    margin: 0;
}

/**/

/* Dropdown Base */
.dropdown {
    position: relative;
    width: 200px;
  }

  .dropdown-btn,
  .date-btn .date-input {
    width: 200px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dropdown-btn:after {
    content: "▾";
    font-size: 12px;
    margin-left: 8px;
    color: #666;
  }

  .dropdown-list {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    display: none;
    z-index: 10;
    animation: fadeIn 0.2s ease-in-out;
  }

  .dropdown-list.active {
    display: block;
  }

  .dropdown-header {
    font-weight: bold;
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    color: #666;
  }

  .dropdown-item {
    padding: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  .dropdown-item:hover {
    background: #f3f4f6;
  }

  .dropdown-item .icon {
    margin-right: 8px;
    font-size: 16px;
  }

  .dropdown-item.selected {
    background: #f3f4f6;
    font-weight: 600;
  }

  .dropdown-item.selected::before {
    content: "✔";
    margin-right: 8px;
    font-size: 14px;
    color: #333;
  }

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

  .dropdown-list input[type="date"] {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 6px;
    font-size: 14px;
    width: 160px;
  }
  
.subscribe-div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

  .subscribe-div input {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }

  .previous-state {
    color: #868686 !important;
    font-style: italic;
    list-style-type: none; 
    position: relative; 
    padding-bottom: 10px;
    font-weight: 500 !important;
}

/* .previous-state::before {
    content: '➔';
    color: #888; 
    position: absolute;
    left: 0px; 
    font-style: normal;
} */

.new-feature {
    list-style-type: none;
    position: relative;
}

.new-feature::before {
    content: '✔︎ '; 
    position: absolute;
    left: -20px; 
    font-size: 1.1em;
}

.security-div .feature-item {
    background-color: #f0f0f0;
}

.banner-gap {
    margin-top: 50px;
}

.feature-div {
    margin: 0 0 0 30px;
}

.client-text {
    font-size: 12px;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px 15px;             
    border-radius: 30px;
    width: fit-content;       
}

.logo-container::before {
    content: "";
    position: absolute;
    inset: 0;                      
    border-radius: 30px;
    padding: 2px;                    
    background: linear-gradient(to right, #c94b61, #702a98);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;           
    z-index: 0;
}

.logo-container > * {
    position: relative;
    z-index: 1;                     
}

.client-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0; 
  }
  
.client-logos img {
    height: 19px;
    /* border-radius: 50%;  */
    object-fit: cover;
    border: 2px solid #fff; 
    margin-left: -15px; 
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.client-logos img:first-child {
    margin-left: 0; 
}

.logo-custom:hover {
    transform: scale(1.1);
    z-index: 2;
    transition: 0.3s ease-in-out;
}

.logo-count {
    font-size: 16px;
    font-weight: 600;
}

.grid-menu {
    width: 1200px;
    max-width: 95vw;
    left: 100%;
    transform: translateX(-42%) translateY(0px);
}

.grid-menu2 {
    transform: translateX(-53%) translateY(0px);
}


.custom-hover:hover {
    background-color: #df5d6c1a;
    border: 1px solid #df5d6c4d;
}

.active-btn {
    background-color: #fef2f2;
}

.active-btn:hover {
    background-color: #fef2f2;
}

.active-btn::after {
    border-left: 8px solid #0000;
    border-right: 8px solid #0000;
    border-top: 10px solid #fef2f2;
    bottom: -10px;
    content: "";
    height: 0;
    left: 50px;
    position: absolute;
    width: 0;
}                                                                                         
 /* Custom styling for the statistic boxes inside the card */
 .stat-box {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
    /* Matching the rounded corners and border opacity */
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: default;
}

.stat-box:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.org-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.dropdown-div {
    margin-left: 15px;
}

.mobile-menu-show {
    display: none
}

.mobile-menu-hidden {
    display: block;
}

.zoom-card {
    transform: scale(1.02);
    box-shadow: 0 20px 40px -10px hsl(353 67% 62% / .3);
}
.section-pera {
    font-size: 18px;
}

.mt-0 {
    margin-top: 0 !important;
}

.know-more a {
    color: #DF5660;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.know-more-hover:hover .know-more-icon {
    transform: translateX(4px);
    transition: 0.3s ease-in-out;
}

.img-primary {
    filter: brightness(0) saturate(100%) invert(43%) sepia(29%) saturate(4393%) hue-rotate(335deg) brightness(97%) contrast(94%);
}

.m-big-img img {
    width: 500px;
}

.img-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.min-w-64 {
    min-width: 64px;
} 
.min-h-64 {
    min-height: 64px;
}

.faq-question button {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.w-fit {
    width: fit-content;
}

.text-black {
    color: #000;
}

.faq-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(171, 171, 171, 0.06) 100%);
    border-radius: 14px;
}

.divider {
    padding-right: 100px;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Custom CSS for Splide Zoom Focus Effect */

.splide__slide .testimonial-card-inner {
    transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out, opacity 0.1s ease-in-out;
    transform: scale(0.95); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    opacity: 0.85; 
}

.splide__slide.is-active .testimonial-card-inner {
    transform: scale(1.0); 
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; 
    opacity: 1; 
}

.splide__arrow {
    display: none !important;
}

.splide__arrow svg {
    fill: #000; 
    opacity: 0.5;
    transition: opacity 0.3s;
}
.splide__arrow:hover svg {
    opacity: 1;
}

/* Custom CSS for the Vertical Timeline Line and Markers */

.timeline-list::before {
    content: "";
    position: absolute;
    left: -16px; 
    top: 20px;
    width: 1px;
    height: calc(100% - 40px);
    background-color: #E5E7EB; 
    z-index: 0;
    display: none; 
}

/* Show the line on medium screens and up */
@media (min-width: 768px) {
    .timeline-list::before {
        display: block;
    }
}

.timeline-list > div.flex.items-start {
    position: relative; 
}

.timeline-list > div.flex.items-start::after {
    content: "";
    position: absolute;
    left: -20px; 
    top: 16px; 
    width: 8px; 
    height: 8px; 
    background-color: #EC8B8D; 
    border-radius: 50%;
    z-index: 5; 
    display: none;
    /* Optional: Small border for definition, though the image suggests solid color */
    /* border: 1px solid #EC8B8D; */ 
}

/* Show the dots on medium screens and up */
@media (min-width: 768px) {
    .timeline-list > div.flex.items-start::after {
        display: block;
    }
}

.bg-offwhite {
    background-color: #F8F8F8;
}

.proof-section .splide__list {
    padding-bottom: 30px !important;
    padding-top: 20px !important;
}