﻿:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #64748b;
    --accent: #f59e0b;
    --light: #f8fafc;
    --dark: #1e293b;
    --inventory-accent: #1d4ed8;
    --rentac-accent: #1d4ed8;
    --success: #10b981;
    --border-radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary);
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    margin: 0 0.5rem;
}

    .nav-link:hover {
        color: var(--primary);
    }

.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 100px 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

    .btn-primary:hover {
        background-color: var(--primary-dark);
        border-color: var(--primary-dark);
    }

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

    .btn-outline-primary:hover {
        background-color: var(--primary);
        border-color: var(--primary);
    }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-title h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

.module-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: var(--shadow);
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

    .module-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

.module-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

    .module-icon i {
        font-size: 1.8rem;
        color: var(--primary);
    }

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

    .feature-icon i {
        font-size: 1.3rem;
        color: var(--primary);
    }

.testimonial-card {
    /* border-left: 4px solid var(--primary); */
}

.footer {
    background-color: var(--dark);
    color: white;
}

    .footer h5 {
        margin-bottom: 1.5rem;
    }

    .footer a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
    }

        .footer a:hover {
            color: white;
        }

.pricing-card {
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
}

    .pricing-card:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow);
    }

    .pricing-card.popular {
        border: 2px solid var(--primary);
        position: relative;
    }

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.integration-logo {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

    .integration-logo:hover {
        filter: grayscale(0);
        opacity: 1;
    }

.cta-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

/* BILLING*/
:root {
   /* --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #64748b;
    --accent: #f59e0b;
    --light: #f8fafc;
    --dark: #1e293b;
    --success: #1d4ed8;*/
    --billing-accent: #1d4ed8;
  /*  --border-radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;*/
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(135deg, var(--billing-accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary);
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    margin: 0 0.5rem;
}

    .nav-link:hover {
        color: var(--primary);
    }

.hero-billing {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 120px 0 80px;
}

.btn-primary {
    background-color: var(--billing-accent);
    border-color: var(--billing-accent);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

    .btn-primary:hover {
        background-color: #047857;
        border-color: #047857;
    }

.btn-outline-primary {
    color: var(--billing-accent);
    border-color: var(--billing-accent);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

    .btn-outline-primary:hover {
        background-color: var(--billing-accent);
        border-color: var(--billing-accent);
    }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-title h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: var(--shadow);
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    /* border-left: 4px solid var(--billing-accent) !important; */
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

    .feature-icon i {
        font-size: 1.8rem;
        color: var(--billing-accent);
    }

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    background: rgba(16, 185, 129, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1rem;
}

    .benefit-icon i {
        color: var(--success);
        font-size: 1.2rem;
    }

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--billing-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.testimonial-card {
    /* border-left: 4px solid var(--billing-accent); */
}
/*
.footer {
    background-color: var(--dark);
    color: white;
}

    .footer h5 {
        margin-bottom: 1.5rem;
    }

    .footer a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
    }

        .footer a:hover {
            color: white;
        }
    */
.back-to-main {
    color: var(--billing-accent);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

    .back-to-main:hover {
        color: #1d4ed8;
        transform: translateX(-5px);
    }

.stats-section {
    background: linear-gradient(135deg, var(--billing-accent), var(--primary));
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.screenshot-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .screenshot-card:hover {
        transform: translateY(-5px);
    }

.billing-process {
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--billing-accent);
}

.demo-section {
    background: linear-gradient(135deg, var(--billing-accent), var(--primary));
    color: white;
}

.payment-method {
    text-align: center;
    padding: 1.5rem;
}

.payment-icon {
    font-size: 2.5rem;
    color: var(--billing-accent);
    margin-bottom: 1rem;
}

.invoice-preview {
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 2rem;
    background: white;
    box-shadow: var(--shadow);
}
/*MODAL*/
/* Modal Styles */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.modal-header {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 2rem 1rem;
}

.modal-body {
    padding: 1.5rem 2rem;
}

.modal-footer {
    border-top: 1px solid #e2e8f0;
    padding: 1rem 2rem 1.5rem;
}

.login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.form-label {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-check-label {
    color: var(--secondary);
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

    .forgot-password:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(37, 99, 235, 0.1);
    z-index: -1;
}

.icon-1 {
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.icon-2 {
    top: 20%;
    right: 15%;
    animation: float 7s ease-in-out infinite;
}

.icon-3 {
    bottom: 20%;
    left: 15%;
    animation: float 8s ease-in-out infinite;
}

.icon-4 {
    bottom: 10%;
    right: 10%;
    animation: float 9s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }



    .footer {
        text-align: center;
    }

    .modal-header, .modal-body, .modal-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
/*Inventory Page*/
.inventory-process {
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--inventory-accent);
}
.tech-feature {
    text-align: center;
    padding: 1.5rem;
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--inventory-accent);
    margin-bottom: 1rem;
}

.inventory-dashboard {
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 2rem;
    background: white;
    box-shadow: var(--shadow);
}
.metric-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background: var(--light);
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--inventory-accent);
    margin-bottom: 0.5rem;
}

/*HRMS*/

.hr-process {
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary);
}
/*RENTAC*/
.rental-process {
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--rentac-accent);
}
.equipment-card {
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

    .equipment-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

.equipment-img {
    height: 200px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--rentac-accent);
}
.availability-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.available {
    background: var(--success);
    color: white;
}

.rented {
    background: var(--rentac-accent);
    color: white;
}
.equipment-category {
    text-align: center;
    padding: 1.5rem;
}

.equipment-icon {
    font-size: 2.5rem;
    color: var(--rentac-accent);
    margin-bottom: 1rem;
}
/*CRM */
.billing-process {
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--billing-accent);
}
.payment-method {
    text-align: center;
    padding: 1.5rem;
}

.payment-icon {
    font-size: 2.5rem;
    color: var(--billing-accent);
    margin-bottom: 1rem;
}

.invoice-preview {
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 2rem;
    background: white;
    box-shadow: var(--shadow);
}
/*BLOGS*/

.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: var(--shadow);
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 200px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 3rem;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-meta {
    display: flex;
    align-items: center;
    color: var(--secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.blog-meta i {
    margin-right: 0.5rem;
}

.sidebar-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list a {
    display: flex;
    justify-content: between;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--primary);
}

.category-count {
    background: var(--light);
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--secondary);
}

.tag {
    display: inline-block;
    background: var(--light);
    color: var(--dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin: 0.25rem;
    text-decoration: none;
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary);
    color: white;
}

.featured-blog {
    border-left: 4px solid var(--primary);
}

.author-card {
    display: flex;
    align-items: center;
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 1.5rem;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.newsletter-form {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
}

.pagination .page-link {
    color: var(--primary);
    border: 1px solid #e2e8f0;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

 
.read-time {
    display: inline-flex;
    align-items: center;
    background: var(--light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--secondary);
}
/*Documentation*/

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    min-width: 100px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 0.5rem;
}
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.coming-soon-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.webinar-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
/*CONTACT US*/
.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: var(--shadow);
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    border-top: 4px solid var(--primary);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}
 
.office-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.support-hours {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}
