/* Global Styles */
html, body {
  height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
	margin-bottom: 25px;
}

/* Link Styles */
a {
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: underline;
}

/* Typography */
.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
  margin-top: .5rem;
  margin-bottom: .5rem;
  font-weight: 400;
  line-height: 1.2;
}

code {
    font-size: 87.5%;
    color: #1a1a1a;
    word-wrap: break-word;
}


/* Responsive Typography */
.display-4 {
  font-size: 2.5rem; /* Default size */
  @media (min-width: 768px) { font-size: 2.5rem; }
  @media (min-width: 992px) { font-size: 3rem; }
  @media (min-width: 1200px) { font-size: 3.5rem; }
}

/* Container Customization */
.container {
  max-width: 1150px;
}

/* Background Styles */
.bg-dark {
  background-color: #0061f2 !important;
}

.full-width-background {
  background-color: #0061f2;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Hero Section Styles */
.shape {
  position: relative;
  overflow: hidden;
  height: auto; /* Adjust the height as needed */
  color: white; /* Text color */
  display: flex;
  align-items: center; /* Vertical center alignment */
  justify-content: center; /* Horizontal center alignment */
}

.shape::before {
  border-radius: 80%;
  position: absolute;
  background: #0061f2 !important;
  right: -200px;
  left: -200px;
  top: -200px;
  content: '';
  bottom: 0;
  z-index: -1; /* Ensure the shape is behind the text */
}

.shape-container {
  height: 100%;
  z-index: 1; /* Ensure the text is above the shape */
  text-align: center; /* Center the text horizontally */
  padding-top: 0px;
  padding-bottom: 0px;
}

.content {
	margin:20px auto;
}

.w-75 {
  width: 100% !important;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

/* Back-End Feature Section Styles */
.backend-feature-section img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Information Box Styles */
.info-box {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  height: 100%;
  text-align: center;
}

.info-box h3 {
  color: #0056b3;
}

.info-box i {
  font-size: 2rem;
  color: #0061f2;
}


.kb-posts ul {
    list-style-type: none;
    padding-left: 0;
}
        
.kb-posts li {
    padding-bottom: 5px;
}
        
.kb-posts a {
    text-decoration: none;
    color: #fff;
}
        
.kb-posts a:hover {
    text-decoration: underline;
}

.footer-links ul {
    list-style-type: none;
    padding-left: 0;
}
        
.footer-links li {
    padding-bottom: 5px;
}
        
.footer-links a {
    text-decoration: none;
    color: #fff;
}
        
.footer-links a:hover {
    text-decoration: underline;
}



.pricing-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.card-header {
    background-color: #fff;
    padding: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.plan-title {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plan-details {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.plan-price {
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

hr {
    border-top: 1px solid #eee;
    margin: 10px 0;
}

.card-body {
    background-color: white;
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.plan-features li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.plan-button {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
}


.login-logo {
	max-width: 250px;
	padding-top: 20px;
}


/* Knowledge Base Page Styling */
.kb-container {
    padding: 20px 0;
}

.kb-container h1 {
    margin-bottom: 20px;
    color: #333;
}

.article {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.article h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.article h2 a {
    color: #0061f2;
    text-decoration: none;
}

.article h2 a:hover {
    text-decoration: underline;
}

.article small {
    display: block;
    color: #666;
    margin-bottom: 10px;
}

.article p {
    margin-bottom: 10px;
}

.article a {
    color: #0061f2;
    text-decoration: none;
}

.article a:hover {
    text-decoration: underline;
}

.fa-book {
    color: #007bff; 
    margin-right: 5px;
}




/* Sidebar */
.sidebar {
    padding: 15px 15px 15px 30px; /* Increased padding */
    background-color: #f8f9fa; /* Light background color */
    border-radius: 4px; /* Slight rounding of corners */
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    margin-bottom: 10px; /* Space between items */
    padding-bottom: 10px; /* Padding at the bottom */
    border-bottom: 1px solid #eaecef; /* A light border for each item */
}

.sidebar li:last-child {
    border-bottom: none; /* Remove border for the last item */
}

.sidebar a {
    color: #007bff; /* Primary color for links */
    text-decoration: none; /* No underline */
    font-size: 0.95em; /* Adjust font size */
}

.sidebar a:hover {
    color: #0056b3; /* Darker color on hover */
}

.sidebar i {
    color: #6c757d; /* Grey color for icons */
    margin-right: 5px; /* Space between icon and text */
    vertical-align: middle; /* Align icon with text */
}


/* Adjustments for smaller screens */
@media screen and (max-width: 768px) {
    .kb-container {
        padding: 20px 15px;
    }

    .sidebar {
        padding-left: 0;
        margin-top: 30px;
    }
}

.footer .list-inline-item {
    display: inline-block; /* Align items horizontally */
    margin-right: 10px; /* Space between items */
}

/* Align text to the left for Knowledge Base and About Us sections */
.footer .kb-section, .footer .about-section {
    text-align: left;
}

/* Testimonial Styles */
.testimonial-quote {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}

/* Additional styling as needed */


.cc-window.cc-floating {
    border-radius: 10px;
}

.cc-color-override-1166289047 .cc-btn {
    border-radius: 5px;
}

footer {
	margin-top: auto;
   /*position: fixed;*/
  left: 0;
  bottom: 0;
  width: 100%;
  color: white;
  text-align: center;
}

.footer-divider {
    height: 1px;
    background-color: #666; /* Or any color you prefer */
    width: 80%; /* Or as per your design requirement */
    margin: 20px auto; /* Centered with some vertical space */
}
