/*--  Home Page Banner Start ---*/
#BannerWrap {
  width: 100%;
  padding-top: 60px;
}

.BannerWrapTop {
  padding: 80px 0;
}

.BannerContent h4 {
  text-transform: uppercase;
  font-size: 20px;
}

.BannerContent h1 {
  margin-bottom: 10px;
}

.BannerContent p {
  padding-left: 100px;
  color: #000;
  font-weight: 600;
  font-size: 22px;
  font-family: "Libre Franklin", sans-serif;
  max-width: 950px;
}

.BannerWrapBottom {
  width: 100%;
  padding: 0 60px;
  position: relative;
}

.BannerWrapBottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exploreMoreWrap {
  position: absolute;
  right: 171px;
  top: -114px;
  background: #F4F4F4;
  border-radius: 50%;
  padding: 10px;
}

.exploreMoreWrapRed {
  background: #A62139;
  border-radius: 50%;
  padding: 20px;
}

.exploreMoreyellow {
  width: 64px;
  height: 64px;
  background: #FFC72D;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exploreMoreyellow img {
  width: 30px;
  height: 30px;
  margin: auto;
}

/*-- animation --*/

.circle {
  position: relative;
  width: 155px;
  height: 155px;
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  justify-content: center;
}


.text {
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: consolas;
  color: #fff;
  font-size: 15px;
  animation: textRotation 8s linear infinite;
}

@keyframes textRotation {
  to {
    transform: rotate(360deg);
  }
}

.text span {
  position: absolute;
  left: 50%;
  font-size: 1.1em;
  transform-origin: 0 80px;
}

/*-- animation --*/

/*--  Home Page Banner End ---*/

/*--  Home Page Abour start ---*/

.HomeAboutInner {
  display: flex;
  column-gap: 100px;
  position: relative;
}

.HomeAboutInnerLeft img {
  border-radius: 10px;
}

.HomeAboutInnerRight {
  width: 550px;
}

.homeaboutimage2 {
  position: absolute;
  right: 0;
  bottom: -140px;
  max-width: 21.5%;
}

.homeaboutimage2 img {
  border-radius: 10px;
}

/*--  Home Page Abour End ---*/

/*--  Home Page Service start ---*/

#HomeServive {
  background: #F8F8F8;
}

.serviveHead p {
  max-width: 1000px;
}

.serviveWrap {
  margin-top: 60px;
}

.servivebox {
  margin-bottom: 5px;
}

.serviveboxinner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 60px 40px;
  transition: all .3s ease-in-out;
}

.serviveboxhead {
  width: 220px;
  display: flex;
  column-gap: 15px;
}

.serviveboxhead span {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #575757;
}

.serviveboxhead h4 {
  margin-bottom: 0;
}
.serviveboxhead h3{
  font-size: 26px;
    color: #000000;
    font-weight: 600;
    line-height: 1.1;
}

.serviveboxcontent {
  width: 460px;
}

.servivebox:hover .serviveboxinner {
  padding: 85px 40px;
  transition: all .3s ease-in-out;
  background: rgba(0, 0, 0, 0.25);
}

.servivebox:hover h4,.servivebox:hover h3,
.servivebox:hover p,
.servivebox:hover a,
.servivebox:hover .serviveboxhead span {
  color: #fff;
}

.serviveboxlink a {
  color: #000;
}

/*--  Home Page Service End ---*/

/*--  Home Page marquee start ---*/

#section1-marquee {
  background: #A62139;
  padding: 20px 0;
}


.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

.marquee-content span {
  display: inline-block;
  margin-right: 50px;
  font-weight: bold;
  font-size: 1.5rem;
  vertical-align: middle;
}

/* Duplicate content for seamless loop */
.marquee-content span:last-child {
  margin-right: 0;
}

.marquee-content span {
  color: #fff;
}


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

  100% {
    transform: translateX(-50%);
  }
}

/*--  Home Page marquee end ---*/

/*--  Home Page casetudy start ---*/

#casestudy {
  padding-bottom: 10px;
}

.casestudyhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.casestudylistwrap {
  margin-top: 30px;
}

