/* Enhanced Styles for MQ Upholstery & Carpet */

:root {
  --primary-color: #1e88e5; /* Modern blue */
  --secondary-color: #00b8d4; /* Cyan accent */
  --accent-color: #ffc107; /* Amber accent */
  --dark-color: #263238; /* Dark blue-grey */
  --light-color: #f5f5f5; /* Off-white */
  --text-color: #37474f; /* Blue-grey */
  --text-light: #78909c; /* Light blue-grey */
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Typography Updates */
body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-color);
  line-height: 1.8;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.banner_taital,
.banner_taital_1,
.services_taital,
.choose_taital,
.client_taital {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* Global Styles */
.section-padding {
  padding: 100px 0;
}

.section-heading {
  position: relative;
  margin-bottom: 60px;
  z-index: 1;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-heading h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
}

.section-heading:hover h2:after {
  width: 100%;
}

/* Button Styles */
.modern-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: white;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: var(--box-shadow);
}

.modern-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.modern-btn.outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.modern-btn.outline:hover {
  background: var(--primary-color);
  color: white;
}

/* Updated Header */
.header_section {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.header_fixed {
  position: fixed;
  background: rgba(30, 136, 229, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  animation: slideDown 0.5s ease-in-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.logo {
  padding-left: 0;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: var(--transition);
}

.logo-text {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.logo-text:after {
  content: "";
  position: absolute;
  width: 30%;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}

.logo-subtext {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 2px;
  text-transform: uppercase;
}

.header_fixed .logo-text {
  font-size: 28px;
}

.header_fixed .logo-subtext {
  font-size: 12px;
}

.brand-logo:hover .logo-text:after {
  width: 100%;
}

.menu_text {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  padding-top: 0;
}

.menu_text ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 30px;
  color: white;
  font-weight: 500;
  transition: var(--transition);
  margin-right: 20px;
}

.phone-link:hover {
  background: var(--accent-color);
  color: var(--dark-color);
  transform: translateY(-3px);
}

.toggle_menu {
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  cursor: pointer;
  margin-left: 15px;
}

.toggle_menu:hover {
  background: var(--accent-color);
  transform: rotate(90deg);
}

.overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.overlay a {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 12px 0;
  margin: 8px 0;
  text-transform: uppercase;
  overflow: hidden;
}

.overlay a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--accent-color);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.overlay a:hover:before,
.overlay a.active:before {
  width: 100%;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  color: white;
  transition: var(--transition);
}

.overlay .closebtn:hover {
  color: var(--accent-color);
  transform: rotate(90deg);
}

/* Hero Section */
.hero-section {
  display: block !important;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  ) !important;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("images/pattern.png");
  opacity: 0.1;
  z-index: 0;
}

.hero-section:after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: white;
  transform: skewY(-3deg);
  z-index: 1;
}

.banner_section {
  position: relative;
  padding: 180px 0 120px;
  z-index: 2;
  width: 100%;
}

.banner-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.banner_taital {
  font-size: 36px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  order: 1;
}

.banner_taital_1 {
  font-size: 58px;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  order: 2;
}

.banner_taital_1:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  bottom: -15px;
  left: 0;
}

.banner_text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 90%;
  line-height: 1.6;
  order: 3;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  margin-bottom: 15px;
  order: 4;
}

.hero-btn {
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-btn.primary {
  background-color: var(--accent-color);
  color: var(--dark-color);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.3);
  border-radius: 30px;
}

.hero-btn.primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

.hero-btn.secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
}

.hero-btn.secondary:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-5px);
  border-color: white;
}

.hero-btn i {
  margin-right: 6px;
  font-size: 14px;
}

.hero-image {
  position: relative;
  z-index: 5;
}

.hero-image img {
  max-width: 100%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  animation: float 3s ease-in-out infinite;
}

