/* Import Comic Relief Font */
@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&display=swap');

/* General Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Comic Relief", system-ui, sans-serif;
  font-weight: 400;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

/* Bold Text */
h1, h2, h3, .fw-bold, .comic-relief-bold {
  font-family: "Comic Relief", system-ui, sans-serif;
  font-weight: 700;
}

/* Regular Text */
p, a, span, .comic-relief-regular {
  font-family: "Comic Relief", system-ui, sans-serif;
  font-weight: 400;
}

/* Top Info Bar */
.top-bar {
  background-color: #2d001b;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
}
.top-bar.hidden {
  opacity: 0;
  visibility: hidden;
}
.top-bar .left,
.top-bar .right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.book-btn {
  background: #7c0033;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.book-btn:hover {
  background: #550022;
}

/* Header */
header {
  position: fixed;
  top: 50;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff; /* Add background color */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow */
  transition: top 0.3s ease; /* Smooth transition for hiding */ 
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
}

.nav {
  display: flex;
  gap: 20px;
  font-weight: bold;
}

.nav a {
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

.nav a:hover {
  color: #7c0033;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.hamburger-menu i {
  color: #000;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/Slider01.jpg') no-repeat center center/cover;
  /* Fallback for browsers that don't support gradients */  
  
}

.hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image scales properly */
  pointer-events: none; /* Allow clicks to pass through */
}
/* canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
} */
.info {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #ccc;
  z-index: 2;
}