.casestudylistImage {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.casestudylistImage:after {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: '';
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ab2c43+1,ab2c43+1,ab2c43+100&0+1,1+99 */
  background: linear-gradient(to bottom, rgba(171, 44, 67, 0) 1%, rgba(171, 44, 67, 1) 99%, rgba(171, 44, 67, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

.casestudylistImage img {
  width: 100%;
}

.casestudylistwrap {
  display: flex;
  flex-flow: row wrap;
  column-gap: 15px;
}

.casestudylist {
  width: calc(33.33% - 10px);
}

.casestudylistcontent {
  width: 80%;
  background: #fff;
  padding: 20px;
  position: relative;
  top: -50px;
  margin: auto;
  padding-right: 100px;
  min-height: 110px;
  display: flex;
  align-items: center;
  transition: all .3s ease-in-out;
}

.casestudylistcontent h5 {
  margin-bottom: 0;
}

.casestudylistcontent h3 {
  margin-bottom: 0;
  font-size: 20px;
    color: #000000;
    font-weight: 600;
    line-height: 1.1;
}

.casestudylistcontent:after {
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ab2c43+1,ab2c43+1,ffc72d+100 */
  background: linear-gradient(to right, rgba(171, 44, 67, 1) 1%, rgba(171, 44, 67, 1) 1%, rgba(255, 199, 45, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

  content: '';
}

.casestudylistcontent a {
  background: #A62139;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  position: absolute;
  right: 20px;
  top: 30px;
  padding: 3px;
}

.casestudylistcontent:hover {
  top: -80px;
  transition: all .3s ease-in-out;
}

.casestudylistwrap .casestudylist:last-child {
  display: none;
}

/*--  Home Page casetudy end ---*/

/*--  Home Page Logos start ---*/

.logosInner {
  display: flex;
  flex-flow: row wrap;
}

.logosbox {
  width: 20%;
  /*display: flex;*/
  justify-content: center;
  align-items: center;
  height: 100%;
  border: 1px solid #E3E3E3;
  text-align: center;
  padding: 6px 0;
}

/*--  Home Page Logos end ---*/

/*--  Home Page Big CTA start ---*/

#BigCTA {
  width: 100%;
  height: 670px;
  background-position: right center !important;
  background-size: cover !important;
}

#BigCTA .container {
  position: relative;
  height: 100%;
}

.BigCTAcontent {
  width: 685px;
  padding: 40px;
  background: rgba(166, 33, 57, 0.95);
  position: absolute;
  bottom: -60px;
  left: 0;
}

.BigCTAcontent h3 {
  color: #fff;
}

/*--  Home Page Big CTA End ---*/

/*--  Home Page difference start ---*/

#difference {
  padding-top: 140px;
}

.differencehead {
  display: flex;
  justify-content: space-between;
}

.differenceheadRight {
  width: 650px;
}

.differenceSlider {
  width: 100%;
  display: flex;
  justify-content: right;
  margin-top: 30px;
}

.differenceSliderInner {
  width: 88%;

}

.sliderlist {
  background: #F0F0F0;
  border-radius: 10px;
  padding: 50px;
  text-align: center;
  min-height: 405px;
}

.sliderlist img {
  width: 77px !important;

  margin: auto;
  margin-bottom: 15px;
}

.sliderlist a {
  color: #A62139;
  font-weight: 500;
  font-family: "Libre Franklin", sans-serif;
}

#difference .owl-theme .owl-nav {
  position: absolute;
  left: -80px;
  top: 50%;
  width: 56px;
  transform: translateY(-50%);
}

.owl-prev {
  width: 56px;
  height: 56px;
  border-radius: 50% !important;
  background: #A62139 !important;
  color: #fff;
}

.owl-next {
  width: 56px;
  height: 56px;
  border-radius: 50% !important;
  background: #A62139 !important;
  color: #fff;
}

#difference .owl-theme .owl-nav span {
  color: #fff;
  font-size: 20px;
}

/*--  Home Page difference end ---*/

/*--  Home Page CTA start ---*/

#ctawrap {
  background: #A62139;
}

.ctawrapInner {
  text-align: center;
}

#ctawrap h2,
#ctawrap p {
  color: #fff;
}

#ctawrap .btnwrap {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}

/*--  Home Page CTA end ---*/

/*--  Home Page Testimonials start ---*/

.TestimonialsSlider {
  margin-top: 30px;
}


.Testimonialbox {
  border: 1px solid #C9C9C9;
  padding: 20px;
  padding-top: 100px;
  border-radius: 10px;
  min-height: 370px;
}

.stars {
  display: flex;
  column-gap: 5px;
  margin-bottom: 15px;
}

.stars img {
  width: 15px !important;
  height: 15px;
}

.TestimonialInfoLeft {
  position: relative;
}

.TestimonialInfo {
  background: #A62139;
  border-radius: 10px;
  display: flex;
  padding: 20px;
  position: absolute;
  top: -40px;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  column-gap: 10px;
}

.TestimonialInfoLeft {
  width: 130px;
}

.Testimonialimgwrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}

.Testimonialcomawrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FFC72D;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 10px;
  top: 0;
}

.Testimonialcomawrap img {
  width: 30px !important;
  height: 30px;
}

#Testimonials .owl-carousel .owl-stage-outer {
  padding-top: 46px;
}

.TestimonialInfoRight span {
  display: block;
}

.TestimonialInfoRight span.name {
  font-family: "Libre Franklin", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.TestimonialInfoRight span.designation {
  font-family: "Libre Franklin", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.owl-dots button.owl-dot.active span {
  background: #A62139 !important;
}

/*--  Home Page Testimonials end ---*/

/*--  Home Page Get in touch start ---*/

#getintouch {
  background: #A62139;
}

.getintouchInner {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.getintouchInnerLeft {
  width: 45%;
}

#getintouch h2 {
  color: #fff;
}

#getintouch h6 {
  color: #FFC72D;
}

.certificatewrap {
  margin-top: 50px;
}


/* 19-11-2025 css start */

.getintouchInnerRight {
  width: 50%;
  background: #FFBF10;
  min-height: 650px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-sizing: border-box;
  padding: 30px 30px;
  box-sizing: border-box;
}

#getintouch .getintouchInnerRight h2 {
  color: #1A1A1A;
}

.getintouchInnerRight h4 {
  color: #1A1A1A;
}

.getintouchInnerRight .gravifyFrm img {
  width: auto;
}


.faqInner {
  flex-wrap: wrap;
  justify-content: space-between;
}

.faqInnerLeft {
  width: 45%;
}

.faqInnerLeft img {
  max-width: 100%;
  border-radius: 20px;
  margin-top: 20px;
}

.faqInnerRight {
  width: 45%;
}

.dFlex {
  display: flex;
}


/* 19-11-2025 css start */


/*--  Home Page Get in touch end ---*/


/*====== Accordion css start ======*/
.my-accordion {
  margin: auto;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #D9D9D9;
}

.accordion-header {
  padding: 26px 0px;
  cursor: pointer;
  position: relative;
  padding-right: 40px;
}

.accordion-header h3 {
  font-weight: 600;
  color: #313131;
  font-size: 18px;
  margin: 0;
}

.accordion-item.active .accordion-header::after {
  content: "";
  position: absolute;
  opacity: 0;
}

.accordion-item .accordion-header::before {
  content: "";
  position: absolute;
  right: 12px;
  width: 20px;
  border-top: 1px solid #000;
  top: 50%;
  transform: translateY(-50%);
}

.accordion-item .accordion-header::after {
  content: "";
  position: absolute;
  right: 22px;
  height: 20px;
  border-left: 1px solid #000;
  top: 50%;
  transform: translateY(-50%);
}

