/* Every Banner  */
.pbmit-title-bar-content {
  justify-content: center;
}
/* Every Banner  */

/* Enquiry Modal Styling  */
/* Modal styling */
.enq-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 1000;
}
.enq-modal.enq-hidden {
  visibility: hidden;
  opacity: 0;
}

.enq-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Modal content box */
.enq-content {
  position: relative;
  background: #fff;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 4;
  text-align: center;
}

/* Close button */
.enq-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

.enq-close-btn:hover {
  color: #ff0000;
}

/* Enquiry form styles */
.enq-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.enq-form-group {
  text-align: left;
}

.enq-label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.enq-input,
.enq-textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.enq-input:focus,
.enq-textarea:focus {
  outline: none;
  border-color: #28a745;
}

.enq-submit-btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.enq-submit-btn:hover {
  background-color: #0056b3;
}
/* Enquiry Modal Styling End */

/* Auto Modal Popup */
/* Modal container */
.auto-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal hidden by default */
.auto-modal.hidden {
  display: none;
}

/* Modal content */
.auto-modal-content {
  background: white;
  padding: 40px;
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
  text-align: center;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
}

/* Close button */
.auto-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

/* Dynamic content styling */
#modal-body img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

#modal-body h2 {
  margin: 10px 0;
  font-size: 24px;
}

#modal-body p {
  font-size: 16px;
  color: #555;
}

/* Auto Modal Popup */

/* Button  Start*/
.select-product-btn {
  margin: 10px 0;
  padding: 8px 20px;
  font-size: 14px;
  width: fit-content;
  background: linear-gradient(30deg, #16659f, #1781eb);
  color: #ffffff;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Button End */

/* CTA Styling  */

.cta {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}

.image-container {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 10px; /* Right bottom and left top rounded */
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  /* border-radius: 50px 0 0px 50px; Matches the parent container's radius */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
  z-index: 1; /* Ensure it covers the image but is behind the text */
}

.cta-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2; /* Higher than the overlay */
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 40px;
  color: white;
  font-weight: 600;
  padding: 0 20px;
  margin-bottom: 25px;
}

.cta-content .btn {
  margin-top: 20px;
  background-color: #f48120;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.custom-btn {
  display: inline-block; /* Makes the button inline and block-like */
  margin-top: 20px;
  background-color: #16659f; /* Primary blue color */
  color: white;
  padding: 12px 25px; /* Adjust padding for better appearance */
  text-decoration: none; /* Remove underline */
  border-radius: 25px; /* Rounded corners */
  font-size: 16px;
  font-weight: bold; /* Emphasize text */
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth transitions */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.custom-btn:hover {
  background-color: #16659f; /* Darker blue on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Slightly stronger shadow on hover */
}

.custom-btn:active {
  background-color: #16659f; /* Even darker blue when clicked */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Reset shadow on click */
}

.cta-content .btn:hover {
  background-color: #ee6e08;
}

/* CTA Styling End */

/* header navbar  */
header .site-navigation ul.navigation > li > a {
  color: #333 !important;
}

header .main-menu ul > li.dropdown > a:after {
  color: #333;
}

header .site-navigation ul.navigation > li > a:hover,
.site-navigation ul.navigation > li > a:hover:after {
  color: #333;
}
@media screen and (min-width: 1200px) {
  .cust-mobile-nav {
    display: none;
  }
  .nav-list-dropdown {
    max-height: 500px;
    overflow-y: auto;
  }
}
/* header navbar end  */

/* baner */
header .pbmit-slider-one .pbmit-slider-item {
  /* height: 100vh; */
}

header .bnr-p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 80px;
}

header .bnr-p-line {
  display: inline-block;
  align-items: center;
  width: 80px;
  height: 2px;
  background-color: #fff;
}
/* baner */

/* Footer Start  */

footer {
  position: relative;
  z-index: 1;
  background-color: #16659f;
}
.pattern_one {
  position: absolute;
  height: 300px;
  max-width: 100vw;
  z-index: -1;
  opacity: 0.04;
  left: 0;
  bottom: 30%;
}
.pattern_two {
  position: absolute;
  height: 300px;
  z-index: -1;
  opacity: 0.04;
  right: 10%;
  max-width: 100vw;
}
#home-products .pattern_one,
#home-products .pattern_two,
#home-products .pattern_one,
#home-products .pattern_two {
  height: 500px;
  z-index: 1;
  top: -40px;
  opacity: 0.04;
}
footer p,
footer li,
footer h5,
footer a,
footer i {
  color: #fff;
}
footer ul {
  margin-top: 20px;
}
footer ul li {
  margin-bottom: 5px;
}
footer .row:nth-child(1) {
  margin-bottom: 50px;
}
.footer-products ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
}
.footer-products ul li {
  border-right: 1px solid #fff;
  padding: 0 12px;
}
.certifications-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}
.certifications-wrapper img {
  height: 80px;
}

