/********** Template CSS **********/
:root {
  --primary: #9b0f0f;
  --light: #f3f6f8;
  --dark: #0e2e50;
}

body {
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h4,
h4,
h5,
h6 {
  font-family: "Lato", sans-serif;
}

* {
  padding: 0;
  margin: 0;
}

/*** Spinner ***/

.bg-primary {
  background: linear-gradient(#9b0f0f 0%, #e01d1d 50%, #9b0f0f 100%);
}

#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;
}

.top-header {
  padding: 10px 35px;
  /* background: linear-gradient(#0e2e50 0%, #104f93 100%); */
  background-color: #104f93;

}

.top-header-main {
  display: flex;
  justify-content: space-between;
}

.top-header-left-con {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.top-header-right-con {
  display: flex;
  gap: 10px;
  align-items: center;
  color: white;
}

.top-header-right-con p,
.top-header-left-con p {
  margin-bottom: 0;
}

.top-header-left-con i,
.top-header-right-con {
  cursor: pointer;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Button ***/
.theme-btn {
  margin-left: 10px;
  font-size: 16px;
  color: black;
  padding: 10px 10px;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  border: none;
  background: white;
  align-items: center;
}

.theme-btn i {
  color: white !important;
}

.theme-btn:hover {
  color: white;
}

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn::before {
  content: "";
  height: 300px;
  width: 380px;
  background: linear-gradient(#0e2e50 0%, #104f93 100%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  border: none;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn:hover i {
  transform: rotate(0deg);
}

.theme-btn i {
  margin-left: 8px;
  transform: rotate(-40deg);
  transition: all 0.3s ease-in-out;
}

.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn-shadow {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 18px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.btn-color {
  color: black;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.btn-green {
  background-color: #c4001a;
  color: white;
}

.btn.btn-primary:hover {
  background: linear-gradient(135deg, #ff1a1a, #cc0000);
  transform: translateY(-5px);
  color: white;
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px,
    rgba(6, 24, 44, 0.65) 0px 4px 6px -1px,
    rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.btn-primary {
  background: linear-gradient(#9b0f0f 0%, #e01d1d 50%, #9b0f0f 100%) !important;
  color: white !important;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 40px;
  height: 40px;
  background: linear-gradient(#0e2e50 0%, #104f93 100%);
}

.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 {
  position: static;
}

.navbar .navbar-nav .nav-link {
  position: relative;
  margin-left: 20px;
  padding: 24px 0;
  color: #0e2e50;
  font-weight: 500;
  outline: none;
  transition: 0.5s;
  font-size: 15px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #0e2e50;
}

.sticky-top.navbar .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark);
}

.sticky-top.navbar .navbar-nav .nav-link:hover,
.sticky-top.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .navbar-brand h1 {
  color: #0e2e50;
}

.navbar .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.header {
  color: #0e2e50;
}

.sticky-top.navbar .navbar-brand img {
  max-height: 45px;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar {
    position: relative;
    background: #ffffff;
  }

  .navbar .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar .navbar-nav .nav-link,
  .sticky-top.navbar .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--dark);
  }

  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
  }

  .navbar .navbar-brand h1 {
    color: var(--primary);
  }

  .navbar .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar {
    position: static;
    width: 100%;
    top: 0%;
    left: 0;
    border-bottom: 1px solid rgba(104, 104, 104, 0.5);
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
      rgba(0, 0, 0, 0.22) 0px 10px 10px;
    background-color: white;
    color: #0e2e50;
  }

  .sticky-top.navbar {
    position: fixed;
    background: #ffffff;
  }

  .navbar .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    bottom: 10px;
    left: 0;
    background: #0e2e50;
    opacity: 0;
    transition: 0.5s;
  }

  .sticky-top.navbar .navbar-nav .nav-link::before {
    background: var(--primary);
  }

  .navbar .navbar-nav .nav-link:hover::before,
  .navbar .navbar-nav .nav-link.active::before {
    bottom: -1px;
    left: 0;
    opacity: 1;
  }

  .navbar .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar .navbar-brand h1 {
    color: var(--primary);
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Hero Header ***/
/* .hero-header {
  width: 100%;
  height: 85vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  position: absolute;
  z-index: 99;
}

swiper-container {
  width: 100%;
  height: 100%;
}

.swiper1 {
  width: 100%;
  height: 100%;
  background-image: url("../img/home-page-banner-2.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

}

.swiper2 {
  width: 100%;
  height: 100%;
  background-image: url("../img/home-page-banner-1.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.swiper3 {
  width: 100%;
  height: 100%;
  background-image: url("../img/home-page-banner-4.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.swiper4 {
  width: 100%;
  height: 100%;
  background-image: url("../img/home-page-banner-3.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.swiper1::after,
.swiper2::after,
.swiper3::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
} */

/* Page header closed */
.hero-header {
  width: 100%;
  height: 85vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  z-index: 10;
  color: white;
  text-align: center;
  padding: 0 20px;
}

@media (max-width: 991.98px) {
  .hero-header {
    height: 100vh;
  }

  .hero-content {
    padding: 0px 5px;
  }

  .hero-h1 {
    font-size: 30px;
    text-align: center;
  }

  .hero-p {
    font-size: 16px;
  }
}


.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(256, 256, 256, 0.5);
}

.page-header {
  height: 55vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
  border: 1px solid transparent;
  transition: 0.5s;
}

.service-item:hover {
  box-shadow: none;
  border-color: var(--primary);
}

.service-item .service-icon,
.service-item .service-btn {
  margin: -1px 0 0 -1px;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 5px 0;
  transition: 0.5s;
}

.service-item .service-btn {
  margin: -1px -1px 0 0;
  border-radius: 0 5px;
  opacity: 0;
}

.service-item:hover .service-btn {
  opacity: 1;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
  transform: scale(0.85);
  transition: 0.5s;
  border-radius: 5px;
}

/* 
.testimonial-carousel .owl-item.center .testimonial-item {
  box-shadow: none;
  border-color: var(--primary);
  transform: scale(1);
} */

.testimonial-carousel .owl-item .testimonial-item img {
  width: 50px;
  height: 50px;
}

.testimonial-carousel .owl-nav {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  display: none;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #ffffff;
  background: var(--primary);
}

/*** Footer ***/
.footer .btn-social-instagram,
.footer .btn-social-facebook,
.footer .btn-social-linkedin,
.footer .btn-social-youtube,
.footer .btn-social-x {
  margin-right: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  transition: 0.4s;
}

.footer .btn-social-instagram:hover,
.footer .btn-social-facebook:hover,
.footer .btn-social-linkedin:hover,
.footer .btn-social-youtube:hover,
.footer .btn-social-x:hover {
  background: var(--light);
  color: black !important;
  transform: translateY(-4px);
}

.footer .btn-social-instagram {
  background: linear-gradient(45deg,
      #f09433,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888);
}

.footer .btn-social-facebook {
  background: #1778f2;
}

.footer .btn-social-linkedin {
  background: #0077b5;
}

.footer .btn-social-youtube {
  background: #c4302b;
}

.footer .btn-social-x {
  background: #00acee;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  transition: 0.3s;
  text-decoration: none !important;
}

.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;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 14px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.copy-text {
  justify-content: end;
}

.footer-menu {
  justify-content: end;
}

.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 h2 {
  font-size: 22px;
}

.navbar-nav .dropdown-header {
  font-size: 18px;
  color: #0e2e50;
  padding: 8px 0px 5px !important;
}

.bg-dark--footer {
  background-color: #1a1f36;
}

/* Css Srart Here */

.rounded-pill-small-head p {
  border: 1px solid #dee2e6;
  font-weight: 700;
  padding: 5px 30px;
  border-radius: 50px;
  background: linear-gradient(#0e2e50 0%, #104f93 100%);
  color: white;
  width: fit-content;
  margin-bottom: 20px !important;
  font-size: 13px;
}

.bold-text {
  font-weight: 700;
  font-size: 18px;
}

.about-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.section-padding {
  padding: 110px 0px 110px;
}

.section-padding-bottom {
  padding-bottom: 110px;
}

.service-home-features-card {
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(20px);
  /* border: 1px solid rgb(0 137 97 / 24%); */
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  margin-top: 30px;
  background-color: white;
}

.service-home-features-card:hover {
  transform: translateY(-10px);
  border: 1px solid #c4001a;
}

/* 
.service-home-features-card .icon-div {
    background-color: #9b0f0f;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 29px;
    position: relative;
    overflow: hidden;
} */
.service-home-features-card .icon-div {
  height: 100%;
}

.service-home-features-card .icon-div img {
  width: 100%;
  height: 100%;
  border-radius: 13px;
  object-fit: cover;
  overflow: hidden;
}

.service-home-features-card .head {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #0e2e50, #0e2e50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
  line-height: 25px;
}

.service-home-features {
  list-style: none;
  margin: 1rem 0;
  padding-left: 0;
}

.service-home-features li {
  margin: 0.7rem 0;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  text-align: left;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.service-home-features li:hover {
  transform: translatex(10px);
}

.service-home-features li a {
  color: #0e2e50;
}

.service-home-features li a:hover {
  color: var(--primary);
}

/* .service-home-features li::before {
    content: "👉";
    color: #9b0f0f;
    font-size: 22px;
    line-height: 13px;
    padding-left: 5px;
} */

.whyChoose-features-wrap {
  border-radius: 10px;
  padding: 20px 25px 13px;
}

.whyChoose-features-images {
  margin: auto;
  display: block;
  padding-bottom: 18px;
  width: 60px;
  height: auto;
}

.whyChoose-features-title {
  text-align: center;
  font-size: 19px !important;
  font-weight: 700;
  background: linear-gradient(90deg, black, black);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: white;
}

.whyChoose-features-wrap p {
  color: #212121;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
}

.why-choose-center img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.costomer-experience-card-div {
  margin-top: 100px;
}

a {
  color: #106eea;
  text-decoration: none;
}

a:hover {
  color: #1d69cc;
  text-decoration: none;
}

.about-small-head {
  font-size: 20px;
}

.common-heading {
  font-size: 30px;
  font-weight: 600;
}

.page-header h1 {
  font-size: 45px;
}

.header-logo-text {
  font-size: 40px;
}

.logo-image {
  width: 100%;
  height: auto;
}

/* ****************************************** Finish Style css ******************************************************* */

.dropdown-last {
  max-width: fit-content;
  right: -60px !important;
  left: auto !important;
}

.about-founder-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-founder-header h2 {
  text-align: start;
}

.about-founder-header p {
  text-align: justify;
}

.costomer-header {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 50px;
}

.costomer-box {
  text-align: center;
  padding: 65px 20px 50px;
  background: linear-gradient(#0e2e50 0%, #104f93 100%);
  border-radius: 20px;
  color: white;
  position: relative;
}

.costomer-box-icon {
  position: absolute;
  background: linear-gradient(#9b0f0f 0%, #e01d1d 50%, #9b0f0f 100%) !important;
  color: rgb(255, 255, 255);
  border-radius: 50%;
  padding: 20px;
  border: 5px white solid;
  top: -18%;
  left: 38%;
  align-items: center;
  text-align: center;
}

.costomer-box-icon i {
  font-size: 25px;
  align-items: center;
  text-align: center;
}

.costomer-box h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 10px;
}

.mission-img img {
  width: 100%;
  margin-top: 50px;
  height: auto;
}

.mission-con h2 {
  text-align: start;
  margin-top: 30px;
  margin-bottom: 10px;
}

.mission-con p {
  text-align: justify;
}

.mission-span p {
  text-align: end;
}

.we-do-header h1 {
  text-align: center;
}

.we-do-header p {
  text-align: center;
}

.we-do-icon-two {
  margin-left: 50px;
}

.we-do-icon i {
  color: white;
  padding: 10px;
  background: linear-gradient(#9b0f0f 0%, #e01d1d 50%, #9b0f0f 100%);
  font-size: 20px;
  margin-right: 10px;
  align-items: center;
  width: auto;
  border-radius: 50%;
  text-align: start;
}

.we-do-icon p {
  color: black;
  align-items: center;
}

.we-do-para {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.we-do-para p {
  margin-bottom: 0;
}

.vision-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.vision-con h2 {
  text-align: start;
  margin-top: 30px;
  margin-bottom: 10px;
}

.vision-con p {
  text-align: justify;
}

.vision-span p {
  text-align: start;
}

.mission-two {
  margin-top: 30px;
}

.mission-two-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.mission-two h2 {
  text-align: start;
}

.mission-two p {
  text-align: justify;
}

/* --------------side menu----------- */
/* .sticky{
    position: sticky;
    top: 100px;
} */

.side-menu-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #0e2e50;
  justify-content: center;
  padding: 25px 30px 30px;
  position: sticky;
  top: 100px;
  border-radius: 12px;
}

.side-menu-title .sidebar-head {
  font-size: 23px;
  margin-bottom: 10px;
  color: white;
  text-align: start;
  font-weight: 600;
  margin-bottom: 0px;
}

.side-menu-title .sidebar-tags:hover {
  width: 100%;
  color: white;
  background-color: #9b0f0f;
}

.side-menu-title .sidebar-tags {
  font-size: 15px;
  cursor: pointer;
  text-align: start;
  display: flex;
  justify-content: space-between;
  transition: all 500ms;
  padding: 13px 15px;
  background-color: white;
  width: 100%;
  border-radius: 10px;
  align-items: center;
  font-weight: 600;
}

.sidebar-tags.active {
  width: 100%;
  color: white;
  background-color: #9b0f0f;
}

.side-menu-title i {
  text-align: end;
}

.side-menu-detail p {
  font-size: 16px;
  color: black;
}

#result-text-1 h1,
#result-text-2 h1,
#result-text-3 h1,
#result-text-4 h1 {
  scroll-margin-top: 120px;
}

.service-page-heading {
  text-align: center;
  margin-bottom: 90px;
}

.side-menu-detail .heading {
  color: #9b0f0f;
  font-size: 25px;
  font-weight: 600;
}

.side-menu-detail .sub-heading {
  font-size: 22px;
  margin: 25px 0px 14px;
}

.sub-heading-documents {
  font-size: 22px;
  margin: 25px 0px 14px !important;
}

.sub-heading-procedure {
  font-size: 22px !important;
}

.why-choose-icon-div {
  margin: 25px 0px 13px;
  display: flex;
}

.documents-table thead {
  border: 1px solid black;
}

.documents-table table {
  min-width: 600px;
}

.documents-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.documents-table table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
  padding: 8px 40px 9px 20px;
}

.documents-table th {
  font-weight: 600;
  color: rgb(255, 255, 255);
  width: auto;
}

.documents-table table thead {
  background-color: #104F93;
}

table {
  /* width: 100%; */
  border-collapse: collapse;
}

th,
td {
  text-align: left;
}

.side-menu-detail ul li {
  color: black;
}

.side-menu-detail .small-head {
  font-weight: 600;
}

.service-tabs-back {
  background: linear-gradient(#9b0f0f 0%, #E01D1D 50%, #9b0f0f 100%) !important;
  ;
  border-radius: 50px;
  padding: 7px 10px;
  display: flex;
  justify-content: space-between;
}

.service-tabs-back p {
  margin-bottom: 0px;
  background-color: white;
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 600;
  color: black;
  cursor: pointer;
  text-align: center;
}

.service-tabs-back p:hover {
  background-color: #0e2e50;
  color: white;
}

.service-tabs-back p.active-tab {
  background: linear-gradient(#0E2E50 0%, #104F93 100%);
  ;
  color: white;
}

.active-tab {
  background-color: #0e2e50;
  color: white;
}

.service-content-main {
  scroll-margin-top: 30px;
}

.section-padding-service-main {
  padding: 60px 0px;
}

.service-content-main {
  margin-top: 60px;
}

.service-content-main a i {
  color: white !important;
}

.service-tab-main.fixed {
  position: fixed;
  top: 81px;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

.service-tab-wrapper {
  margin-top: 60px;
}

.fixed {
  position: fixed;
  top: 100px;
  /* z-index: 999; */
}

.dropdown-item {
  padding: 0.4rem 1rem;
}

.dropdown-item:hover {
  color: #9b0f0f;
}

.services-backlink a {
  background-color: black;
  padding: 5px 20px;
  border-radius: 50px;
  color: white !important;
  font-weight: 600;
  margin-top: 5px;
  font-size: 12px;
}

.services-backlink a:hover {
  background-color: #9b0f0f;
  color: white !important;
}

.services-backlink {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.service-tab-main.hide-tab {
  display: none;
}

.testimonial-item h3 {
  font-size: 16px;
  margin-bottom: 0px !important;
}

.sub-heading-documents.income-tax-document {
  font-size: 21px !important;
}

.sub-heading.income-tax-document {
  font-size: 21px !important;
}

.side-menu-detail ul li {
  font-size: 16px;
  padding-top: 6px;
}

.dropdown-menu.trademark-dropdown {
  left: -340px !important;
}


.footer a {
  color: white !important;
}

.footer .phone-tag {
  color: white !important;
  margin-left: 32px;
}

.footer .btn-social:hover i,
.footer .btn-social:hover svg {
  color: black !important;
  fill: black !important;
}

.footer .btn-social svg {
  color: white !important;
  fill: white !important;
}

.header-social {
  color: white !important;
  margin-right: 5px;
}

.header-social:hover i {
  transform: translateY(-2px);
}

.header-social i {
  transition: transform 0.3s ease;
}

.top-header-right-con .header-social svg {
  transition: transform 0.3s ease;
  color: white !important;
  fill: white !important;
}

.top-header-right-con .header-social:hover svg {
  transform: translateY(-2px);
}

#spinner {
  transition: opacity 0.3s ease;
}

#spinner:not(.show) {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.side-menu-detail i {
  color: green;
  font-size: 17px;
  margin-right: 8px;
}

.service-section-background .fa-check {
  color: white;
  margin-right: 8px;
  background-color: green;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  text-align: center;
  border-radius: 50px;
  font-size: 10px;
}

.side-menu-detail .fa-check {
  color: white;
  margin-right: 8px;
  background-color: green;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  text-align: center;
  border-radius: 50px;
  font-size: 10px;
}

.why-choose-icon-div h3 {
  font-size: 22px;
}

/* ---------------contacts Page----------------- */
.contacts-header {
  color: #9b0f0f;
  margin-bottom: 50px;
}

.contacts-subheader {
  color: #9b0f0f;
  font-size: 23px;
  margin-bottom: 20px;
}

.map-section {
  text-align: center;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px,
    rgb(209, 213, 219) 0px 0px 0px 1px inset;
}

.map-section h3 {
  padding: 15px 20px;
  font-size: 22px;
  background: linear-gradient(#0e2e50 0%, #104f93 100%);
  color: white;
}

.map-section iframe {
  width: 100%;
  height: 250px;
}

.our-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 35px;
  background-color: #9b0f0f;
  margin-bottom: 15px;
  color: white;
  border-radius: 15px;
  height: 100%;
}

.our-contacts-h3 {
  align-items: start;
}

.our-contacts-con-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.our-contacts-con {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ullist {
  margin-bottom: 0;
  padding-left: 0;
}

.ullist a {
  text-decoration: none;
  color: white;
}

.our-contacts-con p {
  margin-bottom: 0;
}

.quick-contacts {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  margin-left: 20px;
}

.quick-contacts-con {
  display: flex;
  align-items: start;
  flex-direction: column;
}

.quick-contacts-con-name {
  display: flex;
  gap: 20px;
  width: 100%;
}

.quick-contacts-con-name label {
  padding: 0 5px;
}

.quick-contacts-con-name input {
  border: none;
  width: 25vw;
  padding: 5px 10px;
  border-bottom: 1px solid rgb(107, 107, 107);
}

.quick-contacts-con-name input:focus {
  outline: none;
  border-bottom: #9b0f0f 1px solid;
}

.quick-contacts-con input:focus {
  outline: none;
  border-bottom: #9b0f0f 1px solid;
}

.quick-contacts-con input {
  border: none;
  width: 100%;
  padding: 5px 10px;
  border-bottom: 1px solid rgb(107, 107, 107);
}

.quick-contacts-con label {
  padding: 0 5px;
}

.quick-contacts-con textarea {
  width: 100%;
  padding: 5px;
  border: none;
  border-bottom: 1px solid rgb(107, 107, 107);
}

.quick-contacts-con textarea:focus {
  outline: none;
  border-bottom: #9b0f0f 1px solid;
}

#subbtn {
  background: linear-gradient(#9b0f0f 0%, #e01d1d 50%, #9b0f0f 100%) !important;
  color: white;
  padding: 8px 10px;
  border: none;
  border-radius: 5px;
}

.contact-us-nav {
  padding: 6px 20px;
  background: linear-gradient(#9b0f0f 0%, #e01d1d 50%, #9b0f0f 100%) !important;
  color: white;
  border-radius: 50px;
  /* border: 1px solid #0e2e50; */
  font-size: 14px;
}

.contact-us-nav:hover {
  color: white;
  background: linear-gradient(#9b0f0f 0%, #e01d1d 50%, #9b0f0f 100%);
  border: 1px solid #9b0f0f;
}

.client-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.about-section-right p {
  text-align: justify;
}

.section-background-colour {
  background-color: #f5f5f5;
}

.logo-bottom-text {
  color: #9b0f0f;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0px;
}

.service-section-background {
  background-color: #f5f5f5;
  padding: 80px 0px;
  margin: 60px 0px;
}

.owl-carousel .owl-stage {
  display: flex;
  animation: scroll-left 120s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.whatsapp-icon-div {
  position: fixed;
  right: 45px;
  bottom: 100px;
  z-index: 9999;
}


/* ****************************************** Finish Custom css ******************************************************* */

@media (max-width: 991px) {
  .about-left img {
    width: 100%;
    height: auto;
  }

  .service-home-features-card .icon-div img {
    width: 100%;
    height: auto;
  }

  .service-home-features-card .head {
    font-size: 35px;
    margin-top: 20px;
    line-height: normal;
  }

  .service-home-features li {
    font-size: 1.7rem;
  }

  .why-choose-center {
    display: none;
  }

  .costomer-experience-card-div {
    margin-top: 0px;
  }

  .costomer-box {
    margin-top: 65px;
  }

  .about-founder-img img {
    width: 100%;
    height: auto;
  }

  .we-do-header {
    margin-top: 0px;
  }

  .mission-two {
    margin-top: 0px;
  }

  .we-do-icon-two {
    margin-left: 0px;
  }

  .we-do-icon {
    margin-top: 30px;
  }

  .sticky-top.navbar {
    position: fixed;
    background: #ffffff;
    width: 100%;
  }

  .service-tab-main.fixed {
    position: fixed;
    top: 55px;
  }
}

@media (max-width: 767px) {
  .page-header h1 {
    font-size: 33px;
  }

  .hero-h1 {
    font-size: 33px;
  }

  .contact-us-nav {
    width: fit-content;
    margin-top: 10px;
  }

  .mission-two-img img {
    margin-top: 30px;
  }

  .quick-contacts {
    margin-left: 0px;
    margin: 50px 0px;
  }

  .contact-bottom-form {
    padding-bottom: 120px !important;
  }

  .quick-contacts-con-name .form-div {
    display: flex;
    flex-direction: column;
  }

  .quick-contacts-con-name input {
    width: 100%;
  }

  .section-padding {
    padding: 70px 0px 70px;
  }

  .section-padding-bottom {
    padding-bottom: 70px;
  }

  .service-home-features-card {
    margin-top: 30px;
  }

  .service-home-features-card .head {
    margin-top: 20px;
    font-size: 21px;
  }

  .service-home-features li a {
    font-size: 18px;
  }

  .service-home-features li {
    font-size: 1.3rem;
  }

  .costomer-box {
    margin-top: 60px;
  }

  .costomer-experience-card-div {
    margin-top: 0px;
  }

  .vision-img img {
    width: 100%;
    margin-top: 30px;
    height: auto;
  }

  .services-backlink a {
    text-align: center;
  }

  .dropdown-item {
    padding: 0.5rem 1rem;
  }

  .dropdown-menu {
    height: 350px;
    z-index: 2;
    position: relative;
    overflow-y: scroll;
  }
}

/* ****************************************** Finish responsive css ******************************************************* */