.accordion-content {
  display: none;
  padding: 15px 0;
  background: #fff;
  color: #333;
  padding-top: 0;
  box-sizing: border-box;
}

.accordion-item.active .accordion-content {
  display: block;
}

/*.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 1000px; 
    transition: max-height 0.5s ease-in;
}*/

/*====== Accordion css end ======*/


/*========== Footer css start ==========*/

.FooterOutrWrp {
  background: #121212;
  background: linear-gradient(90deg, rgba(18, 18, 18, 1) 0%, rgba(18, 18, 18, 1) 60%, rgba(166, 33, 57, 1) 60%, rgba(166, 33, 57, 1) 100%);
}

.footerInr {
  flex-wrap: wrap;
  max-width: 1920px;
  margin: auto;
  position: relative;
}


.footerLeft {
  background: #121212;
  width: 70%;
  position: relative;
  padding-left: calc(((100% - 1460px) / 2) + .75rem);
}

.footerRight {
  background: #A62139;
  width: 30%;
  position: relative;
}

.ftrRightCnt {
  padding: 55px 55px;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.circleInTxt {
  height: 215px;
  width: 215px;

}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 15px;
  box-sizing: border-box;
  padding-bottom: 20px;
  position: relative;
  /*padding-left: calc(((100% - 880px) / 2) + .75rem);   */
  padding-left: 0;
}

.footer-top::after {
  position: absolute;
  height: 1px;
  width: 10000px;
  content: '';
  background: #333;
  bottom: 0;
  right: 0;
}

.copyRightRow::after {
  position: absolute;
  height: 1px;
  width: 10000px;
  content: '';
  background: #333;
  bottom: 0;
  right: 0;
  top: 0;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 10px 0;
}