/* Footer end  */

/* ======== Sticky Icons Css ======== */

.social-icons-container {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 9999;
}
@media screen and (max-width: 1024px) {
  .social-icons-container {
    display: none;
  }
}
.social-icons-container a {
  text-decoration: none;
  background: linear-gradient(30deg, #16659f, #1781eb);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 12px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.social-icons-container i {
  font-size: 20px;
}

.social-icons-container img {
  height: 20px;
  width: auto;
}

/* ======== Sticky Icons Css End ======== */

/* ======== Sticky Form Css  ======== */
.sticky-form-container {
  position: fixed;
  bottom: 10%;
  right: -100%; /* Start off-screen */
  width: 300px;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
  border-radius: 8px;
  padding: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 9998;
}

.sticky-form-container.active {
  right: 70px; /* Slide in */
}

.sticky-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-form label {
  font-size: 14px;
  color: #333;
}

.sticky-form input,
.sticky-form textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.sticky-form button {
  background: linear-gradient(30deg, #16659f, #1781eb);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.social-icons-container img.sticky-close-icon {
  display: none; /* Hide close icon initially */
}

.social-icons-container img.sticky-close-icon.active {
  display: block;
}

.social-icons-container img.sticky-form-icon.active {
  display: none; /* Hide form icon when close icon is active */
}

/* ======== Sticky Form Css End ======== */

/* ======== Products Card Css Start ======== */
.cus-card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.cus-card-container h3 {
  line-height: 30px;
  font-size: 18px;
}

.cus-card {
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cus-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.cus-card-content {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cus-card-id {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0px;
}

.cus-card-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.cus-card-button {
  background: linear-gradient(30deg, #5e9fce, #16659f);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}
.product-card .sub-category {
  margin-bottom: 10px !important;
}
.blue-clr {
  color: #16659f;
}

.bg-color-white {
  background-color: #fff !important;
}

#home-purpose img {
  height: 80px;
}

#home-purpose .pbmit-ihbox-style-10 .pbmit-ihbox-contents {
  align-items: center;
}

/* ===============purpose end ================= */

/* ===============Home Banner ================= */

.banner-video-container {
  width: 100vw;
  padding-top: 100px;
}
@media screen and (max-width: 1200px) {
  .banner-video-container {
    padding-top: 130px;
  }
}
@media screen and (max-width: 520px) {
  .banner-video-container {
    padding-top: 160px;
  }
}

.banner-video-box {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .banner-video-container {
    height: 760px;
    width: 100%;
    overflow: hidden;
  }
  .banner-video-box {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* =============Home Aboout  Start=============== */
#home-about h3 {
  font-size: 56px;
}

#home-about .cus-stats img {
  height: 100px;
  width: auto;
}

/* =============Home Aboout End =============== */

/* Home Services  */
#home-products .pbminfotech-service-content {
  background-color: #fff;
  border-radius: 18px;
  overflow: hidden;
}
#home-products .pbmit-service-style-1 .pbmit-featured-img-wrapper {
  padding-right: 0px;
  margin-right: 0px;
  border: none;
}
#home-products .pbmit-service-style-1 .pbminfotech-box-content {
  padding: 20px;
}

.read-more {
  color: blue;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  display: inline-block;
  /* margin-top: 5px; */
}

/* Home Services  */

/* =============stats styling =============== */
.cus-stats {
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cus-icon img {
  width: 60px;
  height: 60px;
}

.cus-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.cus-description {
  font-size: 0.95rem;
  color: #c1c1c1;
  margin-bottom: 15px;
}

/* =============stats styling end ===============  */

/* Industries Start  */

#home-industries .pbmit-featured-img-wrapper {
  border-radius: 10px;
}
.pbminfotech-service-content.cus {
  position: relative;
}

.pbminfotech-service-content.cus .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgb(0, 0, 0));
}