.hero-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 80%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30% 0 0 0;
  z-index: 1;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .banner_taital {
    font-size: 32px;
  }

  .banner_taital_1 {
    font-size: 50px;
  }

  .banner_text {
    font-size: 16px;
    max-width: 95%;
  }

  .banner_section {
    padding: 150px 0 100px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
  }

  .banner_section {
    padding: 120px 0 80px;
  }

  .banner_taital {
    font-size: 28px;
  }

  .banner_taital_1 {
    font-size: 40px;
  }

  .banner_text {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-buttons {
    margin-top: 20px;
  }

  .hero-btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .hero-btn i {
    font-size: 12px;
    margin-right: 5px;
  }

  .logo-text {
    font-size: 28px;
  }

  .logo-subtext {
    font-size: 12px;
  }

  .header_fixed .logo-text {
    font-size: 24px;
  }

  .header_fixed .logo-subtext {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .banner_section {
    padding: 100px 0 60px;
    text-align: center;
  }

  .banner_taital_1:after {
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
  }

  .banner_text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    gap: 12px;
  }

  .hero-btn {
    width: 80%;
    max-width: 250px;
  }

  .hero-image {
    margin-top: 30px;
  }

  .logo-text {
    font-size: 24px;
  }

  .logo-subtext {
    font-size: 11px;
  }

  .menu_text {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0;
    height: 40px;
  }

  .toggle_menu {
    width: 38px;
    height: 38px;
    margin-left: 0;
  }

  .toggle_menu i {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: auto;
  }

  .banner_section {
    padding: 80px 0 40px;
  }

  .banner_taital {
    font-size: 24px;
  }

  .banner_taital_1 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .banner_taital_1:after {
    height: 3px;
    bottom: -10px;
  }

  .banner_text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .hero-buttons {
    width: 100%;
    margin-top: 15px;
  }

  .hero-btn {
    width: 90%;
    max-width: 220px;
    padding: 10px 15px;
    font-size: 11px;
  }

  .hero-btn i {
    font-size: 11px;
    margin-right: 4px;
  }

  .logo-text {
    font-size: 22px;
  }

  .logo-subtext {
    font-size: 10px;
  }

  .toggle_menu {
    width: 34px;
    height: 34px;
  }

  .toggle_menu i {
    font-size: 16px;
  }
}

/* Card Styles */
.modern-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  margin-bottom: 30px;
  border: none;
}

.modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.modern-card .card-img {
  height: 200px;
  overflow: hidden;
}

.modern-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.modern-card:hover .card-img img {
  transform: scale(1.1);
}

.modern-card .card-body {
  padding: 25px;
}

.modern-card .card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.modern-card .card-text {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Service Cards */
.service-card {
  position: relative;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  margin-bottom: 30px;
  padding: 30px;
  text-align: center;
  border: none;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-color);
  color: var(--primary-color);
  font-size: 32px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary-color);
  color: white;
}

.service-card .service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.service-card .service-text {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Testimonial Styles */
.testimonial-section {
  background: var(--light-color);
  padding: 50px 0 40px;
  margin: 0;
  display: block;
}

.testimonial-section .section-heading {
  margin-bottom: 30px;
}

.testimonial-section .section-heading h2 {
  margin-bottom: 10px;
}

.testimonial-section .section-heading p {
  margin-bottom: 0;
}

.testimonial-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  padding: 20px;
  margin: 5px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.testimonial-card:before {
  content: "\201C";
  font-family: Arial;
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 60px;
  color: rgba(30, 136, 229, 0.1);
  line-height: 1;
}

.testimonial-rating {
  color: var(--accent-color);
  font-size: 14px;
  margin-bottom: 10px;
  z-index: 1;
  position: relative;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  color: var(--text-color);
  position: relative;
  z-index: 1;
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.5;
}

.testimonial-author-info {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 10px;
  margin-top: auto;
}

.testimonial-author-info h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-color);
}

.testimonial-author-info p {
  margin: 0;
  font-size: 13px;
  color: var(--text-light);
}