.footer-info .ftrIcn {
  background: #fdd835;
  border-radius: 50%;
  height: 53px;
  width: 53px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-info span {
  color: #EBEBEB;
  display: block;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}

.footer-info a {
  color: #EBEBEB;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

.footer-info a:hover {
  color: #fff;
}

.ftrTxtCnt {
  color: #cdcdcd;
  font-family: "Poppins", sans-serif;
}

/* Bottom Row */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 48px 30px;
  box-sizing: border-box;
  /*padding-left: calc(((100% - 880px) / 2) + .75rem);*/
  padding-left: 0;
}

.footer-col h4 {
  color: #fdd835;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
  transition: all .3s ease-in-out;
}

.footer-col ul li::before {
  position: absolute;
  content: '-';
  left: 0;
  top: 0;
  color: #EBEBEB;
}

.footer-col ul li a {
  text-decoration: none;
  color: #EBEBEB;
  transition: color 0.3s;
  font-family: "Poppins", sans-serif;
  font-size: 14px;

}

.footer-col ul li a:hover {
  color: #FFC72D;
}

.footer-col ul li:hover:before {
  color: #FFC72D;
}


.footer-col h3 , .footer-col h4{
  color: #FFC72D;
  font-weight: 700;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform:none !important;
  letter-spacing:0 !important;
}

/* Newsletter */
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter input[type="email"] {
  padding: 12px;
  border-radius: 25px;
  border: 1px solid #aaa;
  outline: none;
  width: 100%;
  background: #FFF;
}

.newsletter input[type="submit"] {
  background: #c62828;
  border: none;
  padding: 14px;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  width: 100%;
  margin-top: 8px;
  border: 1px solid #c62828;
}

.newsletter input[type="submit"]:hover {
  background: #000;
  border: 1px solid #FFC72D;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #c62828;
}

.copyRightRow p {
  color: #cdcdcd;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

.call-section H2 {
  color: #fff;
}

.call-section {
  background: #A62139;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.call-section h2 {
  margin-bottom: 40px;
}

.circle-btn {
  width: 215px;
  height: 215px;
  background: #300009;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  cursor: pointer;
  transition: transform 0.3s;
  position: relative;
}

.circle-btn .inner-round {
  width: 0%;
  height: 00%;
  position: absolute;
  border-radius: 50%;
  background: #FFC72D;
  display: block;
  content: '';
  transition: all .3s ease-in-out;
}

.circle-btn:hover .inner-round {
  width: 100%;
  height: 100%;
  transition: all .3s ease-in-out;
}

.circle-btn span {
  color: #fbc02d;
  /* yellow text */
  font-size: 16px;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  z-index: 99;
}

.circle-btn:hover span {
  color: #300009;
}

.availability {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 600px) {
  .call-section h2 {
    font-size: 28px;
  }

  .circle-btn {
    width: 180px;
    height: 180px;
  }
}

.copyRightRow {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 0;
}


.footrLogo {
  position: absolute;
  top: 56%;
  transform: translateY(-50%);
  left: 8%;
}

/*========== Footer css end ==========*/


.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1101;
  margin-right: 30px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #a62139;
  margin: 3px 0;
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger span:nth-of-type(2) {
  width: 22px;
  margin-right: 0;
  margin-left: auto;
}

/* --- Hamburger Animation --- */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* --- Overlay for Background --- */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 8;
}

.menu-overlay.active {
  display: block;
}


/*ISO Standards Css Start*/
.page-banner {
  position: relative;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.page-banner .banner-background {
  margin-top: 79px;
}

.page-banner .banner-background img {
  width: 100%;
  height: 305px;
  object-fit: cover;
  display: block;
  /*filter: brightness(0.4);*/
}

.page-banner .banner-background:after {
  content: "";
  background: #090002;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .85;
}

.page-banner .banner-content {
  position: absolute;
  top: calc(50% + 40px);
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  width: 100%;
}

.page-banner .banner-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.breadcrumb ol {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #f3c623;
}

.breadcrumb li {
  color: #fff;
}

.breadcrumb li a {
  color: #FFC72D;
  text-decoration: none;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

.breadcrumb li::after {
  content: "›";
  margin: 0 6px;
  color: #FFC72D;
}

.breadcrumb li:last-child::after {
  content: "";
}

.mt-60 {
  margin-top: 60px;
}

/*ISO Section*/
.iso-standards-section {
  background-color: #fff;
  text-align: center;
}

.section-intro {
  max-width: 1166px;
  margin: 0 auto;
}

.iso-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.iso-card {
  padding: 20px 10px;
  width: calc(25% - 15px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border-radius: 10px;
  border-bottom: 2px solid #A62139;
  background: #FFF6F8;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.iso-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.iso-card h5 {
  color: #A62139;
}

.iso-card p {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 15px;
}

.read-more {
  color: #A62139;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.4px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-transform: uppercase;
}

.read-more:hover {
  text-decoration: underline;
}

.PT_60 {
  padding-top: 60px;
}

.PB_60 {
  padding-bottom: 60px;
}

.iso-cta-section {
  background-color: #A62139;
  color: #fff;
}

.iso-cta-section h3 {
  color: #fff;
}

.iso-cta-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}


/*ISO Standards Css End*/


/*ISO Standards Details Css Start*/
.iso-details .serviveHead {
  max-width: 864px;
}

.iso-details {
  background: #fff;
}

.iso-sidebar-top,
.iso-sidebar-bottom {
  border-radius: 15px;
  background: #EBEBEB;
  padding: 20px;
}

.iso-details-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/* Sidebar */
.iso-sidebar {
  max-width: 370px;
  gap: 30px;
  display: flex;
  flex-flow: column;
}

.sidebar-title {
  margin-bottom: 30px;
  color: #A62139;
}

.iso-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.iso-list li {
  margin-bottom: 15px;
}

.iso-list a span img {
  max-width: 26px;
}

.iso-list a {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.iso-list a:hover {
  color: #b50d2a;
}

.iso-sidebar-bottom p a,
.iso-sidebar-bottom p,
.iso-sidebar-bottom a {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.iso-sidebar-bottom .social-icons a {
  background: #c62828;
}

.iso-sidebar-bottom .social-icons {
  margin-top: 10px;
}

.iso-sidebar-bottom .social-icons a:hover {
  background: #000;
}

/* Main Content */
.iso-content {
  flex: 1 1 600px;
  min-width: 0;
}

.iso-category {
  color: #b50d2a;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
}

.iso-content .intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.empty-height {
  height: 30px;
}

.iso-content img {
  max-width: 100%;
  display: block;
  border-radius: 6px;
  margin-top: 20px;
}


/*ISO Standards Details Css End*/


.two-faq-custom .serviveHead h3 {
  text-align: center;
}

.iso-consultants-section {
  background-color: #FFC72D;
  text-align: center;
}

.consultants-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.consultants-item {
  background: transparent;
  width: calc(25% - 22.5px);
  text-align: center;
}

.consultants-item p {
  color: #000;
}

.iso-tabs-section {
  background-color: #fff;
  border-top: 36px solid #9d2235;
  position: relative;
}

.iso-tabs-section .container {
  margin-top: -36px;
  position: relative;
  z-index: 9;
}

.iso-benefits-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.iso-benefits-image-wrap {
  width: auto;
  max-height: 751px;
  height: 100%;
  /*max-width: 637px;*/
  max-width: 90%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.iso-benefits-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

.iso-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.iso-benefits-content {
  padding-right: 15%;
  display: flex;
  flex-flow: column;
  width: 1246px;
 
}

.benefit-item {
  max-width: 720px;
}

.benefit-item h5 {
  margin-bottom: 10px;
}

.iso-tab {
  background: #f2f2f2;
  border: none;
  padding: 25px 20px;
  width: 370px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
  border-radius: 100px;
  background: #FFF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.iso-tab.active {
  background: #FFC72D;
  font-weight: 600;
}

.iso-tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.iso-tab-panel.active {
  display: block;
}

.iso-tab-panel h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.iso-tab-panel ul,
.iso-tab-panel ol {
  margin-left: 20px;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.iso-best-practices {
  background-color: #9d2235;
  color: #fff;
  text-align: center;
}

.iso-best-practices h4 {
  color: #fff;
}

.best-practices-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 15px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.best-practices-list li {
  width: calc(33.33% - 26.66px);
  display: flex;
  align-items: flex-start;
  color: #FFF;
  line-height: 1.5;
  gap: 10px;
}

.best-practices-list .icon {
  color: #FFC72D;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: -5px;
}

.accordion-content ul {
  display: flex;
  flex-flow: column;
  gap: 10px;
  margin-bottom: 20px;
}

.accordion-content ul li {
  position: relative;
  padding-left: 30px;
}

.accordion-content ul li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 15px;
  border: 4px solid #A6213A;
  background: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.iso-list a span img {
  transition: transform 0.3s ease;
  display: inline-block;
}

.iso-list a:hover span img {
  transform: translateX(6px);
}


/*##### ****** Internal Audits Page Start ****** #####*/
.audit-image-wrap {
  width: 45%;
}

.audit-image {
  width: 100%;
}

.audit-right {
  width: 50%;
}

.highlight {
  color: #A62139;
}

.audit-content {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 30px;
}

.audit-left {
  width: 45%;
}

.audit-stats {
  display: flex;
  gap: 0px;
  flex-wrap: wrap;
  width: 50%;
}

.stat {
  text-align: center;
  border: 1px solid #000;
  border-radius: 50%;
  width: 244px;
  height: 244px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  padding: 30px;
}

.stat-number {
  color: #000;
  font-size: 70px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  line-height: 1;
}

.counter-wrap {
  color: #000;
  font-size: 70px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
}

.stat:nth-of-type(2) .counter-wrap {
  color: #000;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: flex-end;
}

.stat:nth-of-type(2) {
  margin-left: -30px;
}

.internal-audit-section .btnwrap {
  margin-top: 20px;
}

#difference.what-makes {
  padding-top: 80px;
}

.PT_140 {
  padding-top: 140px;
}

.iso-need-sec {
  margin-bottom: 60px;
}

.iso-need-sec .BigCTAcontent {
  padding: 30px;
}


/* Section wrapper */
.audit-benefits {
  position: relative;
  background: #fff;
}

.audit-benefits .container {
  position: relative;
  z-index: 99;
}

.audit-text {
  width: 50%;
  margin-bottom: 50px;
}

.benefits-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 90px;
}

.benefit-card {
  width: calc(26.8% - 20px);
  background: #F0F0F0;
  border-radius: 5px;
  padding: 50px;
  text-align: center;
  transition: transform 0.3s ease;
  border-radius: 5px;
  box-shadow: 2px 2px 12px 1px rgba(0, 0, 0, 0.20);
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card h3 {
  font-size: 18px;
  margin: 15px 0 10px;
}

.benefit-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.audit-benefits .audit-image {
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  max-width: 902px;
  z-index: 2;
  height: 100%;
}

.audit-benefits .audit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*Team Section*/

.team-section {
  background: #fff;
}

.team-card {
  margin: 10px 0;
  border-radius: 5px;
  overflow: hidden;
  background: #D9D9D9;
  transition: transform 0.3s ease;
}

.team-section .team-carouse-wrap {
  margin-top: 50px;
}

.team-card figure {
  position: relative;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.team-card figcaption {
  padding: 10px;
  border-radius: 5px;
  background: #FFF;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 15px;
  width: calc(100% - 30px);
}

.team-card figcaption h6 {
  margin-bottom: 5px;
}

.team-card figcaption p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 141%;
}


.accordion-content h6 {
  color: #424242;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 141%;
  margin-bottom: 10px;
}

.accordion-content p a {
  color: #A62139;
}

.accordion-content p a:hover {
  color: #000;
}

.TestimonialInfoRight{
  width: 260px;
}
.audit-right h2 span{
      color: #A62139;
}

/*##### ****** Internal Audits Page End ****** #####*/

/*Quality policy Start */

.col-2-left-image-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.right-image {
  width: 47%;
}

.left-Text {
  width: 49%;
}

.right-image img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  height: 100%;
}

.col-2-left-image-inner-reverse {
  flex-direction: row-reverse;
}

.list-wrap-text ul li {
  font-size: 16px;
  color: #424242;
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}

.list-wrap-text ul li:before {
  width: 19px;
  height: 19px;
  display: block;
  position: absolute;
  left: 3px;
  top: 5px;
  background: url(../img/check-icon.png);
  content: '';
}

/*Quality policy End */


/*Blog start */

.blogWrapperInner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.blogWrapperInnerLeft {
  width: 73%;

}

.blogWrapperInnerRight {
  width: 25%;
}

.blog-list-wrap {
  display: flex;
  flex-flow: row wrap;
  grid-gap: 15px;
}

.blog-list {
  width: 48%;
  background: #F3F3F3;
  padding: 15px;
  border-radius: 10px;
}

.blog-list img {
  width: 100%;
  margin-bottom: 20px;
}

.blog-list a {
  color: #A62139;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;

}

.blog-list a:hover {
  text-decoration: underline;
}

.Recent-Posts-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}

.Recent-Posts-list img {
  width: 30%;
  height: auto;
  border-radius: 5px;
  object-fit: contain;
}

.Recent-Posts-content {
  width: 65%;
}

.Recent-Posts-content h6, .Recent-Posts-content h4 {
  font-size: 14px;
  margin-bottom: 0;
  letter-spacing: 0;
  text-transform: none;
  color: #000;
}

.Recent-Posts-content span {
  color: #A62139;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}

.rightsidebarcontainer {
  background: #F3F3F3;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
}

.rightsidebarcontainer h5 {
  color: #A62139;
}
.rightsidebarcontainer h3{
	color: #A62139;
	font-size: 20px;
}

.rightsidebarcontainer input[type="text"] {
  width: 100%;
  height: 58px;
  background: #fff;
  border-radius: 100px;
  padding: 0 10px 0 20px;
  margin-bottom: 10px;
}

.rightsidebarcontainer button {
  width: 100%;
  height: 58px;
  text-align: center;
  background: #A62139;
  color: #fff;
  border-radius: 100px;
  font-family: "Libre Franklin", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}

.rightsidebarcontainer button:hover {
  background: #FFC72D;
  color: #000;
}

.Recent-Posts-list:hover h6 {
  color: #A62139;
}


/*Blog end */


.blog-details-container img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 25px;
}

.blog-details-container span.date-blog {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  color: #A62139;
  display: block;
  margin-bottom: 10px;
}

.blog-details-container ol li {
  font-size: 16px;
  color: #424242;
  padding-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  font-weight: 400;
  list-style: auto;

}

.blog-details-container ul li {
  font-size: 16px;
  color: #424242;
  padding-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  font-weight: 400;
  list-style: disc;

}

.blog-details-container ol,
.blog-details-container ul {
  margin-left: 30px;
}

.blog-faq {
  width: 100%;
  margin-top: 25px;
}

.pagination-wrap{
      display: flex;
    justify-content: center;
    width: 100%;
    gap: 7px;
    margin-top:25px;
}
.pagination-wrap a.page-numbers, .pagination-wrap span.page-numbers{
  background: #6c6c6c;
  color: #fff;
  padding:10px 10px;
  display: inline-block;
  border-radius: 5px;
}

.pagination-wrap span.page-numbers.current{
  background: #A62139;
}

.banner-content span#pageTitle{
  font-weight: 600;
    margin-bottom: 10px;
    color: #FFFFFF;
    font-size: 55px;
    line-height: 1.2;
    font-weight: bold;
    text-transform: uppercase;
}


/*Contact uality start */


.contact-section .contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-section .contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-section .contact-details {
  list-style: none;
  padding: 0;
  margin: 15px 0 30px;
}

.contact-section .contact-details li,
.contact-section .contact-details li a,
.contact-section .contact-details li p {
  font-size: 1rem;
  color: #424242;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 141%;
}

.contact-section .contact-details li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.contact-section .contact-details .icon {
  margin-right: 8px;
}

.contact-section .social-icons {
  flex-flow: row wrap;
}

.contact-section .social-icons h3 {
  width: 100%;
  margin-bottom: 10px;
  font-size: 24px;
}

.contact-section .contact-form {
  flex: 1;
  background: #FFC72D;
  padding: 30px;
  border-radius: 10px;
}


/*Contact uality end */

/*About start */

.about-video-section {
  position: relative;
  z-index: 9;
}

.about-video-section:after {
  background: #A62139;
  content: "";
  position: absolute;
  bottom: 0;
  height: 50%;
  width: 100%;
  left: 0;
  right: 0;
  z-index: -1;
}

.about-video-section .video-wrapper {
  width: 100%;
  display: block;
  margin: 0 auto;

}

.about-video-section .video-wrapper iframe {
  width: 100%;
  height: 390px;
  display: block;
  border: 0;
  outline: none;
  box-shadow: none;
}

.about-objectives-wrap {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
}

.about-objectives-section .about-image-wrapper {
  position: relative;
  width: 30%;
}

.about-objectives-section .about-text-content {
  width: 59%;
  max-width: 875px;
}

.about-objectives-section .about-image-wrapper img {
  width: auto;
  height: auto;
  border-radius: 8px;
}

.about-objectives-section .exploreMoreWrap {
  position: absolute;
  left: 100%;
  right: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #F4F4F4;
  border-radius: 50%;
  padding: 10px;
}

.BigCTAcontent p {
  color: #fff;
}

/*About end */


/* ISO Courses Section */
.iso-courses {
  background-color: #fff;
}

.iso-courses .courses-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.course-card {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  width: calc(33.333% - 20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.course-card figure {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.course-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  object-fit: cover;
  height: 285px !important;
}

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

/* Content */
.course-content {
  padding: 20px 15px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.course-content h5 {
  margin-bottom: 10px;
  color: #000;
}

.course-content p {
  color: #000;
  flex-grow: 1;
}

/* Buttons */
.course-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.course-actions a {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
  padding: 7px 20px;
  border-radius: 50px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-dark-red {
  background: #A62139;
  color: #fff;
}

.btn-dark-red:hover {
  background: #000;
  border: 1px solid #A62139;
}

.btn-warm-yellow {
  background: #FFC72D;
  color: #000;
}

.btn-warm-yellow:hover {
  background: #000;
  border: 1px solid #FFC72D;
  color: #fff;
}


/* PECB Partner Section start */
.pecb-partner {
  background: #A62139;
  color: #fff;
  margin-top: 50px;
  margin-bottom: 50px;
}

.pecb-partner #pecb-partner-title {
  display: none;
}

.pecb-flex {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1220px;
  margin: 0 auto;
}

.pecb-logo {
  width: 254px;
  margin-top: -50px;
  margin-bottom: -50px;
}

.pecb-logo img {
  height: auto;
  display: block;
}

.pecb-content {
  width: calc(100% - 284px);
}

.pecb-content p {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  margin: 0;
}

.how-flex {
  display: flex;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

.how-content {
  width: calc(56% - 70px);
}

.how-image {
  width: 44%;
}

.how-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 530px;
}

.how-steps li {
  color: #424242;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 131%;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.how-steps .check-icon {
  color: #A62139;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.how-image img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* ISO Courses Section end */

/*========== Testimonial page css start ==========*/

.sec-Wdth970 {
  max-width: 970px;
}

.videoTestimonial-Sec {
  box-sizing: border-box;
}

.IframeVideo {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 ratio */
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: #000;
}

.IframeVideo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  border: 0;
  max-height:100% !important;
}

.videoTestimonial .item {
  box-sizing: border-box;
}

.videoTestimonial .owl-dots {
  text-align: center;
  margin-top: 15px;
}

.videoTestimonial .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  background: #bbb;
  display: block;
  border-radius: 50%;
  transition: background 0.3s;
}

.videoTestimonial .owl-dot.active span {
  background: #ff4081;
}

.videoTestimonial .owl-nav button {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 20px;
}

.videoTestimonial .owl-nav .owl-prev {
  left: -20px;
}

.videoTestimonial .owl-nav .owl-next {
  right: -20px;
}

.testimonialBx {
  padding: 35px 45px;
  box-sizing: border-box;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.20);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.20);
  -moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.20);
  border-radius: 30px;
  border-radius: 30px;
  position: relative;
}

.testimonialBx::after {
  content: "";
  position: absolute;
  bottom: -62px;
  left: 72px;
  width: 0;
  height: 0;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  border-top: 62px solid #fff;
  filter: drop-shadow(0 6px 3px rgba(0, 0, 0, 0.20));
}

.athr {
  padding: 50px 0;
  box-sizing: border-box;
  padding-top: 80px;
}

.Txt-testimonialInr {
  flex-wrap: wrap;
  justify-content: space-between;
}

.Txt-testimonLeft {
  width: 33%;
  position: sticky;
  top: 145px;
  align-self: flex-start;
}

.Txt-testimonRght {
  width: 64%;
  margin-top: 35px;
}

.Txt-testimonLeft .arwImg img {
  display: block;
  margin-left: auto;
}

.testimonialBxWrp {
  position: relative;
  margin-bottom: 36px;
}

.testimonialBxWrp .qotIcon {
  position: absolute;
  top: -40px;
  left: -12px;
}

.athr h5 {
  color: #A62139;
}

/*========== Testimonial page css end ==========*/

/*========== Case Study page css start ==========*/

.casestudyheadcenter {
  width: 100%;
  text-align: center;
}

.casestudylistwrapmain.casestudylistwrap .casestudylist:last-child {
  display: block;
}

/*========== Case Study page css end ==========*/

/*========== Case Study details page css start ==========*/

.case_study_desc h3 {
  margin-bottom: 0;
}

.case_study_desc .iso-benefits-content {
  padding-right: 0;
}

.case_study_desc .benefit-item {
  max-width: unset !important;
}

.iso-details .video-wrapper iframe {
  width: 100%;
  max-width: 1015px;
  height: 571px;
  display: block;
  margin: 0 auto;
  border: 0;
  outline: none;
  box-shadow: none;
}

.iso-details .how-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: unset;
  margin-bottom: 20px;
}

.iso-details .how-steps li {
  color: #424242;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 131%;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.iso-details .how-steps .check-icon {
  color: #A62139;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/*========== Case Study details page css end ==========*/

/*========== Thank you page css start ==========*/

#thank-you-wrap {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.thank-inner img {
  margin: auto;
  margin-bottom: 30px;
}

a.backtohome {
  background: #c62828;
  border: none;
  padding: 14px;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  width: 100%;
  margin-top: 8px;
  border: 1px solid #c62828;
  width: 350px;
  display: inline-block;
}

a.backtohome:hover {
  background: #FFC72D;
  color: #000;
  border-color: #FFC72D;
}

/*========== Thank you page css end ==========*/

/* CSS */
.video-wrap {
  width: 100%;
  max-width: 960px;
  /* optional: cap the width */
  margin: 0 auto;
  /* optional: center */
  aspect-ratio: 16/9;
  /* keeps 16:9 ratio; change to 4/3 if needed */
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-list-wrap {
  display: flex;
  justify-content: center;
  grid-gap: 15px;
  flex-flow: row wrap;
}

.video-list {
  width: 32%;
}
.col-2-left-image-inner .left-Text ul{
  margin-left: 30px;
}
.col-2-left-image-inner .left-Text ul li{
    font-size: 16px;
    color: #424242;
    padding-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    font-weight: 400;
    /*list-style: disc;*/
}

.col-2-left-image-inner .left-Text ul {
  list-style: none;            
  padding: 0;
  margin: 0 0 20px 0;
}

.col-2-left-image-inner .left-Text ul li{
  position: relative;
  padding-left: 32px;  
  padding-bottom: 0;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: #424242;
}
.col-2-left-image-inner .left-Text ul li::before{
  content: "✔";                 
  position: absolute;
  left: 0;
  top: 0;
  color: #a62139;               
  font-size: 18px;
  line-height: 1.5;
  background: transparent !important;
}




.sub-menu li.current-menu-item a{
          background: #A62139;
        color: #fff !important;
}
.best-practices-list li{
  position: relative;
  padding-left: 22px;
}
.best-practices-list li:before{
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  color: #FFC72D;
}

.blog-details-container h1{
      font-size: 50px !important;
          text-transform: none;
    line-height: 1;
}

#logos .logosbox img{
 /* height: 156px !important;
    width: 156px !important;*/
  height: 153px !important;
    width: 153px !important;
    margin: auto;
}

aside.sidebar-title{
    font-size: 20px;

    font-weight: 600;
    line-height: 1.1;
}

span.subhead{
  font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    color: #A62139;
    margin-bottom: 20px;
    line-height: 1.2;
    display: block;ss
}

.consultants-item h6{
  color:#000;
}

.blog-details-container h2{
      font-size: 30px;
}
.blog-details-container h3{
      font-size: 26px;
}
.blog-details-container h4{
      font-size: 22px;
}
.blog-details-container h5{
      font-size: 20px;
}
.blog-details-container p a{
  color: #a62139;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.blog-details-container p a:hover,
.blog-details-container p a:focus {
  color: #7d192b; /* darker red for hover/focus */
  text-decoration-thickness: 2px;
}


.Recent-Posts-content span.post-title{
      font-size: 14px;
    margin-bottom: 0;
    letter-spacing: 0;
    text-transform: none;
    color: #000;
    display: block;
}

.sliderlist h3{
    font-size: 26px;
    color: #000000;
    font-weight: 600;
    line-height: 1.1;
}

.team-card span.teamname{
  font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    color: #A62139;
    margin-bottom: 5px;
}

.iso-card-content h3{
  font-size: 20px;
    color: #A62139;
    font-weight: 600;
    line-height: 1.1;
}

.iso-benefits-content .benefit-item{
  margin-bottom: 15px;
}

.hero-video-wrap {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
button#unmuteBtn {
    position: absolute;
    bottom: 100px;
    right: 50px;
    font-size: 18px;
    border: none;
    border-radius: 50%;
    background: rgb(166 33 57);
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
    width: 50px;
    height: 50px;
}

.iso-content img{
  width: 100%;
}
.iso-content ul, .iso-benefits-content ul {
  list-style: none;            
  padding: 0;
  margin: 0 0 20px 0;
}

.iso-content ul li, .iso-benefits-content ul li {
  position: relative;
  padding-left: 32px;           
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: #424242;
}
.iso-content ul li::before, .iso-benefits-content ul li::before {
  content: "✔";                 
  position: absolute;
  left: 0;
  top: 0;
  color: #a62139;               
  font-size: 18px;
  line-height: 1.5;
}
.casestudylist .casestudylistImage {
    height: 320px;
}
.casestudylist .casestudylistImage img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}
.iso-content a {
    color: #a62139;
}
.iso-content a:hover{
  text-decoration: underline;
}

.red-bg span.subhead{
  color: #FFC72D;
}
.getintouch-sec .getintouchInnerLeft p {
    font-size: 26px;
    color: #FFF;
    font-weight: 600;
    line-height: 1.1;
    font-family: "Libre Franklin", sans-serif !important;
}
.getintouch-sec .getintouchInner {
    align-items: flex-start;
}
.getintouch-sec .btnwhite {
  width: 250px;
  margin-top: 20px !important
}

.athr-company-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
  padding: 50px 0;
    box-sizing: border-box;
    padding-top: 80px;
}
.athr-company-logo-wrap .company-logo:empty{
  display: none;
}
.athr-company-logo-wrap .athr {
    padding: 0px 0;
    box-sizing: border-box;
    padding-top: 0px;
}
.athr-company-logo-wrap .company-logo img {
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #CCCCCC;
    padding: 10px;
    width: auto !important;
    height: 74px !important;
}
.athr-company-logo-wrap .athr h5{
  margin-bottom: 10px;
}

