/********** Template CSS **********/
:root {
  --primary: #06a3da;
  --secondary: #f57e57;
  --light: #eef9ff;
  --dark: #091e3e;
}

h1,
h2,
.font-weight-bold {
  font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
  font-weight: 500 !important;
}

.btn {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn-primary,
.btn-secondary {
  color: #ffffff;
}

/* .btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
} */

.btn-primary:hover {
  background: #53bf7d;
  /* border-color: var(--secondary); */
  color: #fff;
}

.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

#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;
}

.top-shape::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 100%;
  top: 0;
  left: -17px;
  background: var(--primary);
  transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
  font-family: "Jost", sans-serif;
  padding: 35px 15px;
  font-size: 18px;
  color: var(--dark);
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 30, 62, 0.85);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }

  .navbar {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .logo_text {
    font-size: 1rem !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (min-width: 991.98px) {
  .banner {
    position: relative;
    margin-top: -90px;
    z-index: 1;
  }

  .carousel-caption {
    top: -10rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    top: -10rem;
  }
}

.section-title h5::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 3px;
  right: -55px;
  bottom: 11px;
  background: var(--primary);
}

.section-title h5::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 3px;
  right: -75px;
  bottom: 11px;
  background: var(--secondary);
}

.twentytwenty-wrapper {
  height: 100%;
}

.hero-header {
  background: linear-gradient(rgba(9, 30, 62, 0.85), rgba(9, 30, 62, 0.85)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.bg-appointment {
  background: linear-gradient(rgba(9, 30, 62, 0.85), rgba(9, 30, 62, 0.85)),
    url(../img/bg-pattern-1.jpg) center center no-repeat;
  background-size: cover;
}

.appointment-form {
  background: rgba(6, 163, 218, 0.7);
}

.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
  transition: 0.5s;
}

.service-item:hover img {
  transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
  position: absolute;
  content: "";
  top: 50%;
  bottom: 0;
  left: 15px;
  right: 15px;
  border-radius: 100px / 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: 0.5s;
  z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
  opacity: 1;
}

.bg-offer {
  background: url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.offer-text {
  background: rgba(6, 163, 218, 0.85);
}

.price-carousel .owl-nav {
  position: absolute;
  width: calc(100% + 45px);
  height: 45px;
  top: calc(50% - 22.5px);
  left: -22.5px;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
}

.price-carousel:hover .owl-nav {
  opacity: 1;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
  position: relative;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 2px;
  font-size: 22px;
  transition: 0.5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}

.bg-testimonial {
  background: url(../img/carousel-2.jpg) center center no-repeat;
  background-size: cover;
}

.testimonial-carousel {
  background: rgba(6, 163, 218, 0.85);
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: calc(100% + 46px);
  height: 46px;
  top: calc(50% - 23px);
  left: -23px;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 2px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}

.testimonial-carousel .owl-item img {
  width: 120px;
  height: 120px;
}

/* .card_shadow .inner {
  box-shadow: 0 50px 50px rgba(0, 0, 0, 0.07);
  border-top: 5px solid #f57e57;
  transition: border-top 1.5s ease;
  
}

.card_shadow .inner:hover {
    border-top: none;
}

.card_shadow::after {
  right: 0;
  bottom: 0;
  transition-duration: 0.4s;
}
.card_shadow .inner::after {
  right: 0;
  bottom: 0;
  transition-duration: 0.4s;
}
.card_shadow::before {
  left: 0;
  top: 0;
  transition-duration: 0.4s;
}
.card_shadow .inner::before {
  left: 0;
  top: 0;
  transition-duration: 0.4s;
} */

.founding-sec {
  position: relative;
}

.bg-pattern {
  position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}

.bg-pattern-founding {
  background-image: url("./../img/bg-pattern-2.jpg");
}

.founding-heading {
  position: relative;
}

.foundation_description {
  color: black;
  font-size: 1.25rem;
  font-weight: 500;
  position: relative;
}

.sec-icon {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0 auto;
}

.sec-icon::before {
  content: "";
  position: absolute;
  height: 1px;
  left: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: #333333;
  width: 50px;
}

.sec-icon::after {
  content: "";
  position: absolute;
  height: 1px;
  right: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: #333;
  width: 50px;
}
.about-sec {
  position: relative;
}

.bg-pattern-about {
  background-image: url("./../img/bg-pattern-5.jpg");
}

.about_container {
  padding: 4rem 0;
  position: relative;
}

.advertisers-service-sec {
  background-color: white;
  padding: 5rem 0;
}

.advertisers-service-sec span {
  color: #53bf7d;
}

.advertisers-service-sec .col {
  padding: 0 1em 1em 1em;
  text-align: center;
}

.advertisers-service-sec .service-card {
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #fff;
}

.advertisers-service-sec .service-card::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(#004cad, #53bf7d);
  position: absolute;
  left: 0%;
  top: -98%;
  z-index: -2;
  transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
}

.advertisers-service-sec h3 {
  font-size: 32px;
  text-transform: capitalize;
  font-weight: 700;
  color: #1f194c;
  margin: 1em 0;
  z-index: 3;
}

.advertisers-service-sec p {
  color: #575a7b;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  z-index: 3;
}

.advertisers-service-sec .icon-wrapper {
  background-color: #2c7bfe;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
  z-index: 3;
}

.advertisers-service-sec .service-card:hover:after {
  top: 0%;
}

.service-card .icon-wrapper {
  background-color: #ffffff;
  color: #53bf7d;
}

.advertisers-service-sec .service-card:hover .icon-wrapper {
  color: #004cad;
}

.advertisers-service-sec .service-card:hover h3 {
  color: #ffffff;
}

.advertisers-service-sec .service-card:hover p {
  color: #f0f0f0;
}

.gradient_heading_text {
  color: #53bf7d;
}

/* Services Card Section Start */

.card-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap; /* Ensures cards wrap on smaller screens */
}

.card {
  background-color: rgb(255, 255, 255);
  /* border: 1px solid #ddd; */ /* Removed border */
  border-radius: 6px;
  width: 300px; /* Set a fixed width for all cards */
  height: 150px; /* Set a fixed height for all cards */
  text-align: center;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); Added shadow */
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.9);

  -webkit-transition: scale 300ms ease;
  transition: all 300ms ease;
}