.testimonial-section .text-center.mt-5 {
  margin-top: 20px !important;
}

/* Owl Carousel adjustments */
.owl-carousel {
  margin-bottom: 20px;
}

.owl-carousel .owl-stage {
  display: flex;
  padding-top: 5px;
  padding-bottom: 5px;
}

.owl-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
  height: auto;
}

.owl-carousel .testimonial-card {
  width: 100%;
}

/* Process Steps */
.process-steps {
  counter-reset: process-counter;
}

.process-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 40px;
}

.process-step:before {
  counter-increment: process-counter;
  content: counter(process-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  box-shadow: var(--box-shadow);
}

.process-step h4 {
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--dark-color);
}

.process-step p {
  color: var(--text-light);
}

/* Footer Enhancement */
.footer_section {
  background: var(--dark-color);
}

.copyright_section {
  background-color: #1a2327;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright_text,
.address_text {
  color: rgba(255, 255, 255, 0.7);
}

/* Updated form elements */
.form-control {
  height: 50px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  padding: 10px 15px;
  font-size: 14px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
}

textarea.form-control {
  height: auto;
  min-height: 120px;
}

/* Stats counter */
.counter-box {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

.counter-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.counter-number {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.counter-text {
  font-size: 16px;
  color: var(--text-light);
  margin: 0;
}

/* Pricing Styles */
.pricing-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  margin-bottom: 30px;
  text-align: center;
  border: none;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  background: var(--primary-color);
  padding: 30px 20px;
  color: white;
}

.pricing-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.pricing-price {
  font-size: 48px;
  font-weight: 700;
  margin: 10px 0 0;
}

.pricing-price .currency {
  font-size: 24px;
  font-weight: 400;
  vertical-align: super;
}

.pricing-price .period {
  font-size: 16px;
  font-weight: 400;
}

.pricing-features {
  padding: 30px 20px;
  list-style: none;
  margin: 0;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.pricing-footer {
  padding: 0 20px 30px;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.staggered-fade-in > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.staggered-fade-in.active > *:nth-child(1) {
  transition-delay: 0.1s;
}

.staggered-fade-in.active > *:nth-child(2) {
  transition-delay: 0.2s;
}

.staggered-fade-in.active > *:nth-child(3) {
  transition-delay: 0.3s;
}

.staggered-fade-in.active > *:nth-child(4) {
  transition-delay: 0.4s;
}

.staggered-fade-in.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* Banner Background Overlay */
.banner-overlay {
  position: relative;
}

.banner-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 184, 212, 0.8),
    rgba(30, 136, 229, 0.8)
  );
  z-index: 1;
}

.banner-overlay > * {
  position: relative;
  z-index: 2;
}

/* Detailed Service Styles */
.detailed-service {
  margin-bottom: 50px;
}

.detailed-service-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 20px;
}

.detailed-service-img img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.detailed-service:hover .detailed-service-img img {
  transform: scale(1.05);
}

.detailed-service-content h3 {
  margin-bottom: 15px;
  color: var(--dark-color);
}

.detailed-service-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.service-features {
  margin-bottom: 20px;
}

.service-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
}

/* Call to Action Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  width: 100%;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 184, 212, 0.1),
    rgba(30, 136, 229, 0.1)
  );
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 20px;
}

.cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
  text-decoration: none;
}

.cta-btn.primary {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-btn.primary:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

.cta-btn.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.cta-btn.secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Before/After Comparison */
.before-after-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.before-image {
  z-index: 1;
}

.after-image {
  z-index: 2;
  width: 50%;
  border-right: 3px solid white;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: white;
  left: 50%;
  z-index: 3;
  cursor: ew-resize;
}

.slider-handle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-handle:after {
  content: "\f07e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-color);
}