.sub-menu-toggle{
  display:none;
}
.iso-tabs-section ul{
  margin-bottom:15px;
}

.iso-tabs-section ul li{
  font-size: 16px;
    color: #424242;
    padding-bottom: 7px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    font-weight: 400;
  position:relative;
}

.iso-tabs-section ol li{
      list-style: decimal-leading-zero;
  font-size: 16px;
    color: #424242;
    padding-bottom: 7px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    font-weight: 400;
}


a.isobtn{
  background: #c62828;
    color: #fff;
    padding: 12px 22px;
    border-radius: 20px;
    display: inline-block;
}
a.isobtn:hover{
      background: #ffc72d;
  color:#000;
}
.iso-best-practices .serviveHead.iso-best-title p{
  text-align: center;
    margin: auto;
    color: #fff;
}
/*****************Krishna(07.11.2025)******************/
.footer-top {
    justify-content: flex-start;
    gap: 100px;
}



.gform-theme--foundation .gform_fields{
  row-gap: 11px !important;
}

.gform-body.gform_body input[type="text"]{
  background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    box-shadow: none;
    border-radius: 0;
  font-size:14px !important;
}

.gform-body.gform_body input[type="email"]{
  background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    box-shadow: none;
    border-radius: 0;
  font-size:14px !important;
}