@media (max-width: 991.98px) {
  .card-container {
    gap: 2rem;
  }

  .why-choose-us-container {
    flex-direction: column;
  }
}

@media (min-width: 1400px) {
  .seven-card-info p::after {
    content: " in every service we provide. We go with this line: Cure Your Practice, Code Your Future.";
  }
}

.card:hover {
  transform: scale(1.02);
}

.card:hover .card_img img {
  -webkit-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}

.card_img {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 100%;
  margin: -60px auto 0;
}

.card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.card_info {
  padding-bottom: 20px;
}

/* Services Card Section End */

/*  Why Choose Us Start */

/* .bg-pattern-1 {
  background-image: url("../img/bg-pattern-1.jpg");
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

} */

.why-choose-us-header h1 {
  font-size: 4rem;
  margin: 1rem 0;
}

.why-choose-us-container {
  gap: 2rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.why-choose-us-container .card {
  width: 100%;
  height: auto;
}

.why-choose-us-container .card .why-choose-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.5rem;
  padding: 2rem;
  outline: none;
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
}

.why-choose-us-container .card .why-choose-card-inner:hover {
  background-color: #2c7bfe;
  color: #fff;
}

.why-choose-us-container .card .why-choose-card-inner:hover .card_info h2 {
  color: #fff;
}
.why-choose-us-container .card .why-choose-card-inner:hover::before {
  opacity: 0.2;
  -webkit-transition: all 100ms ease;
  transition: all 100ms ease;
}

