/********** Template CSS **********/
.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.fw-medium {
  font-weight: 600;
}

.mt-6 {
  margin-top: 5rem;
}

.mb-6 {
  margin-bottom: 5rem;
}

.pt-6 {
  padding-top: 5rem;
}

.pb-6 {
  padding-bottom: 5rem;
}

/*** 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;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
  color: var(--bs-LIGHT);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-xl-square {
  width: 60px;
  height: 60px;
}

.btn-xxl-square {
  width: 75px;
  height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/

.navbar-light .navbar-nav .nav-link {
  font-family: 'Poppins', sans-serif;
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  color: #342960 !important;
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
}

/* Sticky Navbar */
.sticky-top .navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: #342960 !important;
}

/* Hover & Active */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #342960 !important;
}

/* Logo */
.navbar-light .navbar-brand img {
  max-height: 100px;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-brand img {
  max-height: 75px;
  padding-left: 30px;
}

/* Dropdown arrow */
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  color: #342960;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  /* display: none; */
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
}

/* Desktop Dropdown */
/* @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;
        background: #ffffff;
    }
} */

/* Dropdown hover */
/* .dropdown .dropdown-menu a:hover {
    background: #342960;
    color: #ffffff;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: #342960;
    transition: 0.5s;
    opacity: 1;
} */

/* Mobile Navbar */
@media (max-width: 991.98px) {
  .sticky-top {
    position: relative;
    background: #ffffff;
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid #342960 !important;
    color: #342960;
  }

  .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: #342960 !important;
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

/* Desktop Border Animation */
@media (min-width: 991.98px) {
  .sticky-top .navbar-light {
    background: #fff !important;
  }

  .navbar-light .navbar-nav .nav-link::before,
  .navbar-light .navbar-nav .nav-link::after {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 2px;
    background: #342960;
    opacity: 0;
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link::before {
    top: 20px;
  }

  .navbar-light .navbar-nav .nav-link::after {
    bottom: 20px;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before,
  .navbar-light .navbar-nav .nav-link:hover::after,
  .navbar-light .navbar-nav .nav-link.active::after {
    opacity: 1;
  }
}

/* Search Modal */
#searchModal .modal-content {
  background: rgba(52, 41, 96, 0.1);
}

/*** Navbar End ***/

body {
  background-color: #cfa0a0;
  /* change this color */
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/*** Header ***/
.carousel .carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  text-align: left;
  background: rgba(0, 0, 0, 0.7);
  padding: 3rem;
  padding-left: 11rem;
  z-index: 1;
}

.carousel .carousel-indicators {
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  width: 80px;
  flex-direction: column;
  margin: 0;
  margin-left: 3rem;
}

.carousel .carousel-indicators [data-bs-target] {
  width: 70px;
  height: 70px;
  text-indent: 0;
  margin: 5px 0;
  border: 2px solid #ffffff;
  overflow: hidden;
}

.carousel .carousel-indicators [data-bs-target] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .carousel .carousel-item {
    position: relative;
    min-height: 600px;
  }

  .carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
  }

  .carousel .carousel-caption {
    padding-left: 10rem;
  }
}

@media (max-width: 768px) {
  .carousel .carousel-item {
    min-height: 650px;
  }

  .carousel .carousel-indicators [data-bs-target] {
    width: 50px;
    height: 50px;
  }

  .carousel .carousel-caption {
    padding-left: 9rem;
  }
}

@media (min-width: 1200px) {
  .carousel .carousel-item .display-1 {
    font-size: 7rem;
  }
}

.page-header {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

/*** About ***/
.about-img {
  position: relative;
  padding-left: 45px;
}

@media (max-width:768px){
    .about-img {
      position: relative;
      padding-left: 0px;
    }
}
.about-img::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 300px;
  top: 0;
  left: 0;
  border: 5px solid var(--bs-primary);
  animation: animateUpDown 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes animateUpDown {
  0% {
    top: -25px;
  }

  50% {
    top: -45px;
  }

  100% {
    top: -25px;
  }
}

/*** Service ***/
.service .service-item {
  position: relative;
  margin-top: 45px;
  height: 88%;
}

.service .service-inner {
  position: relative;
  height: 100%;
  margin-top: 45px;
  background: var(--bs-white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.315);
}

.service .service-inner::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  transition: 1s;
  background: var(--bs-primary);
}

.service .service-inner:hover::before {
  height: 100%;
  top: 0;
}

.service .service-item img {
  margin-top: -45px;
  padding-left: 45px;
}

.service .service-item * {
  position: relative;
  transition: 0.5s;
  z-index: 1;
}

.service .service-item:hover h5,
.service .service-item:hover p {
  color: var(--bs-white);
}

.service .service-item:hover a {
  padding-left: 45px !important;
}

/*** Team ***/
.team .team-item {
  background: var(--bs-white);
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.05);
}