.gform-body.gform_body input[type="tel"]{
  background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    box-shadow: none;
    border-radius: 0;
  font-size:14px !important;
}
.gform-body.gform_body textarea{
  background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    box-shadow: none;
    border-radius: 0;
  font-size:14px !important;
}

.gform-body.gform_body input[type="text"]:focus, .gform-body.gform_body input[type="email"]:focus, .gform-body.gform_body input[type="tel"]:focus, .gform-body.gform_body textarea:focus{
  outline:none;
}

.gfield_checkbox {
  display: flex !important;
    flex-flow: row wrap !important;
}
.gfield_checkbox .gchoice{
  width:32% !important;
}

.getintouchInnerRight h3{
  margin-bottom:5px !important;
}

.gform-footer input[type="submit"]{
  background-color: #A62139 !important;
    border-radius: 50px !important;
    height: 55px !important;
    width: 200px !important;
}

span.gfield_required.gfield_required_text{
  color:#641300 !important;
}
.gfield_checkbox .gchoice label{
  font-size: 14px !important;
}
.gform_validation_errors{
  background: #ffffff !important;
    border: 1px solid #f00 !important;
    padding: 10px !important;
}
.gform_validation_errors h2{
  color:#f00 !important;
}

.page-template-thank-you header#myHeader{
  display:none;
}
.page-template-thank-you footer{
  display:none;
}

