/********** Template CSS **********/
:root {
  --primary: #4a56a0;
  --secondary: #e3087f;
  --light: #f6f4f9;
  --dark: #04000b;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 500 !important;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  font-weight: bold;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--light) !important;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
  color: #ffffff;
}

.navbar-light .navbar-brand img {
  max-height: 130px;
  transition: 0.5s;
}

/* .sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
} */

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: #ffffff;
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--dark) !important;
  }

  .navbar-light .navbar-brand h1 {
    color: var(--primary);
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: #ffffff;
  }

  .sticky-top.navbar-light .navbar-brand h1 {
    color: var(--primary);
  }

  .navbar-light .navbar-nav .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }

  .navbar-light .btn {
    color: var(--dark);
    background: #ffffff;
  }

  .sticky-top.navbar-light .btn {
    color: var(--dark);
    background: var(--secondary);
  }
}

/*** Hero Header ***/
.hero-header {
  margin-bottom: 1rem;
  padding: 10rem 0;

  background-position:
    left 0px top 0px,
    right 0px top 0px,
    left 0px bottom 0px,
    right 0px bottom 0px,
    center center,
    center bottom;
  background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
  .hero-header {
    padding: 6rem 0 9rem 0;
  }
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 500;
  text-transform: uppercase;
}

.section-title span:first-child,
.section-title span:last-child {
  position: relative;
  display: inline-block;
  margin-right: 30px;
  width: 30px;
  height: 2px;
}

.section-title span:last-child {
  margin-right: 0;
  margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  top: 0;
  right: -20px;
}

.section-title span:last-child::after {
  right: auto;
  left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
  background: var(--primary);
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
  background: var(--secondary);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
  background: #ffffff;
}

/*** Feature ***/
.feature-item {
  transition: 0.5s;
}

.feature-item:hover {
  margin-top: -15px;
}

/*** About ***/
.progress {
  height: 5px;
}

.progress .progress-bar {
  width: 0px;
  transition: 3s;
}

/*** Fact ***/
.fact {
  margin: 6rem 0;
  background:
    url(../img/blob-top-left.png), url(../img/blob-top-right.png),
    url(../img/blob-bottom-left.png), url(../img/blob-bottom-right.png),
    url(../img/blob-center.png);
  background-position:
    left 0px top 0px,
    right 0px top 0px,
    left 0px bottom 0px,
    right 0px bottom 0px,
    center center;
  background-repeat: no-repeat;
}

/*** Service ***/
.service-item {
  position: relative;
  padding: 45px 30px;
  background: var(--light);
  overflow: hidden;
  transition: 0.5s;
}

.service-item:hover {
  margin-top: -15px;
  padding-bottom: 60px;
  background: var(--primary);
}

.service-item .service-icon {
  margin: 0 auto 20px auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  background: url(../img/blob-primary.png) center center no-repeat;
  background-size: contain;
  transition: 0.5s;
}

.service-item:hover .service-icon {
  color: var(--dark);
  background: url(../img/blob-secondary.png) center center no-repeat;
  background-size: contain;
}

.service-item h5,
.service-item p {
  transition: 0.5s;
}

.service-item:hover h5,
.service-item:hover p {
  color: #ffffff;
}

.service-item a.btn {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary);
  background: #ffffff;
  border-radius: 40px 40px 0 0;
  transition: 0.5s;
  z-index: 1;
}

.service-item a.btn:hover {
  color: var(--dark);
  background: var(--secondary);
}

.service-item:hover a.btn {
  bottom: 0;
}

/*** Project Portfolio ***/
#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: 0.5s;
  border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: var(--primary);
  border-color: var(--primary);
}

.portfolio-item img {
  transition: 0.5s;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(74, 86, 160, 0.5);
  transition: 0.5s;
  opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

/*** Newsletter ***/
.newsletter {
  margin: 6rem 0;
  background:
    url(../img/blob-top-left.png), url(../img/blob-top-right.png),
    url(../img/blob-bottom-left.png), url(../img/blob-bottom-right.png),
    url(../img/blob-center.png);
  background-position:
    left 0px top 0px,
    right 0px top 0px,
    left 0px bottom 0px,
    right 0px bottom 0px,
    center center;
  background-repeat: no-repeat;
}

/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
  padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--light);
  border-radius: 60px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/*** Team ***/
.team-item .btn {
  color: var(--primary);
  background: #ffffff;
}

.team-item .btn:hover {
  color: #ffffff;
  background: var(--primary);
}

/*** Footer ***/
.footer {
  margin-top: 1rem;
  padding-top: 1rem;

  background-position:
    center top,
    center center;
  background-repeat: no-repeat;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid rgba(256, 256, 256, 0.1);
  border-radius: 40px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;

  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
  color: var(--secondary);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 14px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
  color: var(--secondary);
}

