:root {
  --primary: #db214c;
  --primary-rgb: 0, 114, 187;
}

.header-area {
  position: relative;
}

.navbar-area .desktop-nav .navbar .navbar-brand img {
  width: 200px;
}

.single-footer-widget .logo img {
  width: 200px;
}

.default-btn {
  font-size: 16px;
  background-color: transparent;
  color: #fff;
  padding: 15px 40px;
  line-height: 1;
  transition: all 0.5s;
  z-index: 1;
  text-transform: capitalize;
  border: 1px solid #fff;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
.default-btn.light-btn {
  border-color: var(--primary);
  color: var(--primary);
}
.default-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.default-btn.active:hover {
  color: #fff;
}
.default-btn.active::after {
  width: 100%;
}
.default-btn.active::before {
  border-top: 20px solid rgba(0, 0, 0, 0);
  border-left: 20px solid #fff;
  border-bottom: 20px solid rgba(0, 0, 0, 0);
  left: -1px;
}
.default-btn.active:hover {
  background-color: rgba(0, 0, 0, 0);
  border-color: #fff;
}
.default-btn.active:hover::before {
  border-top: 20px solid rgba(0, 0, 0, 0);
  border-left: 20px solid #fff;
  border-bottom: 20px solid rgba(0, 0, 0, 0);
  left: -1px;
}
.default-btn.active:hover::after {
  width: 0;
}
.default-btn::before {
  content: "";
  position: absolute;
  border-right: 0;
  border-top: 20px solid rgba(0, 0, 0, 0);
  border-left: 20px solid #fff;
  border-bottom: 20px solid rgba(0, 0, 0, 0);
  top: 5px;
  left: -1px;
  transition: all 0.5s;
}
.default-btn.light-btn::before {
  border-left: 20px solid var(--primary);
}
.default-btn::after {
  position: absolute;
  content: "";
  background-color: var(--primary);
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: all 0.5s;
  z-index: -1;
}
.default-btn:hover {
  color: #fff;
  border-color: var(--primary);
}
.default-btn:hover::before {
  border-top: 20px solid rgba(0, 0, 0, 0);
  border-left: 20px solid #fff;
  border-bottom: 20px solid rgba(0, 0, 0, 0);
}
.default-btn:hover::after {
  width: 100%;
}

.banner-area.bg-3 {
  background-image: url(../img/banner.png) !important;
}

.banner-area.banner-area-three::before {
  background-image: linear-gradient(to right, #000000, transparent);
}

/* Banner Slider */
.banner-slider-area {
  position: relative;
  overflow: hidden;
  min-height: 87vh;
}

.banner-slider.owl-carousel {
  position: relative;
  min-height: 87vh;
}

.banner-slider .owl-stage-outer,
.banner-slider .owl-stage,
.banner-slider .owl-item {
  min-height: 87vh;
}

.banner-slider .owl-item > div {
  min-height: 87vh;
}

.banner-slide {
  min-height: 87vh;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.banner-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: bannerZoomWater 14s ease-in-out infinite;
}

.banner-slide-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner-slide-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes bannerZoomWater {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

.banner-slide .d-table {
  min-height: 87vh;
}

.banner-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.banner-slide .d-table-cell {
  position: relative;
  z-index: 2;
}

.banner-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  pointer-events: none;
}

.banner-slider .owl-nav button {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  color: #fff !important;
  transition: all 0.3s ease;
}

.banner-slider .owl-nav button:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

.banner-slider .owl-dots {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  text-align: center;
}

.banner-slider .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.banner-slider .owl-dots .owl-dot.active span,
.banner-slider .owl-dots .owl-dot:hover span {
  background: var(--primary);
}

.banner-content {
  overflow: visible;
  max-width: 100%;
  margin-right: auto;
  margin-top: auto;
}

.quote-price-content {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  margin-top: auto;
}

.page-title-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.3;
}

.page-title-area .page-title-content ul li,
.page-title-area .page-title-content ul li.active,
.page-title-area .page-title-content ul li a,
.page-title-area .page-title-content h2 {
  color: #fff;
}

select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='20' width='20' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 35px;
}

.services-area .single-services-box {
  height: 100%;
  margin-bottom: 0;
}

.choose-us-content .single-choose-us-box i {
  font-size: 30px;
}

.single-counter i {
  font-size: 30px;
}

.single-services-box i {
  font-size: 30px;
  background-color: rgba(219, 33, 76, 0.25);
  color: var(--primary) !important;
}

.chatbot_block {
  position: fixed;
  bottom: 20px;
  right: 25px;
  z-index: 999;
  width: 300px;
}

.chatbot_block .chatbot_button {
  width: 100%;
  background-color: #2575fc;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot_block .chatbot_content {
  width: 100%;
  display: none;
  margin-top: 8px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  max-height: 500px;
  overflow-y: auto;
}

.chatbot_block .chatbot_content .form-control,
.chatbot_block .chatbot_content #main_service {
  font-size: 0.85rem;
  padding: 5px 10px;
  height: 32px;
}

.chatbot_block .chatbot_content textarea.form-control {
  height: 60px;
  resize: none;
}

.chatbot_block .chatbot_content #main_service option {
  font-size: 0.85rem;
}

.chatbot_block .chatbot_content #other_service {
  display: none;
}