.team .team-item .team-social {
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  transition: 0.5s;
  background: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-item:hover .team-social {
  width: 100%;
  left: 0;
}

.team .team-item .team-social .btn {
  opacity: 0;
  transition: 0.5s;
}

.team .team-item:hover .team-social .btn {
  opacity: 1;
}

/*** Testimonial ***/
.testimonial-img {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.testimonial-img div {
  position: absolute;
  width: 100px;
  height: 100px;
  animation-duration: 5s;
}

.testimonial-img div:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0.1s;
}

.testimonial-img div:nth-child(2) {
  top: 60%;
  left: 20%;
  animation-delay: 0.4s;
}

.testimonial-img div:nth-child(3) {
  top: 20%;
  left: 60%;
  animation-delay: 0.7s;
}

.testimonial-img div:nth-child(4) {
  bottom: 10%;
  right: 10%;
  animation-delay: 1s;
}

.testimonial-img div::after {
  position: absolute;
  content: "";
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  box-shadow: 0 0 10px 10px var(--bs-white) inset;
  z-index: 1;
}

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-nav {
  margin-top: 15px;
  display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin-right: 15px;
  color: var(--bs-primary);
  font-size: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--bs-dark);
}

/*** Contact ***/
.contact {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/carousel-3.jpg) left center no-repeat;
  background-size: cover;
}

@media (min-width: 992px) {
  .contact-info::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 100%;
    top: 0;
    left: 50%;
    border-left: 1px dashed rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 991.98px) {
  .contact-info::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0px;
    top: 50%;
    left: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
  }
}

/*** Footer ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #fff;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--bs-primary);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--bs-primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  background: #222222;
}

.copyright a {
  color: var(--bs-white);
}

.copyright a:hover {
  color: var(--bs-primary);
}

.bg-primary {
  background-color: #0d6efd !important;
  /* Bootstrap blue */
}

/* ================= GLOBAL ================= */


.vms-section {
  padding: 80px 20px;
  background: #f0eff6;
}

.vms-title {
  text-align: center;
  font-size: 36px;
  color: #342960;
  margin-bottom: 50px;
}

.vms-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(52, 41, 96, 0.15);
  border-top: 5px solid #342960;
}

.vms-icon {
  font-size: 50px;
  margin-bottom: 20px;
  color: #342960;
}

.vms-card h3 {
  font-size: 24px;
  color: #342960;
}

.vms-card p {
  font-size: 15px;
  color: #2b2750;
  line-height: 1.7;
}

/* ================= SERVICES ================= */
.section-header h1 {
  font-size: 38px;
  color: #342960;
}

.section-header p {
  font-size: 17px;
  color: #342960;
  font-weight: 600;
}

.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 15px 35px rgba(52, 41, 96, 0.15);
  border-left: 5px solid #342960;
}

.service-card h2 {
  font-size: 22px;
  color: #342960;
}

.service-card li {
  font-size: 15px;
  color: #2b2750;
  line-height: 1.6;
  border-left: 4px solid #342960;
  padding-left: 9px;
}

/* ================= PRODUCT SECTION ================= */
.product-section {
  padding: 80px 10%;
  background: #f0eff6;
}

.product-content h2 {
  font-size: 36px;
  color: #342960;
}

.subtitle {
  color: #3e3970;
}

.step-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(52, 41, 96, 0.15);
  border-left: 5px solid #342960;
}

.step-no {
  background: #342960;
  color: #ffffff;
}

.step-card h4 {
  color: #342960;
}

.step-card p {
  color: #2b2750;
}

.product-image img {
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(52, 41, 96, 0.35);
}





/* Full Website Background */
html,
body {
  width: 100%;
  /* height: 100%; */
  margin: 0;
  padding: 0;
  background-color: #f1f0f0;
}


/* ================= DROPDOWN MENU ================= */

/* Desktop dropdown */
/* @media (min-width: 992px) {
    .navbar .dropdown-menu {
        background: #342960; 
        border-radius: 12px;
        padding: 10px 0;
        border: none;
        box-shadow: 0 15px 35px rgba(52, 41, 96, 0.4);
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .navbar .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
} */

/* Dropdown links */
/* .dropdown-menu .dropdown-item {
    color: #1d2360;
    font-size: 15px;
    padding: 12px 22px;
    background: transparent;
    transition: 0.3s;
} */

/* 🔴 RED hover background */
/* .dropdown-menu .dropdown-item:hover {
    background: #342960; 
    color: #ffffff;
    padding-left: 30px;
} */

/* Active dropdown item */
/* .dropdown-menu .dropdown-item.active {
    background: #342960;
    color: #ffffff;
} */

/* Divider */
/* .dropdown-menu .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.3);
} */

/* Mobile dropdown */
/* @media (max-width: 991.98px) {
    .navbar .dropdown-menu {
        background: #342960;
        border-radius: 10px;
        margin-top: 8px;
    }

    .dropdown-menu .dropdown-item {
        color: #ffffff;
    }

    .dropdown-menu .dropdown-item:hover {
        background: #342960;
        color: #ffffff;
        padding-left: 28px;
    }
} */
a {
  text-decoration: none;
}

.floating_btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}

.footer p {
  color: #fff;
}