/* why choose us section css start   */
.fact-section {
  position: relative;
  background: linear-gradient(120deg, #4a56a0 34%, #e3087f 100%);
  overflow: hidden;
}

.fact-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -200px;
  right: -150px;
}

.fact-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  bottom: -180px;
  left: -150px;
}

.fact-item {
  position: relative;
  padding: 40px 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgb(255 255 255 / 22%);
}

.fact-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.fact-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.fact-icon i {
  font-size: 34px;
  color: #0c4091;
}

.fact-item:hover .fact-icon {
  transform: rotateY(180deg);
}

.fact-item h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.fact-item p {
  font-size: 17px;
  letter-spacing: 0.5px;
}

.section-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title span {
  width: 45px;
  height: 2px;
  background: #fff;
  display: inline-block;
}

/* why choose us section css end  */

/* Testimonial start  */

.testimonial-carousel .testimonial-item {
  padding: 15px;
}

.testimonial-content {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  height: 100%;
  overflow: hidden;
}

.testimonial-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(12, 64, 145, 0.18);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 60px;
  color: rgba(12, 64, 145, 0.08);
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 18px;
}

.testimonial-user img {
  width: 70px;
  height: 200px;
  border-radius: 50%;
  object-fit: fill;
  border: 4px solid #0c4091;
}

.testimonial-user h5 {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
  color: #0c4091;
}

.testimonial-user span {
  font-size: 14px;
  color: #777;
}

.owl-dots {
  margin-top: 30px;
  text-align: center;
}

.owl-dot {
  width: 14px;
  height: 14px;
  margin: 0 5px;
  border-radius: 50%;
  background: #c7d3ea !important;
  transition: 0.3s;
}

.owl-dot.active {
  width: 35px;
  border-radius: 30px;
  background: #0c4091 !important;
}

/* About start   */
.mission-vision-section {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.section-subtitle {
  color: #0d6efd;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title-main {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.section-desc {
  max-width: 700px;
  margin: auto;
  color: #64748b;
  font-size: 17px;
  line-height: 1.8;
}

/* Cards */
.mv-card {
  position: relative;
  background: #ffffff;
  padding: 30px 30px;
  border-radius: 25px;
  height: 100%;
  overflow: hidden;
  transition: all 0.45s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

/* Gradient Hover Border */
.mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 2px;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s ease; 
}

.mv-card:hover::before {
  opacity: 1;
}

.mv-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(13, 110, 253, 0.15);
}

/* Icon */
.mv-icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: 0.4s ease;
}

.mv-icon i {
  color: #fff;
  font-size: 34px;
}

.mv-card:hover .mv-icon {
  transform: rotateY(180deg) scale(1.05);
}

/* Text */
.mv-card h3 {
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.mv-card p {
  color: #64748b;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 0;
}

/* Different Glow */
.mission-card:hover {
  box-shadow: 0 25px 50px rgba(13, 110, 253, 0.18);
}

.vision-card:hover {
  box-shadow: 0 25px 50px rgba(102, 16, 242, 0.18);
}

/* Responsive */
@media (max-width: 991px) {
  .section-title-main {
    font-size: 34px;
  }

  .mv-card {
    padding: 40px 30px;
  }
}

@media (max-width: 576px) {
  .section-title-main {
    font-size: 28px;
  }

  .mv-card {
    padding: 35px 25px;
    border-radius: 20px;
  }

  .mv-card h3 {
    font-size: 24px;
  }
}

/* About end   */

/* About swipper Start */
.products-section {
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  overflow: hidden;
}

.products-subtitle {
  color: #0d6efd;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.products-title {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.products-desc {
  max-width: 750px;
  margin: auto;
  color: #64748b;
  line-height: 1.8;
  font-size: 17px;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.45s ease;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  height: 100%;
  position: relative;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(13, 110, 253, 0.15);
}

/* Image */
.product-img {
  overflow: hidden;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.6s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

/* Content */
.product-content {
  padding: 30px;
}

.product-content h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0f172a;
}

.product-content p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #cbd5e1;
  opacity: 1;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 20px;
  background: #0d6efd;
}

/* Responsive */
@media (max-width: 991px) {
  .products-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .products-title {
    font-size: 28px;
  }

  .product-content {
    padding: 25px;
  }

  .product-content h4 {
    font-size: 22px;
  }

  .product-img img {
    height: 240px;
  }
}