/* Info Section */
section.content {
  padding: 60px 20px;
  background: #fff;
  color: #000;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.left-content,
.right-content {
  flex: 1;
  min-width: 280px;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.stat {
  text-align: center;
}

.stat h2 {
  font-size: 28px;
  color: #1b1464;
}

.stat p {
  font-weight: 600;
}

.right-content img {
  width: 100%;
  border-radius: 30px;
}

/* Quick Service Section */
.quick-service-section {
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRY8inmqiDlWrOO8wOR8Mhik2Jw3M55_nEZowdP1Jqm-g&s&ec=72940544'); /* Replace with your image path */
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.quick-service-section .overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  padding: 40px 0;
}

.book-now-btn {
  background: linear-gradient(to right, #f8b500, #d3202f);
  color: #fff;
  padding: 12px 28px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
  text-decoration: none;
}

.book-now-btn:hover {
  background: linear-gradient(to right, #d3202f, #f8b500);
}

/* How It Works Section */
.how-it-works {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
  position: relative;
}
.section-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%; /* Ensure it takes the full height of its container */
  margin: 0 auto; /* Center horizontally */
}
.how-it-works .section-header {
  text-align: center; /* Center the content horizontally */
  margin-bottom: 40px; /* Add spacing below the header */
}

.how-it-works .section-title {
  font-size: 28px;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px; /* Space between title and subtitle */
}

.how-it-works .section-subtitle {
  font-size: 20px;
  color: #555;
  margin-top: 10px;
}

.how-it-works .highlight {
  color: #4a90e2;
  font-weight: bold;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.step {
  text-align: center;
  width: 250px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.step .icon {
  font-size: 40px;
  color: #4a90e2;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Our Services Section */
.our-services {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.our-services .section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
}

.card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.card-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    gap: 20px;
  }

  .step {
    width: 100%;
  }

  /* Top Bar */
  .top-bar {
    font-size: 12px; /* Smaller font size */
    padding: 5px 10px; /* Compact padding */
  }
  .top-bar .left,
  .top-bar .right {
    flex-direction: column; /* Stack content vertically */
    text-align: center;
    gap: 5px;
  }
  .book-btn {
    font-size: 12px; /* Smaller button text */
    padding: 6px 12px; /* Compact button size */
  }

  /* Header */
  header {
    padding: 10px 20px; /* Compact header padding */
  }
  .desktop-nav a {
    font-size: 14px; /* Smaller navigation links */
    margin: 0 5px; /* Reduce spacing between links */
  }

  /* Hero Section */
  .hero .info {
    font-size: 14px; /* Smaller text in the hero section */
  }

  /* Buttons */
  .btn, .book-now-btn {
    font-size: 14px; /* Smaller button text */
    padding: 8px 16px; /* Compact button size */
  }

  /* Stats Section */
  .stats .stat h2 {
    font-size: 20px; /* Smaller stat numbers */
  }
  .stats .stat p {
    font-size: 14px; /* Smaller stat descriptions */
  }

  /* How It Works Section */
  .how-it-works .steps .step h3 {
    font-size: 16px; /* Smaller step titles */
  }
  .how-it-works .steps .step p {
    font-size: 14px; /* Smaller step descriptions */
  }

  /* Footer */
  .footer-section h3 {
    font-size: 16px; /* Smaller footer headings */
  }
  .footer-section p, .footer-section ul li {
    font-size: 14px; /* Smaller footer text */
  }
  
  .footer-section img {
    margin: 0 auto; /* Center the logo horizontally */
    display: block; /* Ensure proper centering */
  }

  .footer-logo {
    display: block;
    margin: 0 auto; /* Center the logo horizontally */
    text-align: center; /* Ensure proper alignment */
  }

  .our-services .card {
    margin-top: 20px; /* Add top padding for cards in mobile view */
  }
}

/* Service Section */
.service-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.service-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center; /* Center content vertically */
  justify-content: center; /* Center content horizontally */
  padding: 0 40px; /* Add space on the left and right for desktop */
}

.service-header {
  flex: 1;
  max-width: 500px; /* Make it medium-small */
  text-align: center; /* Center the text */
}

.service-header h1 {
  font-size: 22px; /* Slightly smaller font size */
  color: #333;
  margin-bottom: 20px;
}

.service-header img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-container {
  flex: 1;
  max-width: 400px; /* Make it medium-small */
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
  text-align: center; /* Center the heading */
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-container input,
.form-container select,
.form-container button {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.form-container button {
  background-color: #7c0033;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.form-container button:hover {
  background-color: #550022;
}

.form-container label {
  font-size: 14px;
  color: #666;
}

.form-container label a {
  color: #7c0033;
  text-decoration: none;
}

.form-container label a:hover {
  text-decoration: underline;
}
label {
  display: flex;
  align-items: center;
  gap: 5px; /* Space between checkbox and label text */
  font-size: 14px; /* Adjust font size for better readability */
  width: auto; /* Allow label to take its content width */
  cursor: pointer; /* Change cursor to pointer for better UX */
  font-weight: normal; /* Normal font weight for labels */
  text-align: left; /* Align text to the left */
}
.terms-checkbox-label {
  display: flex;
  align-items: center;
  font-size: 14px; /* Adjust font size for better readability */
  cursor: pointer; /* Change cursor to pointer for better UX */
  font-weight: normal; /* Normal font weight for labels */
  text-align: left; /* Align text to the left */
}
.terms-checkbox-label input[type="checkbox"] {
  text-align: left; /* Align text to the left */
  margin: 0 auto ; /* Center the checkbox */
  width: 15px; /* Adjust width for better visibility */
  height: 15px; /* Adjust height for better visibility */
  cursor: pointer; /* Change cursor to pointer for better UX */
  border-radius: 4px; /* Rounded corners for the checkbox */
  border: 2px solid #ccc; /* Border color for the checkbox */
  
}
.terms-checkbox-label input[type="checkbox"]:checked {
  background-color: #7c0033; /* Background color when checked */
  border: 2px solid #7c0033; /* Border color when checked */
}
.terms-checkbox-label input[type="checkbox"]:checked::after {
  content: "✓"; /* Checkmark symbol */
  color: #fff; /* Checkmark color */
  font-size: 14px; /* Adjust size of the checkmark */
  position: absolute; /* Position it absolutely within the checkbox */
  left: 3px; /* Adjust position of the checkmark */
  top: -2px; /* Adjust position of the checkmark */
}
.terms-checkbox-text a {
  margin-left: 4px;
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: #222;
  color: #fff;
  padding: 20px 0;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: center; /* Center all footer-section horizontally */
  align-items: center;      /* Vertically center them if taller */
  padding: 20px 280px; /* Add space on the left and right for desktop */
  background-color: #222;
  color: #fff;
  flex-wrap: wrap;         /* Allow wrapping on small screens */
}

.footer-section {
  margin: 0;               /* Remove any external spacing */
  padding: 0 10px;         /* Optional: slight inner spacing */
  text-align: center;      /* Center text inside each section */
}


.footer-section h3 {
  color: #ffa500;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-section img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  justify-content: center; /* Center horizontally */
}

.footer-logo {
  display: block;
  margin-bottom: 20px; /* Space below the logo */
  max-width: 100%;
  height: auto; /* Maintain aspect ratio */
  margin: 0 auto; /* Center the logo */
  justify-content: center; /* Center horizontally */
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 10px;
  margin-top: 10px;
}

.footer-bottom a {
  color: #ffa500;
  text-decoration: none;
}

.footer-bottom-row .footer-bottom-left {
  padding-left: 16px;
}
.footer-bottom-row .footer-bottom-right {
  padding-right: 16px;
}

/* Center all footer-bottom text on mobile */
@media (max-width: 768px) {
  .footer-bottom-row {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .footer-bottom-row .footer-bottom-left,
  .footer-bottom-row .footer-bottom-center,
  .footer-bottom-row .footer-bottom-right {
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center !important;
    width: 100%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column; /* Stack items vertically on smaller screens */
    gap: 20px; /* Add space between sections */
    padding: 20px 0px; /* Add space on the left and right for desktop */
  }

  .footer-section {
    max-width: 100%; /* Allow full width for smaller screens */
  }
  .footer-logo {
    display: block;
    margin-bottom: 20px; /* Space below the logo */
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
  }
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row; /* Arrange items horizontally on larger screens */
    justify-content: center; /* Center horizontally */
    gap: 40px; /* Add space between sections */
  }

  .footer-section {
    text-align: left; /* Align content to the left */
  }
}

/* Footer Logo */
.footer-section img {
  max-width: 100%; /* Ensure the logo scales within its container */
  height: 80px; /* Maintain aspect ratio */
  display: block; /* Remove inline spacing */
  margin: 0 auto; /* Center the logo */
  margin-left: 0%;
  justify-content: center; /* Center horizontally */
}

/* Responsive Footer Logo for Smaller Screens */
@media (max-width: 768px) {
  .footer-section img {
    max-width: 150px; /* Limit the size of the logo on smaller screens */
    height: 60px; /* Maintain aspect ratio */
    justify-content: center; /* Center horizontally */
    margin: 0 auto; /* Center the logo */
    
    
  }
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  gap: 20px;
}

.desktop-nav a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  transition: color 0.3s;
}

.desktop-nav a:hover {
  color: #7c0033;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}

.mobile-nav a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: #7c0033;
}

.close-menu {
  align-self: flex-end;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

.hamburger-menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

/* Show Mobile Navigation */
.mobile-nav.active {
  right: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .nav {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }

  .nav.active {
    display: flex;
  }

  .hamburger-menu {
    display: block;
  }

  header {
    padding: 20px;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .top-bar {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .steps {
    flex-direction: column;
    gap: 20px;
  }

  .step {
    width: 100%;
  }

  .content-container {
    flex-direction: column;
  }

  .service-container {
    flex-direction: column; /* Stack content vertically on smaller screens */
    padding: 0 20px; /* Reduce padding for smaller screens */
  }

  .service-header,
  .form-container {
    max-width: 100%; /* Full width for smaller screens */
  }

  .service-header h1 {
    font-size: 20px; /* Slightly smaller font size for mobile */
  }

  .steps {
    flex-direction: column;
    gap: 20px;
  }

  .step {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .mobile-nav {
    display: none;
  }

  .hamburger-menu {
    display: none;
  }
}

/* Choosing the Right Company Section */
.choosing-company {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.choosing-company h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.choosing-company p {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

.quick-service-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.quick-service-section p {
  font-size: 16px;
  margin-bottom: 20px;
}

.book-now-btn {
  background: linear-gradient(to right, #f8b500, #d3202f);
  color: #fff;
  padding: 12px 28px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s ease;
}

.book-now-btn:hover {
  background: linear-gradient(to right, #d3202f, #f8b500);
}
.working-area {
  background: #f5f9ff;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.sub-title {
  color: #2162c1;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
}

.working-area h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 10px 0;
}

.working-area .highlight {
  color: #3d3ded;
}

.working-area p {
  color: #555;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.contact-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-box {
  display: flex;
  align-items: center;
  
  border-radius: 8px;
  padding: 10px 15px;
 
  flex: 1 1 200px;
}

.contact-box .icon {
  background: #4CAF50;
  
  font-size: 24px;
  padding: 10px;
  border-radius: 50%;
  margin-right: 12px;
}

.contact-box .label {
  font-weight: bold;
  font-size: 14px;
  
}

.contact-box .number {
  font-size: 18px;
  font-weight: 700;
  color: #f57c00;
}
.contact-box .number a {
  color: #f57c00;
  text-decoration: none;
}
.contact-box .number a:hover {
  text-decoration: underline;
}

/* Plus Symbol */
.plus-symbol {
  font-size: 0.8em; /* Adjust size relative to the number */
  vertical-align: super; /* Align the symbol properly */
  margin-left: 2px; /* Add spacing between the number and the symbol */
}

/* Keyframes for scrolling animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Animation classes */
.scroll-fade-in-up {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.scroll-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

/* Add animation delay for staggered effects */
.scroll-delay-1 {
  animation-delay: 0.2s;
}

.scroll-delay-2 {
  animation-delay: 0.4s;
}

.scroll-delay-3 {
  animation-delay: 0.6s;
}
/* Enhanced Services Title Styles */
.services-title-container {
  display: flex; /* Use flexbox for alignment */
  align-items: center; /* Vertically align items */
  justify-content: center; /* Horizontally center items */
  gap: 15px; /* Adds space between icons and text */
  margin-bottom: 40px; /* Keeps the original bottom margin */
  font-size: 28px; /* Keeps the original font size */
  font-weight: bold; /* Keeps the original font weight */
  color: #333; /* Keeps the original color */
}

.title-icon {
  color: #4a90e2; /* A highlight color (matches 'How it Works' section) */
  font-size: 1.2em; /* Makes icons slightly larger than the title text */
}

/* Optional: Add specific styles for the text span if needed */
.title-background { 
  background-color: #eee; 
  padding: 5px 10px; 
   border-radius: 5px; 
  font-weight: bold; /* Makes the text bold */
  color: #333; /* Text color */
  font-size: 1.2em; /* Font size for the text */
  text-align: center; /* Center the text */
  text-transform: uppercase; /* Uppercase text */
  letter-spacing: 1px; /* Spacing between letters */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for depth */
  transition: background-color 0.3s; /* Smooth transition for hover effect */
} 

/* Responsive adjustments for smaller screens */
@media (max-width: 576px) {
  .services-title-container {
      font-size: 24px; /* Slightly smaller title on small screens */
      gap: 10px; /* Reduce gap between items */
  }
  .title-icon {
      font-size: 1.1em; /* Adjust icon size */
  }
  .title-background {
      font-size: 0.9em; /* Adjust text size */
      padding: 5px 8px; /* Adjust padding */
      letter-spacing: 0.5px; /* Adjust letter spacing */

  }
}

/* Company Logos Section */
.company-logos {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 30px 0;
}

.company-logo {
  width: 110px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  opacity: 0.8;
  transition: filter 0.3s, opacity 0.3s, transform 0.3s;
}

.company-logo:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* Review Carousel Section */
.review-carousel-wrapper {
  position: relative;
  max-width: 1300px; /* Adjusted to auto for better responsiveness */
  margin: 0 auto;
  padding: 20px 0;
  background: #f9f9f9; /* Add background color to the carousel wrapper */
}
.review-carousel {
  display: flex;
  width: 100%;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE and Edge */
  background: #f9f9f9;        /* Add background color to the carousel area */
}
.review-carousel::-webkit-scrollbar {
  display: none;              /* Chrome, Safari, Opera */
}
.review-card {
  min-width: 270px;
  max-width: 270px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 20px 18px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #f5f9ff; /* Subtle card background for contrast */
}
.review-card .review-stars {
  color: #f5b301;
  font-size: 1.2em;
  margin-bottom: 8px;
}
.review-card .review-author {
  font-weight: bold;
  margin-bottom: 6px;
  color: #0867ec;
}
.review-card .review-service {
  font-size: 0.95em;
  color: #888;
  margin-bottom: 8px;
}
.review-card .review-date {
  font-size: 0.9em;
  color: #aaa;
  margin-top: 10px;
}
.review-card .review-body {
  color: #111;
  font-size: 1em;
  margin-bottom: 8px;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  

  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  opacity: 0.85;
}
.carousel-arrow.left-arrow { left: -18px; }
.carousel-arrow.right-arrow { right: -18px; }

@media (max-width: 600px) {
  .carousel-arrow.d-md-flex {
    display: none !important;
  }
  #reviewLeftMobile,
  #reviewRightMobile {
    display: inline-flex !important;
    position: static;
    margin: 0 4px;
    width: 32px;
    height: 32px;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
    opacity: 1;
    z-index: 1;
  }
  .review-carousel-wrapper {
    padding: 0 10px; /* Adjust padding for mobile view */
    max-width: 100%; /* Full width on mobile */
    margin: 0 auto; /* Center the carousel on mobile */
  
  }
}

@media (max-width: 600px) {
  .review-carousel {
      
    padding-left: 0;
    padding-right: 0;
  }
  .review-card {
    min-width: 55vw;
    
    margin: 0 auto;
    height: auto;
    padding: 16px 8px;
    font-size: 0.98em;
  }
  .carousel-arrow.left-arrow { left: 0; }
  .carousel-arrow.right-arrow { right: 0; }
}
/* Review Carousel Arrow Icons */
.carousel-arrow i {
  font-size: 1.5em;
  color: #fff;
  transition: transform 0.3s;
}
.carousel-arrow:hover i {
  transform: scale(1.2);
}




/* Review Carousel Section Title */
.review-carousel-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}
/* Review Carousel Section Subtitle */
.review-carousel-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
}
/* Review Carousel Section Background */


/* Review Rating Section */
.review-rating-section {
  background: #f9f9f9; /* Matches the carousel and card backgrounds */
  padding: 50px 0;
}
.carousel-arrow i.fa-chevron-left,
.carousel-arrow i.fa-chevron-right {
  color: #111 !important; /* Black color for arrow icons */
}

/* Why Choose Us Section - Theme Based Styling */
.why-choose-us-section {
  background: #f5f8ff; /* Light theme background */
  color: #222;
  padding: 60px 0 40px 0;
}

.why-choose-us-section .section-title {
  color: #2502b9;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 32px;
  text-align: center;
}

.why-choose-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-choose-list li {
  background: #fff;
  color: #222;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 12px 18px;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px #0001;
  transition: background 0.2s;
}

.why-choose-list li i {
  font-size: 1.3em;
  margin-right: 12px;
  color: #0867ec;
  min-width: 28px;
  text-align: center;
}

.why-choose-list li strong {
  color: #2502b9;
  margin-right: 4px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .why-choose-us-section .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 767px) {
  .why-choose-us-section {
    padding: 36px 0 20px 0;
  }
  .why-choose-us-section .section-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  .why-choose-list li {
    font-size: 1em;
    padding: 10px 10px;
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .why-choose-us-section {
    padding: 24px 0 10px 0;
  }
  .why-choose-list li {
    font-size: 0.97em;
    padding: 8px 6px;
    margin-bottom: 8px;
  }
}
/* Floating WhatsApp and Call Buttons */
.floating-btn {
  position: fixed;
  z-index: 9999;
  bottom: 58px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 4px 16px #0002;
  transition: background 0.2s, transform 0.2s;
}
.floating-btn.whatsapp {
  left: 24px;
  right: auto;
  background: #25d366;
}
.floating-btn.whatsapp:hover {
  background: #1ebe57;
  transform: scale(1.08);
}
.floating-btn.call {
  right: 24px;
  left: auto;
  background: #2502b9;
}
.floating-btn.call:hover {
  background: #0867ec;
  transform: scale(1.08);
}
@media (max-width: 575px) {
  .floating-btn {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    bottom: 16px;
  }
  .floating-btn.whatsapp { left: 12px; right: auto; }
  .floating-btn.call { right: 12px; left: auto; }
}
/* Remove underline from floating button icons/links */
.floating-btn,
.floating-btn:visited,
.floating-btn:active,
.floating-btn:hover,
.floating-btn:focus {
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none;
}
/* Hide all scrollbars for the website */
body, html {
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE and Edge */
}
body::-webkit-scrollbar, html::-webkit-scrollbar {
  display: none;                /* Chrome, Safari, Opera */
}