/*** Spinner Start ***/
/*** 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;
}
/*** Spinner End ***/

:root {
  --bs-primary: #355efc;
  --bs-secondary: #e93c05;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-font-sans-serif: "Open Sans", sans-serif;
  --bs-font-heading: "Playfair Display", serif;
  --bs-border-radius: 8px;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-transition: all 0.3s ease;
}

body {
  font-family: var(--bs-font-sans-serif);
  line-height: 1.6;
  color: var(--bs-gray-700);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bs-font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--bs-dark);
}

/*** Logo Text ***/
.logo-text {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--bs-primary);
  font-size: 2rem;
  margin: 0;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.logo-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50%;
  height: 3px;
  background: linear-gradient(to right, var(--bs-primary), transparent);
}

.hero-banner .logo-text {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-banner .logo-text::after {
  width: 150px;
  height: 4px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, white, transparent);
}

/* Mobile responsive logo */
@media (max-width: 575.98px) {
  .logo-text {
    font-size: 1.25rem;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-text::after {
    width: 80px;
    bottom: -3px;
  }

  .hero-banner .logo-text {
    font-size: 2rem;
    max-width: 100%;
    white-space: normal;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .logo-text {
    font-size: 1.5rem;
  }

  .hero-banner .logo-text {
    font-size: 2.5rem;
  }
}

.hero-banner {
  padding: 180px 0 150px;
  background: linear-gradient(rgba(53, 94, 252, 0.85), rgba(53, 94, 252, 0.85)),
    url(../img/carousel-1.jpg) no-repeat center center;
  background-size: cover;
  color: white;
  position: relative;
  margin-top: 0;
}

.hero-banner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  z-index: 1;
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}

.hero-banner h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-banner h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: white;
  font-weight: 400;
}

/* Responsive hero banner */
@media (max-width: 991.98px) {
  .hero-banner {
    padding: 130px 0 100px;
  }

  .hero-banner h1 {
    font-size: 2.5rem;
  }

  .hero-banner h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-banner {
    padding: 120px 0 80px;
  }

  .hero-banner h1 {
    font-size: 2rem;
  }

  .hero-banner h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .hero-banner .btn {
    width: 100%;
    margin-top: 1rem;
  }
}

/*** FAQ Styling ***/
.faq-section {
  padding: 80px 0;
  background-color: var(--bs-light);
}

.faq-item {
  margin-bottom: 1.5rem;
  border-radius: var(--bs-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--bs-transition);
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  background-color: white;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--bs-transition);
  border-left: 4px solid transparent;
}

.faq-item:hover .faq-question {
  border-left: 4px solid var(--bs-primary);
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, var(--bs-primary), #2a4fd0);
  color: white;
  border-left: 4px solid #2a4fd0;
}

.faq-question:after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--bs-primary);
  transition: var(--bs-transition);
}

.faq-item.active .faq-question:after {
  content: "\f077";
  color: white;
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: white;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}

/*** Service Areas ***/
.service-areas {
  padding: 80px 0;
  background-color: var(--bs-light);
}

.service-areas ul {
  column-count: 3;
  column-gap: 2rem;
  list-style-type: none;
  padding-left: 0;
  margin-top: 2rem;
}

.service-areas ul li {
  margin-bottom: 1rem;
  position: relative;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  background-color: white;
  border-radius: var(--bs-border-radius);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: var(--bs-transition);
}

.service-areas ul li:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-areas ul li:before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bs-primary);
}

@media (max-width: 992px) {
  .service-areas ul {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .service-areas ul {
    column-count: 1;
  }
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: var(--bs-transition);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--bs-primary), #2a4fd0);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2a4fd0, var(--bs-primary));
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(53, 94, 252, 0.3);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

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

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

.btn-md-square {
  width: 44px;
  height: 44px;
}

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

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

.btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
  box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

.btn.btn-light {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
  box-shadow: inset 300px 0 0 0 var(--bs-primary);
  color: var(--bs-light) !important;
}

.btn-hover {
  transition: 0.5s;
}

.btn-hover:hover {
  color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}

.section-title h1 {
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-title h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--bs-primary);
}

.section-title p {
  max-width: 800px;
  margin: 0 auto;
}

/*** Topbar Start ***/
.fixed-top .container {
  transition: 0.5s;
}

.topbar {
  padding: 2px 10px 2px 20px;
  background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
  transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
  color: var(--bs-secondary) !important;
}

@media (max-width: 576px) {
  .topbar {
    display: none;
  }
}
/*** Topbar End ***/

