		.navbar-nav .dropdown-menu .dropdown-item {
		  font-weight: bold;
		}
  
		@media (max-width: 767px) {
			.navbar-nav .nav-link:hover,
			.navbar-nav .nav-link:focus {
			  color: #000 !important;
			  background-color: #f8f9fa !important;
			}
		  }
		.image-comparison {
			width: 100%;
			max-width: 800px; /* optional limit if you still want an upper bound */
			margin: 20px auto;
			border-radius: 20px;
			overflow: hidden;
		  }
		.image-comparison img {
		  width: 100%;
		  height: 100%;
		  object-fit: cover;
		  object-position: left;
		}
		.image-comparison .images-container {
		  position: relative;
		  display: flex;
		}
		/* The before image is positioned on top, and its width will be controlled by JS */
		.image-comparison .images-container .before-image {
		  position: absolute;
		  top: 0;
		  width: 50%;
		}
		.image-comparison .slider {
		  position: absolute;
		  inset: 0;
		  opacity: 0;
		  cursor: pointer;
		}
		.image-comparison .slider-line {
		  position: absolute;
		  height: 100%;
		  width: 4px;
		  background: #000;
		  left: 50%;
		  transform: translateX(-50%);
		}
		.image-comparison .slider-icon {
		  position: absolute;
		  left: 50%;
		  top: 50%;
		  width: 60px;
		  height: 60px;
		  color: #000;
		  transform: translate(-50%, -50%) rotateZ(90deg);
		}
  
		/* Section Styling */
		.section-title {
		  font-weight: 600;
		  margin-bottom: 1.5rem;
		}
  
		/* Service Card Styling */
		.service-card {
		  background-color: white;
		  overflow: hidden;
		}
  
		.service-title {
		  background-color: #0d6efd;
		  font-weight: 500;
		}
  
		.service-image {
		  height: auto;
		  max-height: 400px;
		  overflow: hidden;
		}
  
		.service-image img {
		  object-fit: cover;
		  width: 100%;
		}
  
		.service-info {
		  border-top: 1px solid #eee;
		}
  
		/* FAQ Styling */
		.faq-section {
		  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
		  border-radius: 8px;
		  overflow: hidden;
		}
  
		.faq-title {
		  font-weight: 600;
		  background-color: #000000;
		}
  
		.intro-text {
		  background-color: #f8f9fa;
		  border-bottom: 1px solid #eee;
		}
  
		.accordion-item {
		  border: 1px solid #e9ecef;
		  border-radius: 6px;
		  overflow: hidden;
		}
  
		.accordion-button {
		  width: 100%;
		  text-align: left;
		  padding: 15px;
		  background-color: #f8f9fa;
		  color: #212529;
		  border: none;
		  cursor: pointer;
		  font-weight: 500;
		  display: flex;
		  justify-content: space-between;
		  align-items: center;
		  transition: all 0.3s ease;
		  border-radius: 6px;
		}
  
		.accordion-button:hover {
		  background-color: #e9ecef;
		}
  
		.accordion-button.active {
		  background-color: #0d6efd;
		  color: white;
		  border-bottom-left-radius: 0;
		  border-bottom-right-radius: 0;
		}
  
		.accordion-content {
		  height: 0;
		  overflow: hidden;
		  transition: height 0.3s ease;
		  background-color: white;
		}
  
		/* Ensure content is fully hidden when collapsed */
		.accordion-content p {
		  margin: 0;
		  padding: 15px;
		  color: black;
		}
  
		.icon-close {
		  display: none;
		}
  
		.accordion-button.active .icon-open {
		  display: none;
		}
  
		.accordion-button.active .icon-close {
		  display: inline;
		}
  
		@media (max-width: 991.98px) {
		  .faq-section {
			margin-top: 2rem;
		  }
		}


		 /* Adjust box width and layout */
.services {
	width: 100%;
	background: #007bff;
	padding: 20px;
	border-radius: 10px;
	color: white;
	position: relative;
	min-height: 250px; /* Ensures text fits */
  }
  
  .heading {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 10px;
	word-wrap: break-word;
  }
  
  /* Premium-looking icons */
  .icon-box {
	position: absolute;
	bottom: 15px;
	right: 15px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .service-icon {
	font-size: 24px;
	color: white;
  }
  
  .btn-custom {
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: #ffc107;
	color: black;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  @media (max-width: 768px) {  /* Applies only on mobile */
	.button-group a {
	  display: block; /* Stack buttons */
	  width: 100%; /* Make them full-width */
	  margin-bottom: 10px; /* Add space between buttons */
	}
  }

  .cookie-consent-popup {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 400px;
	padding: 20px;
	background-color: white;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	z-index: 1000;
}

.cookie-consent-content {
	text-align: center;
}

.cookie-consent-content p {
	margin-bottom: 15px;
}

.cookie-consent-content button {
	margin: 5px;
}