@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --themeprimaryclr: #0f2544;
  --themesecondaryclr: #0158ff;
  --themethirdclr: #155299;
  --badgeclr: #0158ff;
  --darkclr: #000;
  --plainclr: #fff;
  --badgebg: #f5f8ff;
  --themegreen: #509108;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

section {
  padding: 3rem 0;
}

span.red {
  color: #ff0000;
}

a {
  text-decoration: none;
}

ul li {
  list-style: none;
}

p,
a,
span {
  font-size: 1rem;
}

.btn-theme-one {
  border: 1px solid var(--plainclr);
  color: var(--plainclr);
  background-color: transparent;
  transition: all 0.4s linear;
  padding: 8px !important;
  min-width: 130px;
}

.btn-theme-one:hover {
  transform: translateY(-10px);
  background-color: var(--plainclr);
  border: 1px solid var(--plainclr);
  color: var(--themeprimaryclr);
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.btn-theme-two {
  background-color: var(--plainclr);
  border: 1px solid transparent;
  color: var(--themeprimaryclr);
  transition: all 0.4s linear;
  padding: 8px !important;
  min-width: 130px;
}

.btn-theme-two:hover {
  transform: translateY(-10px);
  background-color: transparent;
  border: 1px solid var(--plainclr);
  color: var(--plainclr);
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.badge-blue-outline {
  color: var(--badgeclr);
  border: 1px solid var(--badgeclr);
  padding: 6px 12px;
  font-size: 0.7rem !important;
  border-radius: 30px;
  background: var(--badgebg);
}

.heading {
  font-size: 1.9rem;
  font-weight: 600;
}

.sub-heading {
  font-size: 1.1rem;
  font-weight: 600;
}

.blue {
  color: var(--themesecondaryclr) !important;
}

header {
  background-color: var(--themeprimaryclr);
  color: var(--plainclr);
  min-height: 80px;
  display: flex;
  align-items: center;
  /* Parent li */
  /* Dropdown menu default hidden and ready to animate */
  /* Show on hover */
}

header nav .navbar-brand {
  width: 130px;
  display: block;
}

header nav .navbar-brand img {
  width: 100%;
}

header nav .navbar-nav {
  gap: 2rem;
}

header nav .navbar-nav .nav-item {
  position: relative;
}

header nav .navbar-nav .nav-item::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--plainclr);
  left: 0;
  bottom: -5px;
  transition: all 0.4s linear;
}

header nav .navbar-nav .nav-item:hover::after {
  width: 100%;
}

header nav .navbar-nav .nav-item .nav-link {
  color: var(--plainclr);
}

header .show-drop {
  position: relative;
}

header .show-drop .dropdown-menuu {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  background-color: white;
  padding: 10px 10px !important;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  /* prevents accidental hover */
  min-width: 200px;
}

header .show-drop .dropdown-menuu .dropdown-item {
  color: var(--themeprimaryclr);
  font-size: 0.9rem;
  display: inline-block;
  padding: 0.5rem;
  transition: all 0.3s linear;
}

header .show-drop .dropdown-menuu .dropdown-item:hover {
  background-color: var(--themeprimaryclr) !important;
  color: var(--plainclr);
}

