body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f7f7f7; /* Gray background */
}

.notification-bar {
	background-color: #333;
	color: #fff;
	padding: 10px;
	text-align: center;
}

.navbar {
	background-color: #fff;
	padding: 10px;
	text-align: center;
}

.nav-item {
  margin: 0 20px;
}

.header {
	background-color: #f7f7f7;
	padding: 10px;
	text-align: center;
}

.header-text {
  max-width: 800px; /* Match the max-width of the body sections */
  margin: 0 auto; /* Center the text */
  padding: 20px; /* Add some padding for readability */
  text-align: left;
}

.site-logo {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.site-logo img {
  width: auto; /* Increase the logo width */
  margin-right: 20px; /* Increase the margin between logo and company text */
}

.site-logo span {
  font-size: 24px; /* Increase the company text font size */
  font-weight: bold; /* Make the company text bold */
}

.book-consultation-btn {
    display: inline-block;
    background-color: #007bff; /* Bright blue */
    color: #ffffff; /* White text */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.book-consultation-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap; /* Add this property */
  align-items: center;
}

.column {
  flex: 1;
  padding: 20px;
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

.image-fit {
  max-width: 100%;
  height: auto;
}

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

.column li {
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.column li:last-child {
  border-bottom: none;
}

.column i {
  margin-right: 10px;
}

.learn-more-btn {
  background-color: #FF0000; /* Bright red color */
  color: #FFFFFF; /* White text color */
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 50px; /* Rounded corners */
  cursor: pointer;
  text-decoration: none; /* Remove underline */
}

.learn-more-btn:hover {
  background-color: #FF3737; /* Darker red color on hover */
}

.body-content {
  max-width: 1500px; /* Increased maximum width for the container */
  margin: 0 auto; /* Center the container horizontally */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.section {
  border: 1px solid #71706e;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border-radius: 10px;
  margin: 40px 0;
  min-width: 800px; /* Set a minimum width for the sections */
  box-sizing: border-box; /* Include padding and border in the width calculation */
  width: calc(80% - 20px); /* Add this */
}

.section h2 {
	margin-top: 0;
}

.testimonial-slider {
    position: relative;
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    flex: 0 0 50%;
    box-sizing: border-box;
    padding: 20px;
}

.stars {
    margin-bottom: 10px;
}

.logo-container {
  height: 130px; /* Add a fixed height */
  overflow-x: hidden; /* Hide the scrollbar */
  white-space: nowrap;
  width: 100%;
  position: relative; /* Add this to enable absolute positioning */
}

.logo-scroll {
  position: absolute; /* Add this to enable scrolling without scrollbar */
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.logo {
  display: inline-block;
  margin-right: 20px;
  width: 150px;
  height: auto;
}


.logo img {
  max-width: 100%;
  height: auto;
}


.footer {
	background-color: #444;
	padding: 10px;
	text-align: center;
	color: #fff;
}

/* Media queries for responsive design */

/* Add this media query */
@media (max-width: 600px) {
  .section {
    min-width: 0; /* Reset minimum width on smaller screens */
    width: 100%; /* Make sections full width on smaller screens */
}

/* Screen sizes smaller than 768px (mobile) */
@media (max-width: 767px) {
	.section {
		width: 100%; /* Full width on mobile */
		margin: 20px 0;
	}
}

/* Screen sizes between 768px and 992px (tablet) */
@media (min-width: 768px) and (max-width: 991px) {
	.section {
		width: calc(50% - 20px); /* Two columns on tablet */
		margin: 20px;
	}
}

/* Screen sizes larger than 992px (desktop) */
@media (min-width: 992px) {
	.section {
		width: calc(33.33% - 20px); /* Three columns on desktop */
		margin: 20px;
	}
}