body,
html {
    overflow-x: hidden !important;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #080808;
    padding-bottom: 2rem;
}

.text-primary {
    color: #083ED1;
}

.bg-primary {
    background-color: #083ED1;
}

.border-primary {
    border-color: #083ED1;
}

.dropdown-container {
    position: absolute;
    left: 0;
    width: 100vw;
    height: 30vh;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    padding: 2rem 10rem 2rem 10rem;
}

.nav-item {
    position: static;
}

.demo-content {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
    border-radius: 12px;
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(8, 62, 209, 0.15);
}



/* Testimonial  */
.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    flex: 0 0 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    width: 100%;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
}


.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.548);
    border: 1px solid #083ED1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-control:hover {
    background-color: #083ED1;
    color: white !important;
    border-color: #083ED1;
}

.slider-control.prev {
    left: 20px;
    color: #083ED1;
}

.slider-control.next {
    right: 20px;
    color: #083ED1;
}








/* utility classes  */

.black-txt {
    color: #080808;
    font-weight: 400;
    font-size: 16px;
    line-height: 150% !important;
}

.txt-light {
    color: #919297;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.tab-section {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 786px) {
    .form-section {
        margin: 20px 14px !important;
    }

    .tabs {
        margin: 20px 14px !important;
    }

    .hero-heading {
        line-height: 1.5rem !important;
    }
}

.hero-heading {
    line-height: 5rem !important;
}

@media (max-width: 768px) {
    .hero-heading {
        line-height: 2rem !important;
    }
}



.inventory-heading {
    line-height: 3.5rem !important;
    font-size: 38px;
}

@media (max-width: 760px) {
    .inventory-heading {
        line-height: 2rem !important;
        font-size: 16px;
    }
}

.text-primary {
    color: #083ED1;
}

.bg-primary {
    background-color: #083ED1;
}

.pricing-card {
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.pricing-card {
    position: relative;
    overflow: visible;
    /* allow badge to pop out */
    transition: all 0.3s ease;
}

.popular-badge {
    position: absolute;
    top: -12px;
    /* Half outside, half inside */
    right: 20px;
    z-index: 10;
}

/* Layout */
.pricing-section {
    display: none;
    /* hidden by default */
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pricing-section {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Active plan section */
.pricing-section.active-plan {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Tabs */
.active-tab {
    background-color: #e5e7eb;
    /* Tailwind gray-200 */
    color: #111827 !important;
    /* Tailwind gray-900 text */
    font-weight: 600;
    border-radius: 0.375rem;
    /* rounded-md */
}

/* Optional hover effect for inactive tabs */
#quarterly-tab:not(.active-tab),
#yearly-tab:not(.active-tab) {
    background-color: transparent;
    color: #4b5563;
    /* Tailwind gray-600 */
    cursor: pointer;
}

#quarterly-tab:not(.active-tab):hover,
#yearly-tab:not(.active-tab):hover {
    background-color: #f3f4f6;
    /* Tailwind gray-100 */
}