@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.animate-slides {
  display: inline-block;
  animation: 35s slides infinite linear;
}

  /* service page css */
  .page-header {
    position: relative;
    background: url("https://fastwpdemo.com/demo/consultive/wp-content/uploads/2022/04/breadcrumb-bg.jpg")
      no-repeat center center/cover;
    padding: 100px 0;
    color: #fff;
    margin-top: 80px;
  }

/* Overlay */
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(225 20 27 / 41%);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}

.service-page-box {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.service-page-box img {
  width: 100%;
  height: auto;
}

.service-content {
  padding: 20px;
  border-top: 3px solid #e1141b;
}

.service-content h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.service-page-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.contact-section {
  background: #f8f9fa;
}

.info-box {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.info-box .icon {
  background: rgb(225 20 27 / 41%);
  flex-shrink: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.form-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.form-control,
.form-select {
  border-radius: 10px;
  padding: 12px;
  font-size: 15px;
  box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
  border-color: #e1141b !important;
}

.services-sidebar {
  background: #f5f8f6;
  padding: 2rem;
  border-radius: 10px;
}

.services-sidebar h4 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 500;
  color: #0d2b2a;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link:hover {
  background: #e5f0ea;
}

.service-link.active {
  background: #e1141b;
  color: #fff;
}

.service-details p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-details h6 {
  font-weight: 600;
  color: #444;
  margin-top: 1rem;
}

.service-details h6 span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #666;
  margin-right: 6px;
}
.about-badge {
  background: #e1141b21;
  color: #e1141b;
  font-size: 20px;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 15px;
  font-weight:500
}

.highlight-box {
  background: #f9f6f0;
  border-left: 3px solid #e1141b;
  padding: 15px;
  font-size: 14px;
  margin-top: 20px;
}

.btn-orange {
  background: #e1141b;
  color: white;
  font-weight: 600;
  border-radius: 4px;
  padding: 10px 20px;
  display: inline-block;
  text-decoration: none;
}

.btn-orange:hover {
  background: #e1141b;
  color: white;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
}

.image-wrapper {
  position: relative;
  height: 450px;
}

.image-wrapper img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.practice-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.practice-card:hover {
  transform: translateY(-5px);
}

.practice-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* Bottom Overlay (default visible) */
.practice-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  /* width: 100%; */
  background: #e1141b;
  color: #fff;
  padding: 20px;
  border-top-right-radius: 50px;
  transition: all 0.3s ease;
}

.practice-overlay h5 {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
}

/* Hover Overlay (hidden initially) */
.practice-hover {
  position: absolute;
  inset: 0;
  background: #e1141b7d;
  color: #fff;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  text-align: left;
}

.practice-hover h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.practice-hover p {
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.practice-hover a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.practice-hover a:hover {
  text-decoration: underline;
}

/* Show hover content */
.practice-card:hover .practice-hover {
  opacity: 1;
  visibility: visible;
}

.practice-card:hover .practice-overlay {
  opacity: 0;
  visibility: hidden;
}

.fight-rights-section {
  background-color: #e1141b21;
}

.business-section {
  /* background: linear-gradient(180deg, #0c2b5b, #073370); */
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}

.biz-card {
  background: linear-gradient(to bottom, #1B78CB, #022B50); /* tw-bg-gradient-to-b tw-from-[#1B78CB] tw-to-[#022B50] */
  position: relative;            /* tw-relative */
  border-radius: 0.5rem;         /* tw-rounded-lg */
  padding: 2px;                  /* tw-p-[2px] */
  overflow: hidden;              /* tw-overflow-hidden */
  cursor: pointer;               /* tw-cursor-pointer */
  transition: transform 0.4s ease-in-out; /* tw-transition-transform tw-duration-400 tw-animate-ease-in-out */
  transform: translateY(0) rotate(6deg); 
}

.biz-card:hover {
  transform: translateY(-1rem) rotate(-6deg); /* hover:tw-transform hover:-tw-translate-y-4 */
  transition-duration: 0.3s; /* hover:tw-duration-300 */
}

.tilt-left {
  transform: rotate(-3deg);
}
.tilt-right {
  transform: rotate(3deg);
}


.mission-vision .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.mission-vision .section-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.mission-vision .custom-list {
  list-style: none;
  padding-left: 0;
}

.mission-vision .custom-list li {
  position: relative;
  margin-bottom: 10px;
  color: #444;
}

.mission-vision .image-box img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}


.why-box .main-title {
  font-weight: 700;
  color:#333;
}

.why-box .subtitle {
  color:#666;
  margin-top: 0.5rem;
}

/* Box styling */
.why-box .info-box {
  position: relative;
  background: #fff;
  padding: 35px 20px;
  border-radius: 10px;
  box-shadow: 0 0px 10px rgb(225 20 27 / 17%);
  overflow: hidden;
  transition: transform .3s ease;
}
.why-box .info-box:hover {
  transform: translateY(-10px);
}

/* Before animation bar */
.why-box .info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e1141b, #f3bf46);
  transition: all 0.8s ease;
}
.why-box .info-box:hover::before {
  left: 0;               /* slide-in effect */
}

.why-box .box-title {
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #e1141b;
}

.why-box .info-box p {
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.blog-detail .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.blog-detail .hero-meta {
  font-size: 0.95rem;
  color: #eee;
}
.blog-detail .hero-meta span {
  color:#e1141b;
  font-weight: 600;
}

/* Blog Content */
.blog-detail .blog-content p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.blog-detail .blog-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #222;
}
.blog-detail .blog-content ul {
  padding-left: 20px;
}
.blog-detail .blog-content li {
  margin-bottom: 0.5rem;
}
.blog-detail .quote-box {
  border-left: 4px solid #e1141b;
  padding: 1rem 1.2rem;
  background: #f8f9fa;
  font-style: italic;
  margin: 2rem 0;
}

/* Sidebar */
.blog-detail .sidebar .widget-title {
  font-weight: 700;
  border-left: 4px solid #e1141b;
  padding-left: 10px;
  margin-bottom: 1rem;
}
.blog-detail .sidebar a {
  color: #333;
  text-decoration: none;
}
.blog-detail .sidebar a:hover {
  color: #e1141b;
}
.blog-detail .blog-detail-img {
 height: 400px;
  object-fit: cover;
  border-radius: 8px;
}
