:root {
    --primary-color: #7B1FA2;
    --primary-color-rgb: 123, 31, 162;
    --secondary-color: #4A148C;
    --accent-color: #00BCD4;
    --text-color-light: #f8f9fa;
    --text-color-dark: #212529;
    --bg-dark: #212121;
    --bg-light-dark: #2c2c2c;
    --bg-secondary-dark: #3a3a3a;
    --card-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color-light);
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.custom-btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    display: inline-block;
}

.custom-btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-btn-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-color-rgb), 0.25);
}

.custom-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: none;
    background: none;
    font-weight: 600;
}

.custom-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.custom-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.custom-link:hover i {
    transform: translateX(3px);
}

.fixed-top {
    background-color: var(--bg-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1030;
}

.navbar-brand .logo-img {
    height: 40px;
    width: auto;
}

.site-title {
    font-size: clamp(1.25rem, 4vw, 1.8rem);
    font-weight: 700;
    color: var(--text-color-light);
}

.site-title-footer {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color-light);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas {
    background-color: var(--bg-dark);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title {
    color: var(--text-color-light);
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.navbar-nav .nav-link {
    color: var(--text-color-light);
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color);
}

@media (max-width: 1199.98px) {
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-nav .nav-link {
        width: 100%;
    }
}

.hero-section {
    min-height: 100vh;
    background-image: url(visuals/uploads/hero-bg-software.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: var(--text-color-light);
}

.hero-section p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
}

.scroll-arrow {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.3s ease;
    z-index: 1;
}

.scroll-arrow:hover {
    transform: translateX(-50%) translateY(5px);
}

.about-section {
    background-color: var(--bg-dark);
}

.bg-secondary-dark {
    background-color: var(--bg-secondary-dark) !important;
}

.about-section .card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.about-section .avatar-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.services-section {
    background-color: var(--bg-light-dark);
}

.service-card {
    background-color: var(--bg-secondary-dark);
    color: var(--text-color-light);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.service-card .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--bg-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card .service-icon {
    line-height: 1;
}

.custom-modal-content {
    background-color: var(--bg-secondary-dark);
    color: var(--text-color-light);
    border: none;
    border-radius: 0.5rem;
}

.custom-modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color-light);
}

.custom-modal-body {
    padding: 1.5rem;
}

.custom-modal-body h6 {
    color: var(--accent-color);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.custom-modal-body ul {
    list-style: none;
    padding-left: 0;
}

.custom-modal-body ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.custom-modal-body ul li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
}

.features-section {
    background-color: var(--bg-dark);
}

.custom-accordion {
    --bs-accordion-bg: var(--bg-secondary-dark);
    --bs-accordion-color: var(--text-color-light);
    --bs-accordion-border-color: rgba(255, 255, 255, 0.1);
    --bs-accordion-active-color: var(--accent-color);
    --bs-accordion-active-bg: var(--secondary-color);
    --bs-accordion-btn-focus-box-shadow: none;
}

.custom-accordion-item {
    border: 1px solid var(--bs-accordion-border-color);
    margin-bottom: 10px;
    border-radius: 0.25rem;
}

.custom-accordion-button {
    color: var(--text-color-light);
    font-weight: 600;
    background-color: var(--bg-secondary-dark);
    border-radius: 0.25rem;
    padding: 1rem 1.25rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background-color: var(--secondary-color);
}

.custom-accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.custom-accordion-body {
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem 1.25rem;
    background-color: var(--bg-secondary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-section {
    background-color: var(--bg-light-dark);
}

.custom-nav-pills .nav-link {
    color: var(--text-color-light);
    background-color: var(--bg-secondary-dark);
    border: 1px solid var(--primary-color);
    margin: 0 5px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.custom-nav-pills .nav-link.active,
.custom-nav-pills .nav-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-color-light);
}

.pricing-card {
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}

.pricing-card .badge {
    background-color: var(--accent-color) !important;
    color: var(--bg-dark) !important;
    font-weight: 700;
}

.pricing-card .list-unstyled li {
    display: flex;
    align-items: center;
}

.pricing-card .list-unstyled li i {
    color: var(--accent-color);
}

.pricing-card .display-4 {
    color: var(--accent-color);
}

.industries-section {
    background-color: var(--bg-dark);
}

.industry-card {
    height: 250px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.industry-img {
    filter: brightness(0.8);
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 20, 140, 0.7);
    color: var(--text-color-light);
    transition: background-color 0.3s ease;
}

.industry-card:hover .industry-overlay {
    background-color: rgba(123, 31, 162, 0.8);
}

.stats-section {
    background-color: var(--bg-light-dark);
}

.stats-timeline {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.stats-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateY(-50%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    background-color: var(--bg-light-dark);
    padding: 10px 0;
}

.timeline-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    border: 3px solid var(--bg-light-dark);
    z-index: 2;
}

.stats-timeline .display-4 {
    color: var(--accent-color);
}

.testimonials-section {
    background-color: var(--bg-dark);
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.carousel-item {
    padding: 2rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 1rem;
    height: 3rem;
    width: 3rem;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
}

.carousel-indicators .active {
    background-color: var(--accent-color);
}

.contact-section {
    background-color: var(--bg-light-dark);
}

.contact-section .card {
    border: none;
}

.contact-section .form-control {
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color-light);
}

.contact-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-section .form-control:focus {
    background-color: var(--bg-dark);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-color-rgb), 0.25);
    color: var(--text-color-light);
}

