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

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5rem;
}

main {
	margin-bottom: 500px;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
}

.navbar-logo {
    height: 50px;
}

/* Navigation Bar and Footer Styles */
.navbar, .footer {
	background-color: var(--custom-color);
}

.navbar .nav-link,
.navbar-light .navbar-nav .nav-link {
    color: var(--header-footer-text-color) !important;
}

.navbar .nav-link:hover,
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

/*.navbar-dark .navbar-nav .nav-link {
    color: #f9f9f9;
}*/

.page-content {
	margin: 25px auto;
}

.page-content h1 {
	margin: 15px auto;
}


/* Sidebar Styles */
.sidebar {
	margin-right: 15px;
}

.list-group-item-action:focus, .list-group-item-action:hover {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #c5c5c5;
}

.price {
	display: block;
	font-size: 60px;
	line-height: 60px;
	text-align: center;
}

.currency-symbol {
	font-size: 28px;
	position: relative;
	margin: 0px -15px 0px 0px;
}

/* Card Styles */
.card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.card-header {
	background-color: #e9ecef;
	color: #212529 !important;
}

/* Buttons */
.btn-danger {
    background-color: #dc3545;
}

.btn-link {
    font-weight: 400;
    color: var(--text-on-primary);
    text-decoration: none;
}

.btn-link:hover {
   color: var(--text-on-secondary);
   text-decoration: underline;
}

/* Dashboard Styles */
.dashboard-container {
    padding: 20px;
}

.quick-actions ul {
    list-style-type: none;
    padding-left: 0;
}

.quick-actions li a {
    color: #007bff;
    text-decoration: none;
}

.quick-actions li a:hover {
    text-decoration: underline;
}

.insights {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: .25rem;
    padding: 15px;
    margin-top: 20px;
}

.download-details {
    padding: 0px;
    margin-top: 20px;
}



.product-detail {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.product-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.product-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.product-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-primary {
    /*background-color: #007bff;*/
	background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: #000;
}


.product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff; /* Optional */
}

.product-image-container {
    flex: 0 0 auto;
    width: 100px;
}

.product-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #d7d6d6;
    border-radius: 5px;
}

.product-info {
    flex: 1;
    padding-left: 15px;
}

.product-meta {
    font-size: 0.9rem;
    color: #666;
	margin-right: 10px;
}

.card-footer {
    background-color: #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.video-responsive {
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
}

.video-responsive iframe {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}








.content {
	flex-grow: 1;
}



.jumbotron {
    background: linear-gradient(to right, #0052D4, #65C7F7); /* Fallback */
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    background-size: cover;
    color: #fff;
    border-radius: 0px;
}

.jumbotron h1 {
	font-size: 3rem;
}

.jumbotron p {
	font-size: 1.5rem;
}

/* Video Container and Play Button */
.video-container, .overlay {
	position: relative;
}

.btn-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.embed-responsive-item {
	z-index: 1;
}

.media-container img {
	max-height: 350px;
	width: 100%;
	object-fit: cover;
}


/* Call to Action Section Styles */
.cta-section {
    background: linear-gradient(to right, #0052D4, #65C7F7); /* Fallback */
	background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
	color: #fff;
}

.cta-heading {
  font-size: 2.5rem;
  font-weight: bold;
}

.cta-text {
  font-size: 1.2rem;
  margin-top: 20px;
}

.cta-btn {
	background-color: var(--primary-color);
	color: #fff;
	font-size: 1.1rem;
	font-weight: bold;
	padding: 10px 20px;
	border-radius: 30px;
	margin-top: 20px;
	transition: background-color 0.3s ease;
}

.cta-btn:hover {
	background-color: var(--secondary-color);
}

.cta-btn i {
  margin-right: 8px;
}


.whyus-section {
  background-color: var(--background-color); /* or another color */
}

.whyus-heading {
  color: #494949;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}


/* Icon Box Styles */
.icon-box {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.icon-box i {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.icon-box h3 {
  font-weight: bold;
  margin-bottom: 15px;
}

.icon-box:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.faq-section {
	background-color: var(--background-color); /* or another color */
}

.faq-heading {
  /*color: var(--primary-color);*/
  color: #494949;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.faq-card {
  border: none;
  background-color: transparent;
  margin-bottom: 15px;
}

.faq-card-header {
  background: #d5d5d5;
  color: #000;
  padding: .75rem 1.25rem;
  border: none;
}

.faq-btn {
  color: #3e3e3e;
  font-weight: bold;
  text-align: left;
  padding-left: 0;
  width: 100%;
  text-decoration: none;
  display: flex; /* Added for flexbox layout */
  justify-content: space-between; /* Aligns items on opposite ends */
  align-items: center; /* Vertically center the content */
}

.faq-card-header .faq-btn.collapsed {
  color: var(--primary-color);
  background-color: transparent;
}

.faq-card-body {
  background-color: white;
  padding: 20px;
  border-top: none;
}

.faq-card:not(:last-of-type) .faq-card-body {
  border-bottom: 1px solid #ddd;
}

.testimonials-section {
  background-color: var(--background-color); /* Choose a light background */
  text-align: center;
}

.testimonials-section h2 {
	color: #494949;
	font-weight: bold;
	margin-bottom: 30px;
}

.testimonial {
	background-color: white;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column; /* Stack items vertically */
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 10px; /* Center image and add space below */
}

.testimonial blockquote {
  margin: 0 0 15px 0;
  font-style: italic;
}

.testimonial footer {
  font-weight: bold;
  color: var(--primary-color);
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.testimonial footer img {
	justify-self: start;
}

.testimonial footer .testimonial-name-role {
	justify-self: end;
	text-align: left;
}

.services-heading {
	color: #494949;
	font-weight: bold;	
}


/* Clear styles after the post */
/* Clearfix */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}







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

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* Center the menu items */
}

.footer-menu li {
    margin: 0 0px; /* Add space between menu items */
}

.footer-menu a {
    color: white;
    text-decoration: none;
}

.footer-menu a:hover {
    text-decoration: underline;
}

.cc-window.cc-floating {
    border-radius: 10px;
}
footer a {
  color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
  color: rgba(255, 255, 255, 1);
}

footer h5 {
  color: #fff;
}


/* On medium-sized devices and up, show the text next to the icons */
@media (min-width: 768px) {
    
	
}

@media (max-width: 767px) {
	.btn-group {
		margin-bottom: 15px;
		margin-top: -5px;
	}
	
	.jumbotron h1 {
	   font-size: 2.5rem;
	}
	
	.btn:not(:disabled):not(.disabled) {
		margin-bottom: 20px;
	}
	
	.navbar-logo {
		height: 42px;
	}

}