/*** Navbar ***/
.navbar-initialized {
  visibility: visible !important;
}

.navbar {
  transition: var(--bs-transition);
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.navbar-light {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Logo styling in transparent navbar */
.navbar-light .logo-text {
  color: var(--bs-primary);
  text-shadow: none;
}

.navbar-light.sticky-top .logo-text {
  color: var(--bs-primary);
  text-shadow: none;
}

.navbar-light.sticky-top {
  background-color: white !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

/* Add spacing between menu and button */
.navbar-nav {
  margin-right: 2rem;
}

.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-left: 1.5rem;
  padding: 0.75rem 0;
  color: var(--bs-dark);
  font-weight: 500;
  outline: none;
  transition: var(--bs-transition);
  text-shadow: none;
}

.navbar-light.sticky-top .navbar-nav .nav-link {
  color: var(--bs-dark);
  text-shadow: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-primary);
  font-weight: 600;
}

.navbar-light.sticky-top .navbar-nav .nav-link:hover,
.navbar-light.sticky-top .navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

.navbar-light .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--bs-primary);
  transition: var(--bs-transition);
}

.navbar-light.sticky-top .navbar-nav .nav-link::before {
  background: var(--bs-primary);
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
  width: 100%;
}

/* Responsive navbar styles */
@media (max-width: 991.98px) {
  .navbar-light {
    background-color: white !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
  }

  .navbar-light .logo-text {
    color: var(--bs-primary);
    text-shadow: none;
  }

  .navbar-light .navbar-nav .nav-link {
    margin-left: 0;
    padding: 0.75rem 0;
    color: var(--bs-dark);
    text-shadow: none;
    text-align: center;
  }

  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
  }

  .navbar-nav {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .navbar-light .navbar-toggler {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
    padding: 0.4rem 0.75rem;
  }

  .navbar-light .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar .btn-primary {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
    text-align: center;
  }
}

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

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

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light) !important;
  transition: 0.5s;
  opacity: 1;
}

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

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .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(--bs-dark) !important;
  }

  .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(255, 255, 255, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-light) !important;
  }

  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--bs-primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: calc(100% - 2px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
}
/*** Carousel Hero Header Start ***/
.header-carousel {
  position: relative;
}

.header-carousel .owl-nav .owl-prev {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--bs-primary);
  color: var(--bs-white);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--bs-primary);
  color: var(--bs-white);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 150px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

@media (max-width: 576px) {
  .header-carousel .owl-nav .owl-prev,
  .header-carousel .owl-nav .owl-next {
    top: 630px;
    transition: 0.5s;
  }

  .header-carousel
    .header-carousel-item
    .carousel-caption
    .carousel-caption-content {
    width: 95% !important;
  }
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
  position: relative;
  width: 100%;
  height: 700px;
  margin-top: 95px;
  display: block;
  object-fit: cover;
  transition: 0.5s;
}

@media (max-width: 992px) {
  .header-carousel .header-carousel-item,
  .header-carousel .header-carousel-item img {
    margin-top: 0;
    transition: 0.5s;
  }
}

@media (min-width: 992px) {
  .header-carousel .owl-nav .owl-prev,
  .header-carousel .owl-nav .owl-next {
    margin-top: 50px;
  }
}

.header-carousel .header-carousel-item .carousel-caption {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}

.header-carousel
  .header-carousel-item
  .carousel-caption
  .carousel-caption-content {
  position: relative;
  width: 75%;
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/carousel-2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 160px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
  color: var(--bs-white) !important;
}
/*** Single Page Hero Header End ***/