/* why choose section  */
.why-choose-section {
  background:
    linear-gradient(rgb(227, 8, 127, 0.82), rgba(51, 46, 121, 1.92)),
    url("img/bg-pattern.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* Heading */
.why-subtitle {
  color: #60a5fa;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.why-title {
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.why-desc {
  max-width: 760px;
  margin: auto;
  color: #cbd5e1;
  line-height: 1.9;
  font-size: 17px;
}

/* Card */
.why-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 40px 30px;
  overflow: hidden;
  transition: all 0.45s ease;
  height: 100%;
}

/* Hover Glow */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.25),
    rgba(102, 16, 242, 0.15)
  );
  opacity: 0;
  transition: 0.4s ease;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-14px);
  border-color: rgba(13, 110, 253, 0.35);
  box-shadow: 0 20px 45px rgba(13, 110, 253, 0.18);
}

/* Icon */
.why-icon {
  width: 90px;
  height: 90px;
  border-radius: 25px;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  transition: 0.45s ease;
}

.why-icon i {
  color: #fff;
  font-size: 34px;
}

.why-card:hover .why-icon {
  transform: rotate(-8deg) scale(1.08);
}

/* Text */
.why-card h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.why-card p {
  color: #cbd5e1;
  line-height: 1.9;
  font-size: 15px;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

/* Swiper Pagination */
.swiper-pagination {
  position: relative;
  margin-top: 45px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: 0.3s ease;
}

.swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 30px;
  background: #0d6efd;
}

/* Responsive */
@media (max-width: 991px) {
  .why-title {
    font-size: 36px;
  }

  .why-card {
    padding: 35px 25px;
  }
}

@media (max-width: 576px) {
  .why-title {
    font-size: 28px;
  }

  .why-card {
    border-radius: 22px;
  }

  .why-icon {
    width: 75px;
    height: 75px;
  }

  .why-icon i {
    font-size: 28px;
  }

  .why-card h4 {
    font-size: 22px;
  }
}

/* Testimonial  */
.stats-section {
  background:
    linear-gradient(rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.92)),
    url("img/pattern-bg.jpg");

  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* Heading */
.stats-subtitle {
  color: #60a5fa;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.stats-title {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.stats-desc {
  max-width: 760px;
  margin: auto;
  color: #cbd5e1;
  line-height: 1.9;
  font-size: 17px;
}

/* Cards */
.stats-card {
  position: relative;
  background: rgba(227, 8, 127, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 45px 30px;
  text-align: center;
  overflow: hidden;
  transition: all 0.45s ease;
  border: 2px solid rgba(74, 86, 160, 0.8);
  height: 100%;
}

/* Glow Effect */
.stats-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.18),
    rgba(102, 16, 242, 0.12)
  );
  opacity: 0;
  transition: 0.4s ease;
}

.stats-card:hover::before {
  opacity: 1;
}

.stats-card:hover {
  transform: translateY(-12px);
  border-color: rgba(13, 110, 253, 0.4);
  box-shadow: 0 20px 45px rgba(13, 110, 253, 0.18);
}

/* Icon */
.stats-icon {
  width: 95px;
  height: 95px;
  border-radius: 25px;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 25px;
  transition: 0.45s ease;
  position: relative;
  z-index: 1;
}

.stats-icon i {
  color: #fff;
  font-size: 36px;
}

.stats-card:hover .stats-icon {
  transform: rotate(-8deg) scale(1.08);
}

/* Counter */
.counter-number {
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.stats-card p {
  color: #cbd5e1;
  font-size: 17px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .stats-title {
    font-size: 34px;
  }

  .stats-card {
    padding: 40px 25px;
  }
}

@media (max-width: 576px) {
  .stats-title {
    font-size: 28px;
  }

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

  .stats-icon {
    width: 80px;
    height: 80px;
  }

  .stats-icon i {
    font-size: 30px;
  }
}

/* side bar css start  */
/* ==============================
   Service Sidebar CSS
================================= */

.service-sidebar {
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid #e9e9e9;
  transition: 0.3s ease;
}

.service-sidebar h4 {
  font-size: 28px;
  font-weight: 700;
  color: #0b1320;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 25px;
}

.service-sidebar h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  background: #e3087f;
  border-radius: 20px;
}

/* Sidebar Links */

.service-sidebar .list-group-item {
  border: none;
  margin-bottom: 12px;
  padding: 16px 20px;
  border-radius: 12px !important;
  font-size: 16px;
  font-weight: 600;
  color: #0b1320;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.service-sidebar .list-group-item i {
  transition: 0.3s ease;
  font-size: 14px;
}

/* Hover Effect */

.service-sidebar .list-group-item:hover {
  background: #e3087f;
  color: #ffffff;
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.15);
}

.service-sidebar .list-group-item:hover i {
  transform: rotate(-45deg);
  color: #ffffff;
}

/* Active Service Link */

.service-sidebar .list-group-item.active {
  background: #e3087f;
  color: #ffffff;
  border-color: #e3087f;
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.15);
}

.service-sidebar .list-group-item.active i {
  color: #ffffff;
}

/* Responsive */

@media (max-width: 991px) {
  .service-sidebar {
    margin-top: 40px;
  }
}
/* side bar css end   */