.contact-section .form-label {
    color: var(--text-color-light);
}

.footer-section {
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-title-footer {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    font-weight: 700;
    color: var(--text-color-light);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
    color: var(--accent-color);
    font-weight: 600;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-section .form-control {
    background-color: var(--bg-secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color-light);
}

.footer-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-section .form-control:focus {
    background-color: var(--bg-secondary-dark);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-color-rgb), 0.25);
    color: var(--text-color-light);
}

.list-inline-item:not(:last-child) {
    margin-right: 1rem;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
    .site-title {
        font-size: 1.8rem;
    }
    .site-title-footer {
        font-size: 1.5rem;
    }
    .hero-section h1 {
        font-size: 4.5rem;
    }
    .hero-section p {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .section-title {
        font-size: 2.2rem;
    }
    .site-title {
        font-size: 1.5rem;
    }
    .site-title-footer {
        font-size: 1.3rem;
    }
    .hero-section h1 {
        font-size: 3.8rem;
    }
    .hero-section p {
        font-size: 1.3rem;
    }
}
@media (max-width: 991px) {
.timeline-dot {
 display: none;
}
}
@media (max-width: 767px) {
    .section-title {
        font-size: 1.5rem;
    }
    .site-title {
        font-size: 1.2rem;
    }
    .site-title-footer {
        font-size: 1.2rem;
    }
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .navbar-brand .logo-img {
        height: 30px;
    }
    .stats-timeline::before {
        left: 50%;
        width: 0;
        height: 100%;
        top: 0;
        transform: translateX(-50%);
    }
    .timeline-item {
        text-align: center;
        margin-bottom: 2rem;
        padding-left: 0;
        padding-right: 0;
    }
    .timeline-dot {
        left: 50%;
        transform: translateX(-50%);
        top: -10px;
        border-color: var(--bg-dark);
    }
    .stats-timeline .row {
        flex-direction: column;
        align-items: center;
    }
    .stats-timeline .col-lg-3, .stats-timeline .col-md-6 {
        width: 100%;
        max-width: 250px;
    }
    .footer-section .form-control {
        margin-right: 0 !important;
        margin-bottom: 10px !important;
    }
    .footer-section .d-flex.flex-column.flex-sm-row {
        flex-direction: column !important;
    }
    .footer-section .list-inline {
        text-align: center !important;
    }
    .footer-section .col-12.text-md-end {
        text-align: center !important;
    }
}/* Base styles for the secure terms hub container */
.secureTermsHub {
    margin-top: 60px; /* Top margin for spacing from previous content */
    padding-left: 20px; /* Left padding for content inside the hub */
    padding-right: 20px; /* Right padding for content inside the hub */
    /* Optional: Add max-width and margin: 0 auto; for a centered layout on larger screens */
    /* max-width: 960px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading 1 styles - moderate size */
.secureTermsHub h1 {
    font-size: 2rem; /* Approximately 32px if base font is 16px */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 0; /* Reset default top margin */
    margin-bottom: 1.2em; /* Space below the heading */
    font-weight: 700; /* Bold */
}

/* Heading 2 styles */
.secureTermsHub h2 {
    font-size: 1.75rem; /* Approximately 28px */
    line-height: 1.3;
    margin-top: 1.5em; /* Space above the heading */
    margin-bottom: 1em; /* Space below the heading */
    font-weight: 600; /* Semi-bold */
}

/* Heading 3 styles */
.secureTermsHub h3 {
    font-size: 1.5rem; /* Approximately 24px */
    line-height: 1.4;
    margin-top: 1.2em;
    margin-bottom: 0.8em;
    font-weight: 600; /* Semi-bold */
}

/* Heading 4 styles */
.secureTermsHub h4 {
    font-size: 1.25rem; /* Approximately 20px */
    line-height: 1.4;
    margin-top: 1em;
    margin-bottom: 0.7em;
    font-weight: 500; /* Medium weight */
}

/* Heading 5 styles */
.secureTermsHub h5 {
    font-size: 1.125rem; /* Approximately 18px */
    line-height: 1.5;
    margin-top: 0.8em;
    margin-bottom: 0.6em;
    font-weight: 500; /* Medium weight */
}

/* Paragraph styles */
.secureTermsHub p {
    font-size: 1rem; /* Base font size for paragraphs (e.g., 16px) */
    line-height: 1.6; /* Good line height for readability */
    margin-top: 0; /* Reset default top margin */
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Unordered list styles */
.secureTermsHub ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 0; /* Reset default top margin */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 24px; /* Indentation for bullet points */
}

/* List item styles */
.secureTermsHub li {
    font-size: 1rem; /* Consistent with paragraph text */
    line-height: 1.6; /* Consistent with paragraph text */
    margin-bottom: 0.5em; /* Space between list items */
}
.carousel-control-next, .carousel-control-prev {
    bottom: 60% !important;
}