.pbminfotech-service-content.cus .pbmit-service-title {
  position: absolute;
  bottom: 8%;
  left: 7%;
  z-index: 1;
}

.pbmit-service-style-1 .pbmit-featured-wrapper img {
  transform: scale(1) !important;
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.pbmit-service-style-1:hover .pbmit-featured-wrapper img {
  transform: scale(1) !important;
}

/* Industries End  */

/* Home Clients */

#home-clients .pbmit-client-style-1 .pbmit-client-content,
#home-clients2 .pbmit-client-style-1 .pbmit-client-content {
  border-radius: 10px !important;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 20px;
}
@media screen and (max-width: 620px) {
  #home-clients .pbmit-client-style-1 .pbmit-client-content {
    scale: 0.7;
    margin-top: -45px;
  }
}
#home-clients img,
#home-clients2 img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
/* Home Clients End */

/* Why choose us  */
#home-whychooseus
  .pbmit-element-card-box-style-1
  .pbmit-content-box
  .pin-spacer:nth-child(3n + 1)
  .pbmit-card-box-wrapper-inner,
.pbmit-element-card-box-style-1
  .pbmit-content-box
  .pbmit-card-box-wrapper-inner:nth-child(3n + 1) {
  background-color: #16659f;
}
/* Why choose us  */

/* home industries  */

#home-industries .pbmit-service-style-1 .pbmit-featured-img-wrapper {
  padding-right: 0px !important;
}
#home-industries h2,
#home-industries h4 {
  color: #111112 !important;
}
#home-industries h4 {
  background-color: #f5f2f0 !important;
}
#home-industries .swiper-button-next:after,
#home-industries .swiper-button-prev:after {
  color: #111112;
}
/* home industries end */

/* ======== home-testimonial ========== */
#home-testimonial {
}
/* ======== home-testimonial ========== */

/* ============================ About ======================== */

/* About purpose  */
#about-purpose img {
  height: 80px;
}

#about-purpose .pbmit-ihbox-style-10 .pbmit-ihbox-contents {
  align-items: center;
}
#about-purpose .pbmit-ihbox-style-10 .pbmit-ihbox-contents {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
#about-purpose .container {
  border-top: 1px solid #e5e5e5;
  padding-top: 80px;
}
/* About purpose End */

/* About Values  */
#about-values .pbmit-element-split-slide-style-1 .pbmit-split-slide-title h4 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#about-values
  .pbmit-element-split-slide-style-1
  .pbmit-contentbox
  .pbmit-split-slide-number
  h4 {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}
/* About Values End */

/* About What we do  */
.cus-dot {
  position: relative;
}
.cus-dot::after {
  content: "";
  position: absolute;
  top: 13px;
  left: -15px;
  width: 7px;
  height: 7px;
  border-radius: 50px;
  background-color: var(--pbmit-global-color);
  -khtml-transform: translateX(0%) translateY(-50%);
  -moz-transform: translateX(0%) translateY(-50%);
  -ms-transform: translateX(0%) translateY(-50%);
  -o-transform: translateX(0%) translateY(-50%);
  transform: translateX(0%) translateY(-50%);
}

#about-whatwedo .pbmit-subheading,
.pbmit-heading-subheading {
  margin-bottom: 20px;
}
/* About What we do End  */

/* About Banner   */
#about-banner .pbmit-title-bar-content {
  justify-content: center !important;
}
#about-whatwedo .about-four-rightbox {
  margin-top: 50px;
}
/* About Banner   */

/* About Founder  */
#about-founder .about-us-one-content {
  padding-left: 0px;
}
#about-founder img {
  max-height: 550px;
  height: 100%;
  object-fit: cover;
  object-position: top;
  width: 90%;
}
/* About Founder  */

/* Contact Page  */
#contact-wrapper .contact-us-left-inner {
  background-color: #16659f;
}
/* Contact Page  */

/* Services Page  */
.service-section.odd .who-we-are-five-col2 {
  display: flex;
  justify-content: flex-start;
}
.service-section.odd .who-we-are-five-leftbox {
  padding: 0px 0px 35px 160px;
}

.service-section .pbmit-heading-subheading .pbmit-title {
  font-size: 42px;
}

.service-section img {
  border-radius: 14px;
}