/* Responsive fixes */
@media (max-width: 992px) {
  .section-padding {
    padding: 70px 0;
  }

  .cta-content h2 {
    font-size: 30px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .before-after-container {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .process-step {
    padding-left: 70px;
  }

  .process-step:before {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .before-after-container {
    height: 250px;
  }
}

/* Animation to keep */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Why Choose Us Section */
.why-choose-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.why-choose-image:hover img {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.why-choose-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--primary-color);
  font-size: 20px;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--primary-color);
  color: white;
  transform: rotateY(180deg);
}

.feature-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-color);
}

.feature-text p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Counter Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.counter-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  background-color: white;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.counter-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.counter-box:hover .counter-icon {
  transform: scale(1.2);
}

.counter-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 15px;
  transition: var(--transition);
}

.counter-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 5px;
  line-height: 1.2;
  animation: countUp 1s ease forwards;
  opacity: 0;
}

.counter-text {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 0;
  font-weight: 500;
}

/* Animation delays for counters */
.counter-box:nth-child(1) .counter-number {
  animation-delay: 0.3s;
}

.counter-box:nth-child(2) .counter-number {
  animation-delay: 0.6s;
}

.counter-box:nth-child(3) .counter-number {
  animation-delay: 0.9s;
}

.counter-box:nth-child(4) .counter-number {
  animation-delay: 1.2s;
}

/* Counter Decorative Elements */
.counter-box:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(30, 136, 229, 0.05);
  top: -30px;
  right: -30px;
  z-index: 0;
}

.counter-box:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 184, 212, 0.05);
  bottom: -15px;
  left: -15px;
  z-index: 0;
}

.counter-box > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .counter-box {
    margin-bottom: 30px;
  }

  .counter-number {
    font-size: 36px;
  }

  .feature-item {
    margin-bottom: 20px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
  }

  .feature-text h4 {
    font-size: 16px;
  }
}

/* Add the exact selector with specified margin */
#testimonials > div > div.section-heading.text-center > h2 {
  margin-top: 50px;
}

/* Header Mobile Responsiveness */
@media (max-width: 768px) {
  .header_section {
    padding: 12px 0;
  }

  .logo {
    display: flex;
    align-items: center;
  }

  .brand-logo {
    flex-direction: row;
    align-items: center;
  }

  .logo-text {
    font-size: 22px;
    margin-right: 6px;
  }

  .logo-subtext {
    font-size: 10px;
    margin-top: 0;
    white-space: nowrap;
  }

  .toggle_menu {
    width: 36px;
    height: 36px;
    top: 0;
    margin-left: 8px;
  }

  .menu_text {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0;
    height: 40px;
  }

  .header_fixed {
    padding: 10px 0;
  }
}

@media (max-width: 576px) {
  .header_section {
    padding: 10px 0;
  }

  .logo-text {
    font-size: 20px;
  }

  .logo-subtext {
    font-size: 9px;
    max-width: 80px;
    white-space: normal;
    line-height: 1.1;
  }

  .phone-link {
    padding: 6px 10px;
    font-size: 12px;
  }

  .phone-link i {
    font-size: 10px;
  }

  .toggle_menu {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 375px) {
  .logo-text {
    font-size: 18px;
  }

  .logo-subtext {
    max-width: 70px;
    font-size: 8px;
  }

  .phone-link {
    display: none;
  }
}

/* Fixed Position Navbar */
.header_fixed .brand-logo {
  transform: scale(0.9);
  transform-origin: left center;
}

@media (max-width: 768px) {
  .banner_section {
    padding-top: 20px;
  }

  .header_section {
    padding: 8px 0;
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--secondary-color)
    );
  }

  .header_fixed {
    background: rgba(30, 136, 229, 0.98);
  }
}

@media (max-width: 768px) {
  .logo {
    padding-left: 5px;
  }

  .menu_text ul {
    padding-right: 5px;
  }

  .overlay .closebtn {
    top: 15px;
    right: 30px;
    font-size: 50px;
  }
}