.gform-body.gform_body select{
  background-color: transparent;
    border: none;
    border-bottom: 1px solid #000;
    box-shadow: none;
    border-radius: 0;
  font-size:14px !important;
  background-repeat:no-repeat;
  background-position: right !important;
}

.gform-body.gform_body select:focus{
  outline:none !important;
}

.gform-field-label--type-sub{
  display:none !important;
}

.call-section h5{
  margin-bottom: 40px;
      line-height: 1.1;
    font-weight: 600;
  font-size: 50px;
  color:#fff !important;
      letter-spacing: 0;
    text-transform: none;
}

.gfield_checkbox .gchoice input[type="checkbox"]{
      background-color: #ff000000;
    border-color: #000;
}
.gfield_checkbox .gchoice input[type="checkbox"]:focus{
  outline:none !important;
}

.gform-theme--framework input[type=checkbox]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before{
      color: #000000 !important;
}

#rank-math-faq{
  display:none;
}
#oopss{
      background: #ffffff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    line-height: 1.5em;
    z-index: 9999;
}

#oopss #error-text{
      font-size: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    direction: rtl;
}

#oopss #error-text img{
      margin: 85px auto 20px;
    height: 342px;
}

#oopss h1{
  font-size:100px;
}

.error-btn{
      text-align: center;
    display: inline-block;
    -webkit-transition: all .5s 
ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s 
ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    font-size: 14px;
    padding: 0 30px;
    min-width: 120px;
    line-height: 42px;
    cursor: pointer;
    font-weight: 700;
    vertical-align: middle;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    color: #fff;
    background-color: #A62139;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #A62139;
}