.service-section .who-we-are-five-leftbox {
  padding: 20px 120px 0px 0px;
}
.who-we-are-five-leftbox.cust-why-choose-for-right {
  padding: 20px 0px 0px 120px;
}
/* Services Page End  */

/* Blogs Page  */
#blog-container .pbmit-svg-btn a {
  background: linear-gradient(30deg, #5e9fce, #16659f);
}
#blog-container .pbmit-featured-img-wrapper {
  border-radius: 14px;
}

/* Blogs Page  */

/* Industries Page  */
#industries .pbmit-service-style-1 .pbmit-featured-img-wrapper {
  position: relative;
  overflow: hidden;
  padding-right: 35px;
  margin-right: 5px;
  border-right: none;
}
#industries .row {
  row-gap: 35px;
}
/* Industries Page  */

/* Home Contact  */
.contact-detail {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-detail i {
  font-size: 40px;
}
/* Home About  */
/* Css Added By Shoaib */

.cust-sh-title {
  font-weight: 700;
  font-size: 60px;
  color: #000;
}
.cust-sh-subtitle {
  font-weight: 700;
  font-size: 24px;
  color: #236fa7;
}

.col-md-25 {
  width: 100%;
}
.col-md-25 .justify-content-center {
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
}
.col-md-25 .cust-state-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.col-md-25 .cust-state-content h3 {
  font-size: 66px;
}
.col-md-25 .cust-state-content p {
  font-size: 18px;
}

.cus-stats .cus-icon .img-fluid {
  width: 80px !important;
  height: 80px !important;
  max-height: 80px;
  max-width: 80px;
}
.cust-img-container .about-three_img1 {
  /* width: 100%; */
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 620px) {
  .col-md-25 {
    width: 100% !important;
  }
}
@media screen and (max-width: 1080px) {
  .col-md-25 {
    width: 50%;
  }
}
@media screen and (min-width: 1080px) {
  .col-md-25 {
    width: 20%;
  }
}
/* ----------- */
.product-grid {
  display: grid;
  /* padding: 16px; */
  gap: 60px;
  row-gap: 100px;
  grid-template-columns: 1fr;
}

.product-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.product-card .product-info {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  align-items: start;
}
.product-card .product-name {
  display: flex;
  flex-direction: column;
}
.product-card .product-name p {
  margin-bottom: 0px;
}
.product-card .product-name h3 {
  margin-bottom: 0px;
  line-height: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.product-card-btn {
  display: flex;
  justify-content: space-between;
  padding: 0 16px 16px 16px;
}
.product-card .product-image {
  max-height: 180px;
  overflow: hidden;
}
.product-card .product-image:hover img {
  transform: scale(1.05);
  transition: transform 0.5s ease;
}
.product-card img {
  max-width: 100%;
  border-radius: 8px;
  transition: transform 0.8s ease;
}

.product-card h3 {
  font-size: 18px;
  color: #333;
}
.product-card p {
  font-size: 14px;
  color: #333;
}

.product-card button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.product-card button:hover {
  background-color: #0056b3;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Home - Our Services */

.cust-why-choose-blend {
  position: absolute;
  height: 80px;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    #16659f 0%,
    #16659fbf 30%,
    #16659f8f 60%,
    transparent 100%
  );
}

@media screen and (min-width: 990px) {
  .cust-why-choose-blend {
    height: 100%;
    width: 200px;
    background: linear-gradient(
      90deg,
      #16659f 0%,
      #16659fbf 30%,
      #16659f8f 60%,
      transparent 100%
    );
  }
}

/* -----Our principles------ */
.cust-prciple-wrapper {
  gap: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  margin-top: 100px !important;
}
.cust-prciple-wrapper article {
  width: 160px;
  max-width: 160px;
  height: 160px;
  max-height: 160px;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 620px) {
  .cust-prciple-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .cust-prciple-wrapper {
    grid-template-columns: repeat(4, 1fr);
    max-width: fit-content;
    margin: 0 auto !important;
  }
}
@media screen and (min-width: 1400px) {
  .cust-prciple-wrapper {
    grid-template-columns: repeat(8, 1fr);
    max-width: fit-content;
    margin: 0 auto !important;
  }
  .cust-prciple-wrapper article {
    width: 140px;
    max-width: 140px;
    height: 140px;
    max-height: 140px;
  }
}
@media screen and (min-width: 1560px) {
  .cust-prciple-wrapper article {
    width: 160px;
    max-width: 160px;
    height: 160px;
    max-height: 160px;
  }
}
.pattern_two-principles,
.pattern_one-principles {
  position: absolute;
  max-width: 400px;
  opacity: 0.2;
  max-height: 400px;
}
.pattern_one-principles {
  top: 0;
  right: 0;
}
.pattern_two-principles {
  bottom: 0;
  left: 0;
}
.cust-prciple-wrapper .pbmit-client-content {
  border: none;
}
.cust-prciple-wrapper article:hover {
  scale: 1.02;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}
.cust-industry-wrapper article {
  max-width: 500px;
}

@media screen and (max-width: 1200px) {
  .contacts-details-wrapper {
    text-align: center;
  }
}

@media screen and (max-width: 1024px) {
  .form-control {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 620px) {
  header .pbmit-slider-one .pbmit-slider-item {
    max-height: 70vh !important;
  }
  .pbmit-slider-one .min-vh-100 {
    max-height: 70vh !important;
  }
  header .bnr-p {
    margin-left: 0px !important;
  }
  .pbmit-slider-one .pbmit-slider-content {
    text-align: left;
  }
  .cust-sh-title {
    font-size: 44px;
  }
  .cust-sh-subtitle {
    font-size: 18px;
  }
  .section-lgx {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .pbmit-heading-subheading .pbmit-title {
    font-size: 34px;
  }
  .product-grid {
    row-gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .mobile-hide {
    display: none;
  }
  .cust-idustries-area {
    padding: 0px !important;
  }
}
@media screen and (min-width: 620px) {
  .pbmit-slider-one .min-vh-100 {
    max-height: 100vh !important;
  }
}
/* Term and Conditions */

.side-gap-10 {
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .side-gap-10 {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .cust-contact-area {
    gap: 30px;
  }
}

/* Career Page */

.cus-light-section-container {
  background: var(--pbmit-white-color);
}

.cust-career-left-part .cust-img-container {
  height: 300px;
  width: 400px;
  max-width: 100%;
  overflow: hidden;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.cust-career-left-part .cust-feature-container {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cust-subtitle-light {
  background: var(--custom-orange-light) !important;
  color: #fff !important;
}
.cust-career-left-part .cust-img-container {
  height: 300px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
@media screen and (max-width: 1024px) {
  .cust-career-left-part .cust-img-container {
    width: 500px;
    max-width: 100%;
  }
}
.cust-career-left-part .cust-feature-container {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features-box {
  display: flex;
  gap: 20px;
}
.features-box .features-box-img {
  background: #4b90c23b;
  padding: 5px;
  max-height: fit-content;
  border-radius: 100%;
  min-width: 100px;
  min-height: 100px;
  max-width: 100px;
  max-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.features-box .features-box-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}
.features-box .features-box-title {
  color: var(--custom-orange-dark);
  font-weight: 600;
}
.features-box .features-box-info {
  margin: 0;
  font-size: 12px;
  color: #666666;
  max-width: 80%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* About Page */

/* Splide Custom Classes */
.cust-slide-container {
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.cust-slide-list {
  display: flex;
  height: 100%;
}

.cust-slide-item {
  background: #4b90c23b;
  max-height: fit-content;
  overflow: hidden;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cust-slide-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cust-splide__track {
  height: 100%;
}
.my-slider-progress {
  background: #ccc;
}

.my-slider-progress-bar {
  background: greenyellow;
  height: 2px;
  transition: width 400ms ease;
  width: 0;
}
.cust-slide-container .splide__pagination__page {
  background-color: #fff;
}
.cust-slide-container .splide__pagination__page.is-active {
  background: #2b76ad;
  scale: 1.2;
  border: 1px solid #fff;
}
.cust-right-main-container {
  min-height: 220px;
  max-height: 220px;
}
@media screen and (min-width: 1024px) {
  .cust-right-main-container {
    min-height: 360px;
    max-height: 380px;
    margin-top: 60px;
  }
}

/* Service Page Responsiveness */
@media screen and (max-width: 1560px) {
  .cust-x-space {
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .reverse-order .who-we-are-five-col2 {
    order: 1;
  }
  .reverse-order .who-we-are-five-col1 {
    order: 2;
  }
  .cust-srvice-box {
    gap: 60px;
  }
  .service-section .who-we-are-five-leftbox {
    padding: 20px 120px 0px 0px !important;
  }
  .who-we-are-five-leftbox.cust-why-choose-for-right {
    padding: 20px 0px 0px 120px !important;
  }
}

@media screen and (max-width: 620px) {
  .service-section .who-we-are-five-leftbox {
    padding: 20px 0px 0px 0px !important;
  }
  .who-we-are-five-leftbox.cust-why-choose-for-right {
    padding: 20px 0px 0px 0px !important;
  }
  .cust-x-space {
    padding-right: 10px;
    padding-left: 10px;
  }
  .section-mdt {
    padding-top: 60px;
  }
}

/* Industries page */

/* Flip Card Hover Effect */

.flip-card {
  background: #fff;
  width: 100%;
  height: 350px;
  perspective: 1000px;
  border: 1px solid #fafafa;
  margin: 0 auto;
}
@media screen and (min-width: 520px) {
  .flip-card {
    width: 400px;
  }
}
.flip-card .flip-card-front p {
  color: #000;
  font-weight: 500;
  font-size: 18px;
  margin-top: 10px;
}
.flip-card .flip-card-front img {
  border-radius: 10px;
  width: 100%;
  height: 85%;
  object-fit: cover;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
}

.flip-card-front {
  background-color: #fff;
  color: black;
  border-radius: 10px;
}

.flip-card-back {
  background-color: #d3edff;
  color: white;
  border-radius: 10px;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.flip-card-back p {
  color: #000;
}
.flip-card-back a {
  padding: 5px 15px;
  border-radius: 5px;
  background-color: #16659f;
  color: white;
  text-decoration: none;
}
.flip-card-back a:hover {
  background-color: #08395c;
  color: white;
}

/* responsiveness */

@media screen and (max-width: 1280px) {
  .mobile-hide {
    display: none !important;
  }
}

body {
  --sb-track-color: #dbf4ff;
  --sb-thumb-color: #4d91c3;
  --sb-size: 7px;
}

body::-webkit-scrollbar,
.nav-list-dropdown::-webkit-scrollbar {
  width: var(--sb-size);
}

body::-webkit-scrollbar-track,
.nav-list-dropdown::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 2px;
}

body::-webkit-scrollbar-thumb,
.nav-list-dropdown::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 2px;
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}

.left-radius {
  border-radius: 25px 0 0 25px;
  overflow: hidden;
}
.right-radius {
  border-radius: 0 25px 25px 0;
  overflow: hidden;
}
.cust-vision-box:hover {
  box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.stats-area {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  position: relative;
}

.stats-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Our Services */

@media screen and (min-width: 992px) {
  .pbmit-card-box-wrapper-inner {
    max-width: 90%;
    margin: 0 auto;
  }
}

/* Sustainability */
.social-impact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.text-center {
  text-align: center;
}

.text-18 {
  font-size: 18px;
}

.text-40 {
  font-size: 40px;
  font-weight: medium;
  margin-top: 8px;
}

.card-container {
  display: flex;
  width: 100%;
  gap: 10px;
}

.card {
  height: 350px;
  background-color: rgba(0, 0, 0, 0.5);
  flex: 1;
  border-radius: 20px;
  transition: flex 0.3s ease-in-out, background 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.card:hover {
  flex: 2;
  background: rgba(0, 0, 0, 0.5);
}

.card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: white;
  transition: opacity 0.3s;
  z-index: 2;
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  line-height: 28px;
}

@media screen and (min-width: 768px) {
  .card-description {
    font-size: 0.875rem;
    opacity: 0;

    transform: translateY(30px);
    transition: opacity 500ms ease-in-out 500ms,
      transform 0.5s ease-in-out 500ms;
  }

  .card:hover .card-description {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive Design for screens below 768px */
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    height: auto;
    flex: none;
  }

  .card img {
    height: 200px;
  }

  .card-content {
    padding: 0.8rem;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-description {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 1200px) {
  .nav-service-dropdown ul,
  .nav-service-dropdown .righticon {
    display: none;
  }
  .order-reversed {
    flex-direction: column-reverse;
  }
  .mob-hide {
    display: none;
  }
  #about-whatwedo .about-four-rightbox,
  .pbminfotech-ele-ptable-style-1 {
    margin-top: 0;
  }
  .about-four-rightbox,
  .about-four-rightbox .pbmit-desc {
    padding-top: 0;
  }
}
/* .trusted-client {
  width: 200px !important;
  margin: 0 auto !important;
} */