.why-choose-us-container .card .why-choose-card-inner::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/shape-bg-hexagon.png);
  background-position: right top;
  background-repeat: no-repeat;
  content: "";
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.why-choose-us-container .card .why_card_img span {
  padding: 1rem;
  border-radius: 100%;
  background-color: #2c7bfe;
  font-size: 2rem;
  color: #fff;
  display: inline-block;
  width: 5rem;
  height: 5rem;
}
.why-choose-us-container .card .why-choose-card-inner:hover .why_card_img span {
  color: #2c7bfe;
  background-color: #fff;
}
.why-choose-us-container .card .why-choose-card-inner .why_card_img span i {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.why-choose-us-container
  .card
  .why-choose-card-inner:hover
  .why_card_img
  span
  i {
  -webkit-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}

.why-choose-us-container .card .card_info {
  width: 100%;
  text-align: left;
}

.why-choose-us-container .card .card_info p {
  font-size: 0.95rem;
}

/*  Why Choose Us End */

/*  Services Section Start */

.services-sec {
  position: relative;
  
}
.bg-pattern-services {
  background-image: url("./../img/bg-pattern-5.jpg");
}

.services_container {
  padding: 5rem 0;
  position: relative;
  
}

.services_contact_number {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  padding: 1rem 2rem;
  background-color: #fdfdfd;
  width: fit-content;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.services_contact_number i {
  color: #06a3da;
}
.services_contact_number:hover strong,
.services_contact_number:hover i {
  color: #53bf7d;
}

.services_contact_number span {
  animation-duration: 1s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
}
.services_contact_number:hover span {
  animation-name: bounce;
  animation-timing-function: ease;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/*  Services Section End */

/* Testimonial Section Start*/

.counter-box {
  display: block;
  background: #f6f6f6;
  padding: 40px 20px 37px;
  text-align: center;
}

.counter-box p {
  margin: 5px 0 0;
  padding: 0;
  color: #909090;
  font-size: 18px;
  font-weight: 500;
}

.counter-box i {
  font-size: 60px;
  margin: 0 0 15px;
  color: #d2d2d2;
}

.counter {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #666;
  line-height: 28px;
}

.counter-box.colored {
  background: #3acf87;
}

.counter-box.colored p,
.counter-box.colored i,
.counter-box.colored .counter {
  color: #fff;
}

.numbers_container {
  padding: 2rem 0 4rem 0;
}

.numbers_container .title {
  text-align: center;
  font-size: 4rem;
}

.numbers_info .num_plus::after {
  content: "+";
}
.numbers_info .num_perecent::after {
  content: "%";
}

.numbers_info .num_perecent:last-child::after {
  content: "%ss";
}

/* Testimonial Section End*/

/* Footer Section Start*/

.footer_certification_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .footer_certification {
  padding: 0;
} */
.footer_certification_logos span {
  width: 50%;
}

.footer_certification_logos span img {
  width: 100%;
  height: auto;
}

.footer_certification img {
  width: 50%;
  height: auto;
}

/* Footer Section End*/

/* Services Page Start */

.services_title {
  text-transform: capitalize;
}

/* Services Page End */

/* Contact Page Start */

.contact_container {
  margin-bottom: 5rem;
}

/* Contact Page End */

/* Logo Text Start */

.logo_text {
  font-size: 1.6rem;
  margin-left: 1rem !important;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;

  /* Adding Gradient Color */
  background: #004aad;
  background: linear-gradient(to right, #004aad 0%, #038e94 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Logo Text End */
 

/* About Us Page Start  */
.about_section_about_page, .mission_section_about_page, .mission_vision_about_page  {
  position: relative;
}

.mission_container, .vision_container {
  position: relative;
}

.about_section_about_page  .bg-pattern-about-page, .mission_section_about_page  .bg-pattern-mission-page, .mission_vision_about_page .bg-pattern-vision-page {

  background-image: url("./../img/bg-pattern-5.jpg");
}

.vision_container {
  padding: 4rem 0;
}

.vision_heading {
  text-transform: capitalize;
  margin: 1.5rem 0;
}


.mission_container {
  padding: 4rem 0;
}

.why-choose-us-container-about-page {
  padding-bottom: 10rem !important;
}

/* About Us Page End  */

/* Topbar Start  */
.topbar_logos {
  margin-right: 1rem;
  z-index: 10;
}


/* Topbar End */