#servive-details-content{
  background: #F8F8F8;
}

.servive-point{
  display: flex;
  grid-gap: 15px;
  flex-flow: row wrap;
}

.servive-point{
  margin-top: 40px;
}

#servive-icon-text .servive-point-item{
  width: 24%;
}

.servivebox{
	background-size:cover !important;
	background-position:center center !important;
}

.HomeAboutInnerRight.HomeAboutInnerRightHome{
	    width: 800px;
}

#ctavideo{
	    background: #A62139;
}
.ctavideoinner{
	display:flex;
	flex-flow:row wrap;
	justify-content:space-between;
}
.ctavideoinnerLeft{
	width:48%;
}
.ctavideoinnerRight{
	width:48%;
}
#ctavideo h3, #ctavideo p{
	color:#fff;
}

.blog-short-content h2{
	font-size:20px;
}

.course-content h2{
	    font-size: 20px;
}
.servive-point h3{
	font-size: 65px !important;
    color: #a62139;
}
.servive-point .sliderlist{
	min-height: 315px;
}

/*****************Krishna(24.11.2025)******************/



/*****************Krishna(24.11.2025) end******************/

.faq-section1Inner{
	width: 63%;
    margin: auto;
    text-align: center;
}
.btnred.btnredbig{
	width: 365px;
}
.faq-section1Inner .btnwrap{
	display: flex;
    justify-content: center;
}


