/* POS Solution Page Specific Styles */
#header {
  background: linear-gradient(135deg, #0a0e0a 0%, #001a0a 50%, #000000 100%);
}
/* Layout */
.pos-layout {
    display: flex;
    padding-top: 95px;
    min-height: 100vh;
}

/* Sidebar Styles */
.pos-sidebar {
    width: 300px;
    /* background: rgba(0, 0, 0, 0.95); */
    /*border-right: 2px solid rgba(0, 212, 255, 0.3);*/
    height: calc(100vh - 95px);
    position: fixed;
    top: 95px;
    left: 0;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 100;
    transition: transform 0.3s ease;

    /* background-color: transparent;
    background-image: radial-gradient(at bottom right, #023D3FA3 0%, #0D0E12 60%); */
    /* background: rgba(0, 212, 255, 0.1); */
    background: linear-gradient( #0a0e0a 0%, #001a0a 50%, #000000 100%);
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.sidebar-close:hover {
    color: #00d4ff;
}

.sidebar-nav {
    padding: 10px 0;
}

.sidebar-menu-item {
    margin-bottom: 5px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.sidebar-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding-left: 25px;
}

.sidebar-link.active {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border-left: 3px solid #00d4ff;
}

.sidebar-link .menu-icon {
    font-size: 1.2rem;
    margin-right: 12px;
    width: 25px;
    text-align: center;
}

.sidebar-link.has-submenu {
    justify-content: space-between;
}

.submenu-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.sidebar-link[aria-expanded="true"] .submenu-arrow {
    transform: rotate(180deg);
}

.submenu {
    background: rgba(0, 0, 0, 0.5);
}

.submenu-link {
    display: block;
    padding: 10px 20px 10px 60px;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.submenu-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding-left: 65px;
}

/* Main Content */
.pos-content {
    flex: 1;
    margin-left: 300px;
    padding: 40px;
    max-width: calc(100% - 300px);
    background: rgba(255, 255, 255, 1);
}

.content-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    margin-bottom: 30px;
}

/* Feature Cards */
.feature-card {
    /*background: rgba(0, 0, 0, 0.7);*/
    border: 0px solid #103536;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;

    background-color: #fff0;
    background-image: linear-gradient(160deg,#006175 0%, #007C67 100%);
}

.feature-card:hover {
    border-color: #103536;
    transform: translateY(-5px);
    box-shadow: 0 2px 3px rgba(0, 212, 255, 0.3);
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Feature List */
.feature-list-detailed {
    list-style: none;
    padding: 0;
}

.feature-list-detailed li {
    color: #071314;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.feature-list-detailed li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-list-detailed li strong {
    color: #000;
}

/* CTA Box */
.cta-box {
    /* background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 168, 204, 0.1)); */
    border: 0px solid #103536;
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    /*background-color: transparent;
    background-image: radial-gradient(at bottom right, #023D3FA3 0%, #0D0E12 60%);*/
    background-color: #fff0;
    background-image: linear-gradient(160deg,#006175 0%, #007C67 100%);
}

.btn-outline-cyan {
    border: 2px solid #103536;
    color: #00d4ff;
    background: transparent;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-cyan:hover {
    background: #00d4ff;
    color: #000000;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    border-color: #00d4ff;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.pricing-card.featured {
    border-color: #00d4ff;
    border-width: 3px;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00d4ff;
    color: #000000;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.pricing-header {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    margin-bottom: 20px;
}

.pricing-amount {
    margin-top: 15px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-features li {
    color: #e0e0e0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Sidebar Toggle */
.sidebar-toggle-mobile {
    display: none;
    position: fixed;
    top: 100px;
    left: 15px;
    z-index: 150;
    background: #00d4ff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 212, 255, 0.5);
}

.sidebar-toggle-mobile span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .pos-sidebar {
        transform: translateX(-100%);
        z-index: 200;
    }

    .pos-sidebar.open {
        transform: translateX(0);
    }

    .sidebar-close {
        display: block;
    }

    .pos-content {
        margin-left: 0;
        max-width: 100%;
        padding: 20px;
    }

    .sidebar-toggle-mobile {
        display: flex;
    }

    .sidebar-overlay.active {
        display: block;
    }

    .section-header h1 {
        font-size: 2rem;
        text-align: center;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .cta-box {
        padding: 25px;
    }
    
}

@media (max-width: 768px) {
    .pos-content {
        padding: 15px;
    }

    .feature-icon-large {
        font-size: 2rem;
    }

    .section-header h1 {
        font-size: 1.75rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .btn-cyan,
    .btn-outline-cyan {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
    }
    .close-hide{
        display: block;
    }
}

/* Scrollbar for sidebar */
.pos-sidebar::-webkit-scrollbar {
    width: 6px;
}

.pos-sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.pos-sidebar::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.5);
    border-radius: 3px;
}

.pos-sidebar::-webkit-scrollbar-thumb:hover {
    background: #00d4ff;
}
.text-light {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5em;
  letter-spacing: 0.5px;
  color: #B9C4C4 !important;
}
.footer-links a {
  color: #444040;
    font-size: 14px;

}
.footer {
  background: #fff;
  border-top: 1px solid #103536;
  padding-top: 30px;
}
.content-box{
    background-color: #F4F4F4;
    border: 0px solid #103536;
}
.copy-r-content{
    background-image: linear-gradient(290deg,#006175 0%,#007C67 100%);
    font-size: 13px;
    padding: 10px 20px;
}
.text-md{
    /* color: #595959 !important; */
    color: #444040 !important;
    font-size: 14px;

}
.close-hide{
    display: none;
}
.fw-bold{
    line-height: 41px;
}
.form-label {
    color:#000;
}
.form-check-label{
    color:#000;
}
.form-check-input{
    background-color: gray;
}
.form-control{
    background: rgba(0, 0, 0, 0.1);
}
.pricing-features li {
  color: #fff;
}
.pricing-features .text-muted{
    color: #646060 !important;
}