/*** Service Start ***/
.service .service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.service .service-item .service-img {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

.service .service-item .service-img::before {
  width: 100%;
  height: 0;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  transition: 0.5s;
  z-index: 5;
}

.service .service-item:hover .service-img::before {
  height: 100%;
  background: rgba(21, 185, 217, 0.3);
}

.service .service-item .service-img:hover img {
  transform: scale(1.3);
}

.service .service-item .service-content {
  position: relative;
  z-index: 2;
}

.service .service-item .service-content::before {
  width: 100%;
  height: 8px;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: rgba(21, 185, 217, 0.5);
  transition: 0.5s;
  z-index: 3;
}

.service .service-item:hover .service-content::before {
  background: rgba(21, 185, 217, 0.5);
  height: 100%;
}

.service .service-item .service-content .service-content-inner {
  transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner {
  position: relative;
  color: var(--bs-white) !important;
  z-index: 9;
}
.service .service-item:hover .service-content .service-content-inner h5 {
  color: var(--bs-secondary);
}

/*** Service End ***/

/*** About Start ***/
.about {
  position: relative;
  overflow: hidden;
}

.about-img {
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-radius: var(--bs-border-radius);
  overflow: hidden;
  margin-right: 15px;
  margin-bottom: 15px;
}

.about-img img {
  transition: var(--bs-transition);
  height: 400px;
  object-fit: cover;
  width: 100%;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-img-inner {
  position: absolute;
  bottom: 30px;
  right: -15px;
  width: 150px;
  height: 150px;
  background: white;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border: 5px solid white;
  overflow: hidden;
}

.about-img-inner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: var(--bs-transition);
}

.about-img:hover .about-img-inner img {
  transform: scale(1.1);
}

.about-experience {
  position: absolute;
  top: 30px;
  left: 0;
  transform: translateX(-15px);
  background: var(--bs-primary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) 0;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(53, 94, 252, 0.3);
}

@media (max-width: 991.98px) {
  .about-img {
    margin-bottom: 60px;
    margin-right: 0;
  }

  .about-img-inner {
    bottom: -30px;
    right: 30px;
  }

  .about-experience {
    top: 30px;
    left: 0;
  }
}

@media (max-width: 575.98px) {
  .about-img {
    padding-bottom: 0;
    padding-left: 0;
  }

  .about-img img {
    height: 300px;
  }

  .about-img-inner {
    width: 120px;
    height: 120px;
    bottom: -20px;
    right: 20px;
  }

  .about-experience {
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
  }
}

/*** About End ***/

/*** Feature Start ***/
.feature .feature-item {
  position: relative;
  display: flex;
  border: 1px solid var(--bs-primary);
  border-radius: 10px;
  background: var(--bs-light);
  transition: 0.5s;
}

.feature .feature-item::before {
  width: 0;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  transition: 0.5s;
}

.feature .feature-item:hover::before {
  width: 100%;
  background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
  display: inline-flex;
  border-radius: 10px;
  transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
  position: relative;
  z-index: 2;
}

.feature .feature-item:hover .feature-content {
  position: relative;
  color: var(--bs-white);
  z-index: 2;
}

.feature .feature-item:hover .feature-content h5 {
  color: var(--bs-dark);
}
/*** Feature End ***/

/*** Appointment Start ***/
.appointment {
  background: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url(../img/carousel-2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.appointment .appointment-form {
  background: rgba(239, 162, 134, 0.3);
}

.appointment .appointment-form .btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.appointment .appointment-form .btn.btn-primary:hover {
  box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}
/*** Youtube Video start ***/
.video {
  position: relative;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: content-box;
  display: block;
  width: 33px;
  height: 44px;
  border-radius: 50%;
  transition: 0.5s;
}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 115px;
  height: 115px;
  background: var(--bs-primary);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  transition: 0.5s;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--bs-secondary);
  border-radius: 50%;
  transition: all 300ms;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 33px solid var(--bs-white);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  margin-left: 5px;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}
/*** Youtube Video End ***/
/*** Appointment End ***/

/*** Team Start ***/
.team .team-item .team-img {
  position: relative;
  overflow: hidden;
}

.team .team-item .team-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  transition: 0.5s;
}

.team .team-item .team-img .team-icon {
  position: absolute;
  bottom: -125px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon {
  margin-bottom: 145px;
}

.team .team-item:hover .team-img::before {
  background: rgba(21, 185, 217, 0.3);
}

.team .team-item .team-content {
  color: var(--bs-primary);
  transition: 0.5s;
}

.team .team-item .team-content h5 {
  color: var(--bs-secondary);
  transition: 0.5s;
}

.team .team-item:hover .team-content h5 {
  color: var(--bs-dark);
}

.team .team-item:hover .team-content {
  background: var(--bs-primary);
  color: var(--bs-white);
}
/*** Team End ***/

/*** testimonial Start ***/
.testimonial {
  background: linear-gradient(rgba(21, 185, 217, 0.9), rgba(21, 185, 217, 0.9)),
    url(../img/carousel-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.testimonial .testimonial-item .testimonial-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid var(--bs-white);
}

.testimonial .testimonial-carousel.owl-carousel {
  position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--bs-light);
  color: var(--bs-primary);
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--bs-light);
  color: var(--bs-primary);
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 100px 0 0 0 var(--bs-primary) !important;
  color: var(--bs-white) !important;
}

@media (max-width: 900px) {
  .testimonial .testimonial-carousel .owl-nav .owl-prev {
    margin-top: -190px;
    margin-left: 40px;
  }

  .testimonial .testimonial-carousel .owl-nav .owl-next {
    margin-top: -190px;
    margin-right: 40px;
  }
}

.testimonial-carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 15px;
  border: 1px solid var(--bs-white);
  background: transparent;
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 20px;
  height: 20px;
  background: var(--bs-secondary) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
  position: relative;
  margin-top: 50%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
  transition: 0.5s;
}