header .show-drop:hover .dropdown-menuu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.banner {
  /*background: linear-gradient(179.07deg, #2a4445 4.57%, #284243 157.04%);*/
  background: linear-gradient(179.07deg, #6a9d33 4.57%, #5e7372 157.04%);
  color: var(--plainclr);
  min-height: 250px;
  display: flex;
  align-items: center;
}

.banner .left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.banner .left h1 {
  font-size: 2.8rem;
  font-weight: 600;
}

.banner .left p {
  padding-right: 5rem;
}

.banner .left .multi-btns {
  gap: 1rem;
  display: flex;
  align-items: center;
}

.banner .left .multi-btns .btn-theme-two {
  min-width: 200px;
}

.banner .left .multi-btns .btn-theme-two:hover {
  transform: translateY(-10px);
  background-color: transparent;
  border: 1px dashed var(--plainclr);
  color: var(--plainclr);
}

.banner .left .multi-btns .btn-theme-one {
  background-color: transparent;
  border: 1px dashed var(--plainclr);
  color: var(--plainclr);
  transition: all 0.4s linear;
  min-width: 200px;
}

.banner .left .multi-btns .btn-theme-one:hover {
  transform: translateY(-10px);
  background-color: var(--plainclr);
  border: 1px dashed var(--plainclr);
  color: var(--themeprimaryclr);
}

.banner .right-slider .carousel-item {
  min-height: 250px;
  /*padding-right: 10rem;*/
}

.banner .right-slider .carousel-item img {
  width: 340px;
  margin-left: auto;
  border-radius: 40px !important;
}

@media (max-width: 767px) {
  .banner .right-slider .carousel-item {
    min-height: 250px;
    padding-right: 0rem;
  }

  .banner .right-slider .carousel-item img {
    margin: auto;
    width: 280px;
  }
}

.about .left {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 1.6rem;
}

.about .left ul li {
  list-style-type: disc;
  line-height: 26px;
  margin-bottom: .6rem;
}

.about .left .details {
  color: var(--themeprimaryclr);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about .left p {
  color: var(--themeprimaryclr);
  margin-bottom: 0;
}

.about .left .btn-theme-one {
  background-color: var(--themesecondaryclr);
  background: var(--themesecondaryclr);
  min-width: 150px;
}

.about .left .btn-theme-one:hover {
  color: var(--plainclr);
  background: linear-gradient(179.07deg, #2389ff 4.57%, #155299 157.04%);
}

.about .flex-end-cs {
  display: flex;
  justify-content: flex-end;
}

.about .about-img {
  width: 450px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 90%;
}

.indurstries-serve {
  background: #eaf1ff;
  background-image: url("../images/bars.svg");
}

.indurstries-serve .left {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 2rem;
}

.indurstries-serve .left .details {
  color: var(--themeprimaryclr);
  font-size: 1.1rem;
  font-weight: 600;
}

.indurstries-serve .left p {
  color: var(--themeprimaryclr);
  margin-bottom: 0;
}

.indurstries-serve .left .side-bdr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-left: 0;
  width: 100%;
}

.indurstries-serve .left .side-bdr li {
  color: var(--themethirdclr);
  font-weight: 600;
  border-left: 4px solid var(--themethirdclr);
  padding-left: 1rem;
}

.indurstries-serve .industry-right {
  width: 420px;
}

@media (max-widh: 767px) {
  .indurstries-serve .industry-right {
    width: 350px;
  }
}

.ready-secure {
  background-color: #3980b8;
  background-image: url("../images/circular-lines.svg");
  color: var(--plainclr);
}

.ready-secure h3 {
  font-size: 1.6rem;
}

.ready-secure .justify-cs {
  justify-content: flex-end;
}

.testimonials .left {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.testimonials .card {
  border: 1px solid #efefef;
  box-shadow: 2px 2px 20px 0px rgba(217, 217, 217, 0.2509803922);
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
}

.testimonials .card .card-img-circular {
  position: relative;
}

.testimonials .card .card-img-circular .circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.testimonials .card .card-img-circular .quotes-img {
  display: flex;
  margin-top: 1rem;
  gap: 0.3rem;
}

.testimonials .card .card-img-circular .quotes-img img {
  width: 10px;
}

.testimonials .card .card-data {
  margin-top: 1rem;
}

.testimonials .card .card-data .card-title {
  color: var(--themethirdclr);
  font-weight: 600;
}

.testimonials .card .card-data p {
  color: #595959;
  margin-top: 1.2rem;
}

.testimonials .card .card-data .author-details {
  border-left: 2px solid #6cace4;
  padding-left: 1rem;
  margin-top: 2rem;
}

.testimonials .card .card-data .author-details h6 {
  color: var(--themeprimaryclr);
  font-weight: 600;
  font-size: 0.89rem;
  margin-bottom: 0.2rem;
}

.testimonials .card .card-data .author-details p {
  margin-top: 0.2rem;
  font-size: 0.89rem;
}

.testimonials .owl-nav {
  display: flex;
  justify-content: flex-end;
}

.testimonials .owl-nav button {
  background: none !important;
  border: 1px solid #2389ff !important;
  color: #2389ff;
  font-size: 2rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  transition: all 0.3s linear;
}

.testimonials .owl-nav button:hover {
  background: #2389ff !important;
}

.testimonials .owl-nav button:hover span {
  color: var(--plainclr);
}

.testimonials .owl-nav button span {
  font-size: 2rem;
  line-height: 26px;
  color: #2389ff;
}

.why-choose-us {
  background-color: #5e7372;
}

.why-choose-us .badge-blue-outline {
  color: var(--plainclr);
  border: 1px solid var(--plainclr);
  background-color: transparent;
}

.why-choose-us .left {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 2rem;
  padding-right: 3rem;
}

.why-choose-us .left .choose-img {
  width: 400px;
}

.why-choose-us .left .choose-img img {
  border-radius: 40px !important;
}

.why-choose-us .left .heading {
  color: var(--plainclr);
}

.why-choose-us .left .details {
  font-size: 1rem;
  font-weight: 600;
  /* text-align: justify; */
  color: var(--plainclr);
}

@media (max-width: 767px) {
  .why-choose-us .left {
    padding-right: 0;
  }
}

.why-choose-us .right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-choose-us .right .sub-heading {
  color: var(--plainclr);
}

.why-choose-us .right p {
  color: var(--plainclr);
  font-size: 0.8rem;
}

footer {
  padding: 3rem 0;
  background-color: var(--themeprimaryclr);
}

footer .bdr {
  border-right: 1px solid var(--plainclr);
}

footer .footer-logo {
  width: 150px;
  margin: auto;
}

footer .social-icons {
  display: flex;
  padding-left: 0;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

footer .social-icons li a {
  transition: all 0.3s linear;
  display: inline-block;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid var(--plainclr); */
}

footer .social-icons li a i {
  font-size: 1rem;
  line-height: 22px;
}

footer .social-icons li a.facebook {
  background-color: #1877F2;
  /* Facebook Blue */
  color: var(--plainclr);
}

footer .social-icons li a.insta {
  background: radial-gradient(circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285AEB 90%);
  /* Instagram gradient */
  color: var(--plainclr);
}

footer .social-icons li a.linkedin {
  background-color: #0A66C2;
  /* LinkedIn Blue */
  color: var(--plainclr);
}

footer .social-icons li a.youtube {
  background-color: #FF0000;
  /* YouTube Red */
  color: var(--plainclr);
}

footer .social-icons li a.twitter {
  background-color: #1DA1F2;
  /* Twitter Blue */
  color: var(--plainclr);
}





footer .social-icons li a:hover {
  transform: translatey(-10px);
}

footer a,
footer li,
footer h5 {
  color: var(--plainclr);
}

footer .same-pd {
  padding: 0 3rem;
}

footer ul {
  padding-left: 0;
}

footer ul li,
footer ul a {
  font-size: 0.9rem;
}

footer h5 {
  margin-bottom: 1.3rem;
}

footer ul.links-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

footer ul.links-data li a {
  transition: all 0.3s linear;
  display: inline-block;
}

footer ul.links-data li a:hover {
  transform: translateX(10px);
}

.inner-banner {
  height: 250px;
  color: var(--plainclr);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(179.07deg, #6a9d33 4.57%, #5e7372 157.04%);
}

.inner-banner h1 {
  font-size: 2.8rem;
  font-weight: 600;
}

.automation-solution {
  background: #f9f9f9;
}

.automation-solution .blured {
  filter: blur(1.5px);
}

.automation-solution .btn-theme-one {
  background-color: var(--themesecondaryclr);
  background: var(--themesecondaryclr);
  min-width: 150px;

}

.automation-solution .btn-theme-one:hover {
  color: var(--plainclr);
  background: linear-gradient(179.07deg, #2389ff 4.57%, #155299 157.04%);
}

.automation-solution .card {
  padding: 1.2rem;
  border: 1px solid var(--themeprimaryclr);
  transition: all 0.3s linear;
}

.automation-solution .card:hover {
  background-color: #2389ff;
  color: var(--plainclr);
  border: 1px solid #2389ff;
  transform: translateY(-10px);
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.automation-solution .card.fix-bg {
  background-color: #2389ff;
}

.automation-solution .card.fix-bg p,
.automation-solution .card:hover p {
  color: var(--plainclr);
}

.automation-solution .card .card-heading {
  color: #84ba48;
  font-weight: 600;
}

.automation-solution .card p {
  color: var(--themeprimaryclr);
  font-size: 0.89rem;
}

.mep-sol {
  background: #5e7372;
}

.case-study .card {
  padding: 0;
  border-radius: 0.8rem;
  overflow: hidden;
}

.case-study .card .card-img {
  height: 260px;
  border-radius: 0.8rem;
}

.case-study .card .card-img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.case-study .card .card-data {
  padding: 1.2rem;
}

.case-study .card .card-data p {
  color: #595959;
}

.case-study .owl-nav {
  display: flex !important;
  justify-content: flex-end;
}

.contact-form .bg-change-theme {
  background: #d0eec5;
  color: var(--darkclr);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.contact-form .bg-change-theme .details {
  padding-left: 0;
}

.contact-form .bg-change-theme .details li {
  margin-bottom: 1.2rem;
}

.contact-form .bg-change-theme .details li .icons {
  min-width: 40px;
  display: inline-block;
}

.contact-form .bg-change-theme .details li a {
  color: var(--darkclr);
}

.contact-form .bg-change-theme .details li a:hover {
  color: var(--themesecondaryclr);
}

.contact-form .form-fields {
  background-color: #fdfdfd;
  border-right: 5px solid #d0eec5;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.contact-form .form-fields .input-container {
  position: relative;
  top: 8px;
  margin-bottom: 25px;
}

.contact-form .form-fields input {
  width: 100%;
  height: 40px;
  font-size: 16px;
  transition: 0.6s;
  border: none;
  border-bottom: 1px solid var(--darkclr);
  background-color: transparent;
  color: var(--darkclr);
}

.contact-form .form-fields input::-moz-placeholder {
  color: var(--darkclr);
}

.contact-form .form-fields input::placeholder {
  color: var(--darkclr);
}

.contact-form .form-fields input:focus {
  outline: none;
  border-bottom: 1px solid var(--themeprimaryclr);
}

.contact-form .form-fields .contact_message {
  background-color: transparent;
  transition: 0.6s;
  border-radius: 0;
  border: 1px solid var(--darkclr);
  background-color: transparent;
  color: var(--darkclr);
}

.contact-form .form-fields .contact_message::-moz-placeholder {
  color: var(--darkclr);
}

.contact-form .form-fields .contact_message::placeholder {
  color: var(--darkclr);
}

.contact-form .form-fields .contact_message:focus {
  outline: none;
  border-bottom: 1px solid var(--themeprimaryclr);
  box-shadow: none;
}

.contact-form .btn-theme-two {
  color: var(--plainclr);
  background-color: var(--themesecondaryclr);
  transform: translateY(0px);
}

.contact-form .btn-theme-two:hover {
  color: var(--plainclr);
  background-color: var(--themeprimaryclr);
  transform: translateY(0px);
}

.contact-map {
  padding-top: 0;
}

.contact-map .embed-map-fixed {
  position: relative;
  text-align: right;
  width: 100%;
  height: 400px;
}

.contact-map .embed-map-fixed .embed-map-frame {
  width: 100% !important;
  height: 400px !important;
}

.free-quote-form .left-part,
.free-quote-form .right-part {
  position: sticky;
  top: 10%;
}

.free-quote-form .left-part {
  padding: 1rem;
  background-color: #d0eec5;
  border-left: 3px solid #658c4c;
  border-right: 3px solid #658c4c;
}

.free-quote-form .left-part .bootstrap-select .btn:hover,
.free-quote-form .left-part .bootstrap-select .btn.show,
.free-quote-form .left-part .bootstrap-select .btn.active {
  background-color: var(--plainclr) !important;
  background: var(--plainclr) !important;
}

.free-quote-form .left-part .bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
}

.free-quote-form .right-part {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.free-quote-form .right-part .related-field-box {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.free-quote-form .right-part .related-field-box .card .card-header {
  background-color: var(--themeprimaryclr);
  color: var(--plainclr);
  font-weight: 600;
  font-size: 1.1rem;
}

.free-quote-form .right-part .related-field-box .card .card-header .relatedicon {
  margin-right: 0.4rem;
  min-width: 20px;
  display: inline-block;
  font-size: 1rem;
}

.free-quote-form .right-part .related-field-box .card ul {
  padding-left: 0;
  margin-bottom: 0;
}

.free-quote-form .right-part .related-field-box .card ul li {
  margin-bottom: 1rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--themeprimaryclr);
}

.free-quote-form .right-part .related-field-box .card ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.free-quote-form .right-part .related-field-box .card ul li a {
  transition: all 0.3s ease;
  display: inline-block;
}

.free-quote-form .right-part .related-field-box .card ul li a:hover {
  color: #6e9aff;
  transform: scale(1.1);
}

.free-quote-form .btn-theme-two {
  background-color: var(--themesecondaryclr);
  color: var(--plainclr);
}

.free-quote-form .btn-theme-two:hover {
  color: var(--plainclr);
  background-color: var(--themeprimaryclr);
  transform: translateY(0px);
}

.same-list-details ul li {
  list-style-type: disc;
  margin-bottom: 0.8rem;
}

.same-list-details .right {
  min-width: 200px;
}

.common-img-sz {
  width: 350px;
  text-align: right;
  float: right;
  margin-left: 1rem;
}

.common-img-sz-home {
  width: 345px;
  text-align: right;
  float: right;
  margin-left: 1rem;
}

/* .our-partners img {
  width: 300px;
  height: 100px;
  animation: scroll 10s linear infinite;
}

.our-partners .slide-track {
  width: 100%;
  display: flex;
  gap: 2em;
  overflow: hidden;
}

.our-partners .slider {
  margin-top: 0px;
  padding: 0rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translatex(-1000%);
  }
} */


/* White gradient (was @mixin white-gradient) */
.white-gradient {
  background: linear-gradient(to right,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 100%);
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

/* Slider Styling */
.slider {
  /* background: white; */
  /* box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125); */
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider::before,
.slider::after {
  background: linear-gradient(to right,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slider .slide-track {
  animation: scroll 10s linear infinite;
  /* replaced $animationSpeed */
  display: flex;
  width: calc(250px * 14);
}

.slider .slide {
  height: 100px;
  width: 250px;
}
/*# sourceMappingURL=style.css.map */