.single-testimonials-two {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-title-area .page-title-content ul li::before {
  background-color: #fff;
}

.partner-area .owl-carousel .owl-item img {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
  margin: 5px 0 !important;
}

.footer-area p,
.footer-area a,
.footer-area ul li {
  color: #fff !important;
}

.footer-area a:hover {
  color: var(--primary) !important;
}

/* ========== Footer modern design ========== */
.footer-modern {
  position: relative;
  background: linear-gradient(180deg, #0a0a12 0%, #000024 50%, #0a0a12 100%);
  background-color: #000024;
}

.footer-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 20%, var(--primary) 80%, transparent 100%);
  opacity: 0.9;
}

.footer-modern .footer-grid {
  position: relative;
  z-index: 1;
}

.footer-modern .single-footer-widget {
  margin-bottom: 40px;
}

.footer-modern .footer-brand .logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-modern .footer-brand p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-modern .footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff !important;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(219, 33, 76, 0.4);
  display: inline-block;
}

.footer-modern .import-link li {
  margin-bottom: 12px;
  padding-left: 0;
}

.footer-modern .import-link li::before {
  display: none;
}

.footer-modern .import-link li a {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.95rem;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-modern .import-link li a:hover {
  color: var(--primary) !important;
  padding-left: 6px;
}

.footer-modern .address li {
  margin-bottom: 14px;
  padding-left: 36px;
  font-size: 0.95rem;
}

.footer-modern .address li i {
  font-size: 1rem;
  left: 0;
  top: 2px;
}

.footer-modern .address li a,
.footer-modern .address .location span {
  color: rgba(255, 255, 255, 0.85) !important;
}

.footer-modern .address li a:hover {
  color: var(--primary) !important;
}

/* Social icons - modern pill style */
.social-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-modern li {
  margin-right: 0 !important;
}

.social-modern li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff !important;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.social-modern li a i {
  width: auto;
  height: auto;
  line-height: 1;
  font-size: 1.15rem;
  background: none !important;
}

.social-modern li a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff !important;
  transform: translateY(-3px);
}

/* Copyright bar - modern */
.copy-right-modern {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  padding-bottom: 20px;
}

.copy-right-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.copy-right-modern p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75) !important;
}

.copy-right-credit {
  font-size: 0.875rem !important;
}

.copy-right-modern p a {
  color: var(--primary) !important;
  font-weight: 500;
  transition: opacity 0.25s ease;
}

.copy-right-modern p a:hover {
  color: var(--primary) !important;
  opacity: 0.9;
}

@media (max-width: 767px) {
  .copy-right-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-modern .footer-brand p {
    max-width: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mobile-nav .logo a img {
    width: 110px;
  }

  .default-btn {
    font-size: 14px;
    padding: 12px 20px;
  }

  .default-btn::before {
    border-top: 15px solid rgba(0, 0, 0, 0);
    border-left: 15px solid #fff;
    border-bottom: 15px solid rgba(0, 0, 0, 0);
  }

  .default-btn.active::before {
    border-top: 15px solid rgba(0, 0, 0, 0);
    border-left: 15px solid #fff;
    border-bottom: 15px solid rgba(0, 0, 0, 0);
  }

  .banner-area.banner-area-three::before {
    background: rgb(0, 0, 0, 0.6);
  }

  .partner-area .owl-carousel .owl-item img {
    margin: auto !important;
    width: 200px !important;
  }

  .chatbot_block {
    left: 5px;
    right: 5px;
    margin: 0 auto;
    bottom: 5px;
  }

  .copy-right-area {
    padding-bottom: 60px;
  }

  .page-title-area {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mobile-nav .logo a img {
    width: 110px;
  }

  .default-btn {
    font-size: 14px;
    padding: 12px 20px;
  }

  .default-btn::before {
    border-top: 15px solid rgba(0, 0, 0, 0);
    border-left: 15px solid #fff;
    border-bottom: 15px solid rgba(0, 0, 0, 0);
  }

  .default-btn.active::before {
    border-top: 15px solid rgba(0, 0, 0, 0);
    border-left: 15px solid #fff;
    border-bottom: 15px solid rgba(0, 0, 0, 0);
  }

  .banner-area.banner-area-three::before {
    background: rgb(0, 0, 0, 0.6);
  }

  .partner-area .owl-carousel .owl-item img {
    margin: auto !important;
    width: 200px !important;
  }

  .chatbot_block {
    left: 5px;
    right: 5px;
    margin: 0 auto;
    bottom: 5px;
  }

  .copy-right-area {
    padding-bottom: 60px;
  }

  .page-title-area {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .mobile-nav .logo a img {
    width: 110px;
  }

  .default-btn {
    font-size: 14px;
    padding: 12px 20px;
  }

  .default-btn::before {
    border-top: 15px solid rgba(0, 0, 0, 0);
    border-left: 15px solid #fff;
    border-bottom: 15px solid rgba(0, 0, 0, 0);
  }

  .default-btn.active::before {
    border-top: 15px solid rgba(0, 0, 0, 0);
    border-left: 15px solid #fff;
    border-bottom: 15px solid rgba(0, 0, 0, 0);
  }

  .partner-area .owl-carousel .owl-item img {
    margin: auto !important;
    width: 200px !important;
  }

  .chatbot_block {
    left: 5px;
    right: 5px;
    margin: 0 auto;
    bottom: 5px;
  }

  .copy-right-area {
    padding-bottom: 60px;
  }

  .page-title-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* Process steps - timeline / step cards */
.process-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 0;
  list-style: none;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step:last-child::before {
  display: none;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: -1.75rem;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--primary),
    rgba(219, 33, 76, 0.3)
  );
  z-index: 0;
}

.process-step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(219, 33, 76, 0.35);
}

.process-step-body {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
  text-align: left;
}

.process-step-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.process-step-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #000024;
}

.process-step-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #555;
}