@media (min-width: 900px) {
  .testimonial
    .testimonial-carousel
    .testimonial-item
    .testimonial-inner
    p.fs-7 {
    font-size: 20px;
  }
}

/* Testimonial Section Title Start */
.testimonial .section-title {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.testimonial .section-title .sub-style {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.testimonial .section-title .sub-style::before {
  content: "";
  width: 100px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-top: 8px;
  margin-left: -100px;
  border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-style::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-bottom: 5px;
  margin-left: -50px;
  border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.testimonial .section-title .sub-title::before {
  content: "";
  width: 100px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-top: 8px;
  margin-right: -100px;
  border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-bottom: 8px;
  margin-right: -50px;
  border: 1px solid var(--bs-white) !important;
}
/*** Testimonial End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  transition: 0.5s;
}

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

.blog .blog-item .blog-img:hover img {
  transform: scale(1.3);
}

.blog .blog-item:hover .blog-img::after {
  background: rgba(21, 185, 217, 0.5);
}

.blog .blog-item .blog-centent {
  background: var(--bs-light);
  border: 1px solid var(--bs-primary);
  border-top: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
/*** Blog End ***/

/*** Contact Start ***/
.contact {
  background: linear-gradient(rgba(53, 94, 252, 0.9), rgba(53, 94, 252, 0.9)),
    url(../img/carousel-1.jpg) no-repeat center center;
  background-size: cover;
}

.contact-info {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--bs-border-radius);
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact .contact-form .btn.btn-light {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .contact-form .btn.btn-light:hover {
  box-shadow: inset 600px 0 0 0 var(--bs-primary) !important;
  color: var(--bs-white) !important;
}

.contact .contact-form .form-floating input,
.contact .contact-form .form-floating textarea,
.contact .contact-form .form-floating label {
  color: var(--bs-light);
}

/* Testimonial Section Title Start */
.contact .section-title {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.contact .section-title .sub-style {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.contact .section-title .sub-style::before {
  content: "";
  width: 100px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-top: 8px;
  margin-left: -100px;
  border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-style::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-bottom: 5px;
  margin-left: -50px;
  border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.contact .section-title .sub-title::before {
  content: "";
  width: 100px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-top: 8px;
  margin-right: -100px;
  border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-bottom: 8px;
  margin-right: -50px;
  border: 1px solid var(--bs-white) !important;
}
/*** Contact End ***/

/*** Footer Start ***/
.footer {
  background-color: var(--bs-dark);
}

.footer-item {
  margin-bottom: 2rem;
}

.footer-item h4 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  display: inline-block;
}

.footer-item h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--bs-primary);
}

.footer-item a {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--bs-gray-400);
  transition: var(--bs-transition);
}

.footer-item a:hover {
  color: var(--bs-primary);
  transform: translateX(5px);
}

.footer-item a i {
  margin-right: 0.5rem;
}

.footer-item p {
  color: var(--bs-gray-400);
}

.copyright {
  background-color: #1a1d20;
  padding: 1.5rem 0;
}

.copyright .text-white {
  color: var(--bs-gray-400) !important;
}

.copyright a {
  color: var(--bs-primary);
  transition: var(--bs-transition);
}

.copyright a:hover {
  color: white;
}
/*** copyright end ***/

/*** Service Cards ***/
.service-item {
  transition: var(--bs-transition);
  border-radius: var(--bs-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  position: relative;
  overflow: hidden;
}

.service-img img {
  transition: var(--bs-transition);
}

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

.service-content {
  padding: 1.5rem;
  background: white;
}

.service-content h5 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.service-content h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--bs-primary);
}

.service-content p {
  margin-bottom: 1.5rem;
}

/*** Navbar Animations ***/
.navbar-animated {
  animation: navbarSlideDown 0.5s ease;
}

@keyframes navbarSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-link-hover {
  animation: navLinkPulse 0.5s ease;
}

@keyframes navLinkPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/*** Hover Effects ***/
.hover-lift {
  transition: var(--bs-transition);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hover-scale img {
  transition: var(--bs-transition);
}

.hover-scale:hover img {
  transform: scale(1.05);
}

/*** Animations ***/
.fade-up {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*** Utilities ***/
.rounded-custom {
  border-radius: var(--bs-border-radius);
}

.shadow-custom {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.text-gradient {
  background: linear-gradient(to right, var(--bs-primary), #2a4fd0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*** Navbar CTA Button ***/
.navbar .btn-primary {
  background: linear-gradient(135deg, var(--bs-primary), #2a4fd0);
  color: white !important;
  border: none;
  box-shadow: 0 4px 15px rgba(53, 94, 252, 0.3);
  transition: var(--bs-transition);
}

.navbar .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(53, 94, 252, 0.4);
  background: linear-gradient(135deg, #2a4fd0, var(--bs-primary));
}

.navbar.sticky-top .btn-primary {
  background: linear-gradient(135deg, var(--bs-primary), #2a4fd0);
  color: white !important;
}

.navbar.sticky-top .btn-primary:hover {
  background: linear-gradient(135deg, #2a4fd0, var(--bs-primary));
  box-shadow: 0 8px 20px rgba(53, 94, 252, 0.4);
}

@media (max-width: 991.98px) {
  .navbar .btn-primary {
    background: linear-gradient(135deg, var(--bs-primary), #2a4fd0);
    color: white !important;
    margin-top: 0.5rem;
  }

  .navbar .btn-primary:hover {
    background: linear-gradient(135deg, #2a4fd0, var(--bs-primary));
    box-shadow: 0 8px 20px rgba(53, 94, 252, 0.4);
    color: white !important;
  }
}

/*** Work Process Section ***/
.process-container {
  position: relative;
  padding: 30px 0;
}

.process-step {
  position: relative;
  margin-bottom: 60px;
  z-index: 2;
}

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

.process-step-inner {
  display: flex;
  align-items: flex-start;
  background-color: white;
  border-radius: var(--bs-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 20px;
  transition: var(--bs-transition);
}

.process-step-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-icon {
  position: relative;
  min-width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--bs-primary), #2a4fd0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  box-shadow: 0 10px 20px rgba(53, 94, 252, 0.3);
  z-index: 3;
}

.process-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background-color: white;
  color: var(--bs-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.process-content {
  padding: 10px;
  flex: 1;
  transition: var(--bs-transition);
}

.process-content h4 {
  color: var(--bs-primary);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.process-content h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--bs-primary), transparent);
}

@media (max-width: 768px) {
  .process-step-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .process-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .process-content h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/*** Feature Items ***/
.feature-item {
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  height: 100%;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(53, 94, 252, 0.1),
    rgba(53, 94, 252, 0.2)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--bs-transition);
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--bs-primary), #2a4fd0);
  transform: rotateY(180deg);
}

.feature-item:hover .feature-icon i {
  color: white !important;
  transform: rotateY(180deg);
}

.feature-icon i {
  transition: var(--bs-transition);
}

/*** Benefits Section ***/
.benefits-list {
  padding: 20px;
}

.benefit-item {
  margin-bottom: 30px;
  transition: var(--bs-transition);
}

.benefit-item:hover {
  transform: translateX(10px);
}

.benefit-icon {
  min-width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(53, 94, 252, 0.1),
    rgba(53, 94, 252, 0.2)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: var(--bs-transition);
}

.benefit-item:hover .benefit-icon {
  background: linear-gradient(135deg, var(--bs-primary), #2a4fd0);
}

.benefit-item:hover .benefit-icon i {
  color: white !important;
}

.benefit-icon i {
  font-size: 24px;
  transition: var(--bs-transition);
}

.benefit-content h5 {
  margin-bottom: 8px;
  color: var(--bs-dark);
  font-weight: 600;
}

.shadow-custom {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: var(--bs-transition);
}

.shadow-custom:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/*** General Responsive Fixes ***/
@media (max-width: 767.98px) {
  .section-title h1 {
    font-size: 2rem;
  }

  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .container.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

/* Fix for service cards on mobile */
@media (max-width: 575.98px) {
  .service-item {
    margin-bottom: 30px;
  }

  .service-img img {
    height: 200px;
    object-fit: cover;
  }

  .section-title h1 {
    font-size: 1.75rem;
  }

  h1.display-4 {
    font-size: 2rem;
  }

  h1.display-3 {
    font-size: 2.25rem;
  }

  .back-to-top {
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
  }
}

/* Fix for process steps on mobile */
@media (max-width: 767.98px) {
  .process-step {
    margin-bottom: 30px;
  }

  .process-step-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .process-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .process-content h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
