.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  font-family: "Open Sans", sans-serif;
}

.w-100 {
  width: 100%;
  height: auto;
}

.h-100 {
  height: 100%;
}

.d-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.j-start {
  justify-content: flex-start;
}

/* CTA Button Base */
.cta-button {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8px 11px 8px 21px;
  border-radius: 50px;
  background: #fff;
  color: #333;
  border: 1px solid #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  max-width: 100%;
  line-height: 22px;
  height: 52px;
  text-transform: capitalize;
  transition: background 0.3s, color 0.3s, border 0.3s, padding-right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icon styles */
.cta-button .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

/* Clone icon: always use the same transition, no delay */
.cta-button .icon.clone {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

/* Text: always use the same transition, no delay */
.cta-button .text {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

/* On hover: move main icon right and fade out */
.cta-button:hover .icon:not(.clone) {
  transform: translateX(60px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* On hover: bring in clone icon from left */
.cta-button:hover .icon.clone {
  transform: translateY(-50%) translateX(60px);
  opacity: 1;
}

/* On hover: move text right */
.cta-button:hover .text {
  transform: translateX(30px);
}


.full-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.bg-cta-button {
  background-color: #008bd1;
  color: #fff;
  cursor: pointer;
}

.bg-cta-button svg circle {
  fill: #fff;
  stroke: #fff;
}

.bg-cta-button svg path {
  stroke: #007bff;
}

.d-desk {
  display: block !important;
}

.d-mobile {
  display: none !important;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.p-abs-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-abs-left {
  top: 44%;
  left: 4%;
  transform: translate(-0, -50%);
}

.padding-tb {
  padding: 70px 0;
}

.w-full {
  width: 100%;
  height: auto;
}

.home-heading {
  font-size: 62px;
  color: #fff;
  font-weight: 600;
  line-height: 1.4 !important;
  margin-bottom: 40px;
  text-shadow: -2px 1px 4px #000000;
}

.home-heading::after {
  background-blend-mode: color;
}


.home-heading span {
  display: block;
}

.isgecxlheading {
  font-size: 48px;
}

.isgeclgheading {
  font-size: 40px;
}

.isgecmdheading {
  font-size: 32px;
}

.isgecsmheading {
  font-size: 22px;
}

.isgecxsheading {
  font-size: 16px;
}

.isgecxxsheading {
  font-size: 14px;
}

.isgecxxssheading {
  font-size: 13px;
}

/* span {line-height: 0;} */

.section-white {
  background-color: #fff;
}

.section-grey {
  background-color: #f9f9f9;
}


.cta-button .text {
  margin-right: 9px;
  white-space: nowrap;
  font-weight: 600;
}

.cta-button .icon {
  background: #008bd1;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}


#closeBtn {
  display: none;
}

.container {
  max-width: 95%;
  margin: 0 auto;
  padding: 0 15px;
}

.common-section .fixed2-top-section {
  padding: 40px;
}

.common-section .fixed2-top-section {
  border: 0;
  border-radius: 24px;
}


/*Header*/
.header {
  background-color: transparent;
  position: relative;
  z-index: 1000;
  padding: 10px 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #0087C5;
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px 0;
}

.header-logo img {
  max-height: 57px;
}

.sidebar-togle-wraper {
  display: none;
}

nav {
  display: flex;
  align-items: center;
}

.header-nav {
  list-style: none;
  display: flex;
  gap: 30px;
  position: relative;
}

.nav-link,
.header-nav>li>a,
.menu-item a,
.header-nav>li>a {
  text-decoration: none;
  color: #fff;
  position: relative;
}

.nav-item,
.menu-item {
  position: relative;
  /* font-weight: 400;
  font-size: 16px; */
}

.nav-item.active,
.current_page_item a {
  font-weight: 600;
}

.nav-item:hover>.dropdown,
.menu-item:hover>.sub-menu {
  display: block;
}

.dropdown,
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  z-index: 1001;
}

.dropdown,
.sub-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

.dropdown a:hover,
.sub-menu a:hover {
  background-color: #f5f5f5;
}

.bnr-btn .banner-a-btn {
  background: #007bff;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.search-toggle {
  font-size: 20px;
  cursor: pointer;
  margin-right: 10px;
  color: #333;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #fff;
}

.search-bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0,0,0,0.20),
    rgba(0,0,0,0.05)
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999;
  display: none;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding-top: 200px;
}

.search-bg-layer.show {
  display: flex;
  opacity: 1;
}

.search-bar {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: #fff;
  padding: 60px 50px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 1000000;
  padding: 0 30px 30px 30px;
}

.search-close-btn {
  position: absolute;
  top: -45px;
  right: -45px;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  background: #007bff70;
  border: none;
  border-radius: 50%;
  z-index: 1;
}
.search-close-btn svg path{stroke: #fff;}

.search-close-btn:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.search-close-btn svg {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.search-bar input {
  width: 100%;
  padding: 20px 60px 20px 0;
  font-size: 24px;
  font-weight: 400;
  color: #39393B;
  border: none;
  border-bottom: 2px solid #000;
  background: transparent;
  outline: none;
border-radius: 0;
  transition: border-color 0.3s ease;
}

.search-bar input:focus {
  border-bottom-color: #0087C5;
}

.search-bar input::placeholder {
  color: #39393B;
  font-weight: 400;
  opacity: 1;
}

.search-submit-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 1;
}

.search-submit-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.search-submit-btn svg {
  width: 28px;
  height: 28px;
}

/*Home Slider*/
.home-slider .details {
  width: 50%;
}

.banner-slider .slider-for {
  z-index: 1;
  bottom: 150px;
  left: 5%;
  gap: 40px;
}

.banner-slider .slider-for .for-click .isgecxxssheading {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.3px;
  cursor: pointer;
  backdrop-filter: blur(2px);

  font-weight: 500;

}

.banner-slider .slider-for .for-click .isgecxxssheading {
  border-top: 1px solid #fff;
  padding: 20px 0 0;
  opacity: 1;
  text-shadow: -2px 1px 4px #000000;
}

.process-equipment-section+.container .breadcrumb-nav,
.breadcrumb-nav {
  margin: 30px 0;
}

.breadcrumb-nav .breadcrumb {
  display: flex;
  /* list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
    align-items: center;
    line-height: 0; */
  flex-wrap: wrap;
}

.breadcrumb-nav .breadcrumb-item a {
  color: #626265;
  text-decoration: none;
  font-weight: 400;
}

.breadcrumb-nav .breadcrumb-item a:hover {
  color: #0087C5;
}

.breadcrumb-nav .breadcrumb-item.active {
  color: #626265;
  font-weight: 700;
}

.breadcrumb-nav .breadcrumb li {
  display: flex;
  align-items: center;
  margin: 0 8px;
}

.breadcrumb-nav .breadcrumb li:first-child,
.breadcrumb-nav .breadcrumb li:last-child {
  margin: 0;
}

/* .banner-slider .slider-for .items.active .isgecxxssheading{border-top: 3px solid #fff;} */
.banner-slider .slider-for .items {
  position: relative;
}

.banner-slider .slider-for .for-click .isgecxxssheading::before {
  content: '';
  width: 0;
  height: 3px;
  position: absolute;
  left: 0;
  top: -3px;
  background: #fff;
  transition: width 4s ease-in-out;
}

.banner-slider .slider-for .items.active .isgecxxssheading::before {
  width: 100%;
  height: 3px;
  background: #fff;
  transition: width 4s ease;
}

.slider-for .items.active .isgecxxssheading {
  opacity: 1;
}

.big-image .cta-button {
  margin-top: 20px;
}

.for-click .isgecxxssheading {
  display: flex;
  gap: 10px;
  align-items: center;
}

/*fixed-top-wrapper*/
.fixed-top-section .item-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.fixed-top-section .right-item p {
  margin-bottom: 30px;
  font-size: 13px;
  line-height: 1.7;
}

/* Section- Legacy - Updated */
.legacy-wrapper.fixed-top-section {
  padding: 0 40px;
}

.legacy-deatils {
  align-items: baseline;
  gap: 40px;
  justify-content: flex-start;
}

.fixed2-top-section .legacy-deatils {
  align-items: center;
}

.image-wrapper,
.info-container {
  position: relative;
  width: 100%;
}

.image-wrapper img,
.info-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.counters {
  position: absolute;
  bottom: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #fff;
  padding: 10px 0px 0px 10px;
  gap: 10px;
  border-radius: 20px;
  max-width: 67%;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.counters::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -40px;
  width: 40px;
  height: 40px;
  background: transparent;
  border-right: 10px solid #fff;
  border-bottom: 10px solid #fff;
  border-bottom-right-radius: 29px;
}

.counters:after {
  content: '';
  position: absolute;
  top: -40px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: transparent;
  border-right: 10px solid #fff;
  border-bottom: 10px solid #fff;
  border-bottom-right-radius: 32px;
}

.counter-box {
  background: #0087C5;
  color: white;
  padding: 40px 25px;
  border-radius: 20px;
  min-width: 110px;
}

.counter-number {
  font-size: 55px;
  font-weight: 400;
}

.fixed-top-section .item-bottom {
  margin-top: 50px;
}

.fixed-top-section .item-bottom .d-flex {
  display: flex;
  gap: 20px;
  /* align-items: stretch; */
}


.image-wrapper {
  width: 67.5%;
}

.info-container {
  width: 32.5%;
}

.image-wrapper img,
.info-container img {
  height: 100%;
}

.fixed-top-section .legacy-deatils p {
  color: #C02121;
  font-weight: 600;
  font-size: 14px;
  width: 150px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fixed-top-section .item-top .left-item .isgecxxsheading svg {
  margin-left: 5px;
}

.fixed-top-section .legacy-deatils h3 {
  font-weight: 500;
  font-size: 27px;
  color: #3B3B3B;
  line-height: 38px;
}

/*--Our Business--*/
.tabs-container {
  display: flex;
  width: 100%;
  margin-bottom: 0;
  margin-top: 80px;
}

.tab-wrapper {
  flex: 1;
  text-align: center;
}

.tab {
  width: 100%;
  background: #eee;
  cursor: pointer;
  border: none;
  font-weight: bold;
}

.tab.active {
  background: transparent;
  color: #e5e5e5;
}

.tab.disabled {
  background: #ccc;
  color: #666;

}

.progress-bar {
  height: 3px;
  width: 100%;
  background: #555;
  position: relative;
  top: -20px;
}

.progress1 {
  background: #8D43A6A1;
}

.progress2 {
  background: #ED77234D;
}

.progress3 {
  background: #00A78A4D;
}

.progress-fill {
  height: 3px;
  width: 0;
  background: red;
  transition: width 0.3s ease;
  position: relative;
  top: 0px;
  border-radius: 12px;
}

.progress1 .progress-fill {
  background: #8D43A6;
}

.progress2 .progress-fill {
  background: #ED7723;
}

.progress3 .progress-fill {
  background: #00A78A;
}

.tab-contents .tab-content {
  display: none;
}

.tab-contents .tab-content.active {
  display: block !important;
  margin-top: 20px;
}

.swiper {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.swiper-slide {
  /* background: #999; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  border-radius: 16px;
}

.tab-content .swiper .item {
  position: relative;
  border-radius: 24px;
  border: 1px solid #D0D0D0;
  /* padding: 30px 20px 50px; */
  cursor: pointer;
  overflow: hidden;
  transition: background 1s, color 0.3s;
  /* margin-left: -1px; */
}

.tab-content .swiper .item:hover {
  border: 1px solid transparent;
  border-radius: 16px;
}

.tab-content .swiper .item img {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-content .swiper .item .basic-details {
  content: "";
  position: absolute;
  inset: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 12;
  padding: 30px 20px 50px;
}

.tab-content .swiper .item:hover img {
  opacity: 1;
}

.tab-content .swiper .item>* {
  position: relative;
  z-index: 1234;
}

.tab-content .swiper .item:hover h4,
.tab-content .swiper .item:hover .isgecxxsheading {
  color: #fff;
}

.tab-content .swiper .item h4 {
  color: #4D4D4D;
  font-weight: 600;
  position: relative;
  padding: 40px 0 20px;
  z-index: 12;
  font-size: 24px;
}

.tab-content .swiper .item h4:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #8D43A6;
}

.tab-content .swiper .item .home-heading {
  color: #EDEDED;
  font-weight: 700;
  font-size: 80px;
  position: relative;
  z-index: 12;
}

.tab-content .swiper .item p {
  color: #242424;
  font-weight: 400;
  padding: 40px 0 0;
  position: relative;
  z-index: 12;
  font-size: 14px;
}

/* .tab-content .swiper .item:hover:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4a4a4a;
  opacity: 0.2;
  z-index: 1;
  border-radius: 12px;
} */

.tab-content .swiper .item:hover p {
  color: #fff;
}

.tab-content .swiper .item:hover h4:after,
#tabs-slider-2 .item:hover h4:after,
#tabs-slider-3 .item:hover h4:after {
  background-color: #fff;
}

.tab-wrapper .tab .isgecxsheading {
  font-size: 16px;
  font-weight: 400;
  color: #9c9c9c;
}

.tab-wrapper .tab.active .isgecxsheading {
  font-weight: 700;
  color: #4D4D4D;
}

.tab-wrapper .isgecxsheading span {
  float: left;
}

.tab-wrapper .isgecxsheading span:nth-child(2) {
  margin-left: 10px;
  display: block;
}

.our-business .fixed-top-section .item-top {
  grid-template-columns: 2fr 1fr;
}

.fixed2-top-section .item-top .right-item {
  text-align: right;
}

.tab-content .swiper2 .item h4:after {
  background-color: #ED7723;
}

.tab-content .swiper3 .item h4:after {
  background-color: #00A78A;
}

.progress-fill {
  transition: width 0.3s ease;
}



/*JOIN our Team*/
.jot {

  position: relative;

  text-align: center;
  border-radius: 30px;
  overflow: hidden;
  padding: 0px;
  line-height: 1;
}

.jot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  padding: 0px;
  line-height: 0;
}

.overlay {
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 22;
}

.jot-image {
  height: auto;
  width: 100%;
}

.pt-0 {
  padding-top: 0px;
}

.jot-wrapper .isgecmdheading {
  padding: 20px 0;
  line-height: 1.2;
}

.jot.fixed-top-section .legacy-deatils h3 {
  padding: 30px 0 34px;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.5px;
  font-weight: 400;
}

.jot-wrapper .sgecxxsheading {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: center;
}

/*--news event--*/
.new-part2 {
  align-items: flex-start;
}

.newsevent-wrapper .left,
.newsevent-wrapper .right {
  /* flex: 1; */
  position: relative;
}

.newsevent-wrapper .left {
  padding: 0px;
}

.newsevent-wrapper .image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0px 10px;
}

.newsevent-wrapper .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.newsevent-wrapper .inside-wrap {
  position: absolute;
  bottom: 0px;
  left: 0px;
  color: white;
  padding: 30px 30px 30px;
  border-radius: 5px;
  right: 0px;
}

.newsevent-wrapper .bottom-content {
  display: flex;
  margin-top: 20px;
  gap: 20px;
}

.newsevent-wrapper .content-box {
  /* flex: 1; */
  padding: 0px 10px;
  margin-top: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 160px;
  position: relative;
  width: 50%;
}

.newsevent-wrapper .content-box button {
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.newsevent-wrapper .content-box .icon {
  position: absolute;
  top: 10px;
  right: 10px;
}

.newsevent-wrapper .right-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.newsevent-wrapper .right-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsevent-wrapper .right-inside-wrap {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}

.newsevent-wrapper .box .isgecxxsheading {
  margin-bottom: 10px;
}

.newsevent-wrapper .inside-wrap .box span svg path {
  stroke: #fff;
}

.newsevent-wrapper .inside-wrap {
  justify-content: space-between;
  align-items: flex-end;
}

.newsevent-wrapper .inside-wrap .box {
  width: calc(100% - 150px);
  padding-right: 20px;
}

.newsevent-wrapper .inside-wrap .bnr-btn {
  width: 150px;
  text-align: right;
}

.newsevent-wrapper .inside-wrap .bnr-btn a {
  text-decoration: none;
  color: #fff;
}

.newsevent-wrapper .inside-wrap .bnr-btn a span {
  line-height: 0;
}

.inside-wrap .bnr-btn a span svg {
  transition: transform 0.3s ease;
}

.inside-wrap .bnr-btn a:hover span svg {
  transform: translateX(5px);
}

.bottom-content .bnr-btn {
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.bottom-content .bnr-btn .isgecxxssheading {
  color: #828282;
}

.bottom-content .bnr-btn a {
  color: #0087C5;
  align-items: center;
  line-height: 0;
}

#blog_article {
  display: none;
}


/*---anilstart--here--*/
.newsevent-wrapper .left {
  width: 60%;
}

.newsevent-wrapper .right {
  width: 40%;
}

.content-box .isgecsmheading {
  min-height: 122px;
  color: #4d4d4d;
}

.newsevent-wrapper .left .section-grey,
.newsevent-wrapper .right .section-grey {
  padding: 30px;
  height: 100%;
  border-radius: 16px;
  width: 100%;
}

.newsevent-wrapper .bnr-btn.d-flex {
  justify-content: space-between;
}

.news-left-box {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -10px;
  height: 100%;
}
.image-container .p-relative{
  height: 100%;
}

.content-box .box .isgecxxsheading {
  color: #C02121;
}

.content-box .bnr-btn .isgecxxssheading {
  color: #828282;
}



.sustainbility-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  margin: 0px -15px;
}

.sustainbility_colm {
  width: 50%;
  padding: 0px 15px;
}

.sustainabilty-wraper {
  padding: 60px 40px;
  border-radius: 22px;
}

.sustainbility_image-box {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.sustainbility-image {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.heading_common_top {
  display: flex;
  margin: 0px -15px;
  margin-bottom: 50px;
  justify-content: space-between;
}

.top_section_box_left,
.top_section_box_right {
  padding: 0px 15px;
}

.top_section_box_left {
  display: flex;
  flex-wrap: wrap;
}

.heading_top-left_inner {
  width: 150px;
  position: relative;
  top: 10px;
}

.top_section_box_left .isgecmdheading {
  width: calc(100% - 150px);
}

.tab-output-box {
  display: none;
}

.heading_top-left_inner .isgecxxsheading {
  color: #C02121;
  font-weight: 600;
}

.tab-menu-list ul {
  display: inline-flex;
  justify-content: flex-end;
  border-bottom: 1px solid #ccc;
}

.tab-menu-list ul li a {
  display: block;
  padding: 0px 25px;
  padding-bottom: 15px;
  color: #39393B;
  font-weight: 600;
}

.tab-menu-list ul li a.active {
  border-bottom: 3px solid #0087C5;
}

.top_section_box_right {
  text-align: right;
}

.page-home-page .sustainbility-row-inner {
  /* display: flex; */
  margin: 0px -15px;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sustainbility-row-inner {
  display: flex;
  margin: 0px -15px;
  flex-wrap: wrap;
  gap: 20px;
}

.sustainbility-colm-inner {
  width: 100%;
  padding: 0px;
  position: relative;
}

.box_sustainibility {
  padding: 25px 25px 100px;
  background: #fff;
  border-radius: 16px;
  height: 100%;
}

.box_sustainibility h5 {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.box_sustainibility h5:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 2px;
  width: 40px;
  background: #0087C5;
}

.box_sustainibility p {
  font-size: 14px;
  font-weight: 400;
  color: #393939;
  line-height: 1.6;
}

.btn_common {
  display: flex;
  align-items: center;
  color: #0087C5;
  font-size: 14px;
  font-weight: 600;
  gap: 10px;
  transition: color 0.3s ease;
}

.btn_common span {
  margin-left: 4px;
  display: inline-block;
  line-height: 0px;
}

.btn_common span svg {
  transition: transform 0.3s ease;
}

.btn_common:hover span svg {
  transform: translateX(5px);
}

.sustainbility-colm-inner .btn_box_common {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 40px;
  left: 0px;
  right: 0px;
  padding: 0 40px
}

.name_link_s_colm {
  width: calc(100% - 50px);
}

.icon_s_colm {
  width: 50px;
}

.icon_s_colm img {
  width: 100%;
  display: block;
  height: auto;
}

.newsevent-wrapper .bnr-btn.d-flex .isgecxxsheading {
  color: #0087C5;
  gap: 10px;
}

/*--FOOTER--*/
footer {
  background: #0087C5;
  color: #fff;
  padding: 40px 20px;
  z-index: 123;
  position: relative;
}

footer .top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .f-nav-left {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 70%;
}

footer .footer-column {
  min-width: 150px;
  flex: 1;
}

footer .accordion-toggle p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
  cursor: pointer;
  color: #f6f6f6;
}

footer .f-nav-right .accordion-toggle p {
  margin-bottom: 10px;
}

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

footer .footer-column ul li {
  margin-bottom: 8px;
}

footer .footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  color: #f6f6f6;
}

footer .footer-column ul li a:hover {
  font-weight: 600;
}

footer .f-nav-right {
  width: 20%;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
}

footer .f-nav-right .right-text .address p {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
}


footer .right-text {
  font-size: 14px;
  color: #fff;
}

footer .bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #fff;
  justify-content: space-between;
  align-items: center;
}

footer .bottom .f-f-left {
  padding: 15px 0;
  text-align: left;
  width: 80%;
}

footer .bottom .f-f-right {
  width: 20%;
  padding-left: 15px;
}

.soical-media {
  padding: 40px 0;
}

.soical-media ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.soical-media .social-icon {
  padding: 15px 0 24px;
}

.contact-info ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  padding-bottom: 10px;
}

.contact-info ul li a span {
  line-height: 0;
}

.contact-info p {
  text-align: left;
  padding: 20px 0 0;
}

.soical-media p,
.contact-info p {
  font-size: 18px;
  font-weight: 600;
}

.copy-right p {
  font-size: 12px;
  color: #fff;
  font-weight: 400 !important;
}

footer .footer-column .accordion-toggle p svg {
  display: none;
}

.fixed-social ul {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translate(0%, -50%);
  transition: fill 0.3s ease;
  z-index: 1;
}

.fixed-social ul li {
  margin-bottom: 0px
}

.fixed-social ul li a {
  display: block;
  line-height: 0;
}

.fixed-social ul li a svg {
  width: 30px;
  height: 40px;
  fill: white;
  transition: fill 0.3s ease;
  line-height: 0;
}

.soical-media .social-icon ul li svg {
  width: 38px;
  height: 38px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 30px;
  width: 300px;
  height: 67px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.download-btn .icon {
  background-color: #fff;
  color: #008cce;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-weight: bold;
}

.download-btn:hover {
  background-color: #007bb5;
}

/*Interactive*/

.slick-dots {
  display: none !important;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.legacy_legacy .fixed-top-section .item-bottom .d-flex {
  align-items: stretch;
}

.newsevent-wrapper.fixed-top-section .item-bottom .d-flex {
  align-items: stretch;
}

.newsevent-wrapper .right-image-container img {
  border-radius: 24px;
}

.newsevent-wrapper.fixed-top-section .item-bottom .inside-wrap {
  align-items: flex-end;
}


/*Header*/
.header {
  position: fixed;
  top: 0;
  z-index: 123456;
}

.header.activechange {
  background-color: #0087C5;
  transition: 0.5s ease-in;
}

/* Search bar styles moved to top section for better organization */

body.search header {
  background: #0087C5;
}

body.hidden {
  overflow: hidden;
  height: 100%;
}

.breadcrumb-nav .breadcrumb li {
  margin: 0;
}

.breadcrumb-nav .breadcrumb-item a,
.breadcrumb-nav .breadcrumb-item.active {
  font-size: 14px;
}

footer .download-btn.d-desk {
  display: flex !important;
}


/*--commonpopup--*/
body.whole-common-popup-open {
  overflow: hidden;
  /* stop background scroll */
}

/* Overlay */
.whole-common-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Popup Box */
.whole-common-popup-box {
  background: linear-gradient(90deg, #6B509F -18.82%, #22428D 115.08%);
  padding: 20px;
  max-width: 1190px;
  width: 90%;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: whole-common-popup-fadeIn 0.3s ease;
}

/* Close Button */
.whole-common-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
}

@keyframes whole-common-popup-fadeIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Show Popup */
.whole-common-popup-show {
  display: flex !important;
}

.popup-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.popup-wrapper .right h5.heading-text {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  padding-bottom: 30px;
}

.popup-wrapper .right .para-head p {
  color: #FFFFFFB2;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  width: 80%;
}

.popup-wrapper .right .para-head {
  height: 150px;
  overflow-y: scroll;
}

/*Scroll bar*/
.scrollbar {
  margin-left: 30px;
  float: left;
  height: 300px;
  width: auto;
  overflow-y: scroll;
  margin-bottom: 25px;
}

.force-overflow {
  min-height: auto;
}

/*
    *  STYLE 2
    */

#style-2::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #FFFFFF1A;
}

#style-2::-webkit-scrollbar {
  width: 3px;
  background-color: #FFFFFF1A;
}

#style-2::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #E4C511;
}


.error-404 .page-content {
  text-align: center;
}

.page-process-equipment .isgec-tech-slider-box .isgec-tech-slider .swiper-wrapper {
  justify-content: flex-start;
}

/* .newsevent-wrapper .item-bottom.mobile-news{display: none;} */

#banner-slider .slick-slide {
  margin: 0;
}


/* Mobile Styles */
@media (min-width: 1900px) {
  .popup-wrapper .right h5.heading-text {
    font-size: 24px;
  }

  .popup-wrapper .right .para-head p {
    font-size: 16px;
  }

  .isgecxlheading {
    font-size: 48px;
  }

  .isgeclgheading {
    font-size: 40px;
  }

  .isgecmdheading {
    font-size: 36px;
  }

  .isgecsmheading {
    font-size: 24px;
  }

  .isgecxsheading {
    font-size: 18px;
  }

  .isgecxxsheading {
    font-size: 16px;
  }

  .isgecxxssheading {
    font-size: 15px;
  }

  .nav-item,
  .menu-item {
    font-size: 18px;
    font-weight: 400;
  }

  .nav-item.active,
  .current_page_item a {
    font-weight: 600;
  }

  .container {
    width: 92%;
  }

  .newsevent-wrapper .left {
    width: 62%;
  }

  .newsevent-wrapper .right {
    width: 38%;
  }

  .fixed-top-section .legacy-deatils h3 {
    font-size: 36px;
    line-height: 50px;
  }

  .home-heading {
    font-size: 72px;
  }

  .banner-slider .slider-for .for-click .isgecxxssheading {
    width: 215px;
  }

  .fixed-top-section .legacy-deatils p {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }

  .fixed2-top-section .legacy-deatils {
    align-items: center;
  }

  .fixed-top-section .right-item p,
  .tabs-container .tabs-details .item p {
    font-size: 16px;
  }

  .counter-box .isgecxxssheading {
    font-size: 16px;
  }

  .tab-content .swiper .item .home-heading {
    font-size: 100px;
  }

  .tab-content .swiper .item p {
    font-size: 16px;
  }

  .tab-wrapper .isgecxsheading {
    font-size: 18px;
  }

  .tab-menu-list ul li a {
    font-size: 20px;
  }

  .cta-button {
    font-size: 15px;
  }

  .box_sustainibility h5 {
    font-size: 24px;
  }

  /* .box_sustainibility:hover p{font-size: 18px; transition: .3s ease-in-out;} */
  .btn_common {
    font-size: 16px;
  }

  footer .accordion-toggle p {
    font-size: 18px;
  }

  footer .footer-column ul li a {
    font-size: 16px;
  }

  .soical-media p,
  .contact-info p {
    font-size: 20px;
    font-weight: 600;
  }

  .copy-right p {
    font-size: 14px;
  }

  .download-btn {
    font-size: 18px;
  }

  .soical-media .social-icon ul li svg {
    width: 44px;
    height: 44px;
  }

  /*--Section 1--*/
  .counter-number {
    font-size: 72px;
    font-weight: 400;
  }

  /*Pixel perfect*/
  .cta-button {
    padding: 6px 9px 6px 20px;
  }

  .search-toggle {
    width: 48px;
    height: 48px;
  }

  .big-image .cta-button {
    margin-top: 0;
  }



  .banner-slider .slider-for .for-click .isgecxxssheading {
    font-size: 16px;
  }

  .legacy-deatils {
    gap: 40px;
  }

  .counter-box {
    padding: 35px 25px;
  }

  .cta-button {
    padding: 6px 9px 6px 20px;
  }

}

/* Mobile Styles */
@media (min-width: 1200px) {


  #mainNav {
    margin: 0 auto;
  }

  .nav-main {
    justify-content: center;
    position: relative;
  }

  .header-logo {
    position: absolute;
    left: 0px;
  }

  .last-item {
    position: absolute;
    right: 15px;
  }
}

@media (max-width: 1600px) {
  .home-heading {
    font-size: 48px;
  }

  .header-logo img {
    max-height: 37px;
  }

  .nav-item,
  .menu-item {
    font-size: 13px;
  }

  .header-nav {
    gap: 25px;
  }

  /* .fixed-top-section .legacy-deatils h3{font-size: 28px;}
.fixed-top-section .right-item p{line-height: 24px;} */
  .counter-box {
    padding: 20px;
  }

  .counters .counter-number {
    font-size: 45px;
  }

  .new-part2 .isgecsmheading {
    font-size: 18px;
  }

  .tab-content .swiper .item .home-heading {
    font-size: 50px;
  }

  .tab-content .swiper .item h4 {
    font-size: 18px;
  }

  .banner-slider .slider-for {
    bottom: 120px;
  }

}

@media (max-width: 1440px) {

  .header-logo img {
    max-height: 36px;
  }

  .header-nav {
    gap: 18px;
  }

  .nav-item,
  .menu-item {
    font-size: 12px;
  }

  .cta-button .text {
    margin-right: 8px;
    font-size: 12px;
  }

  .legacy-deatils {
    gap: 30px;
  }

  .tab-wrapper .tab .isgecxsheading {
    font-size: 14px;
  }

  .tab-wrapper .tab.active .isgecxsheading {
    font-size: 14px;
  }

  .tab-content .swiper .item p {
    font-size: 13px;
  }

  .box_sustainibility h5 {
    font-size: 18px;
  }

  .box_sustainibility p {
    font-size: 13px;
    line-height: 1.4;
  }

  .btn_common {
    font-size: 13px;
  }

  .download-btn {
    height: 57px;
  }

  .fixed-top-section .right-item p {
    font-size: 13px;
  }

  .tab-menu-list ul li a {
    font-size: 14px;
  }

  .fixed-top-section .legacy-deatils h3 {
    font-size: 26px;
  }

  footer .f-nav-left {
    width: 70%;
  }

  .new-part2 .isgecsmheading {
    font-size: 14px;
  }

  .content-box .isgecsmheading {
    min-height: 100px;
  }

  .tab-content .swiper .item p,
  .tab-content .swiper .item h4 {
    padding-top: 20px
  }

  .home-heading {
    margin-bottom: 30px;
  }

}


@media (max-width: 1366px) {
  .header-logo img {
    max-height: 40px;
  }

  .padding-tb {
    padding: 60px 0;
  }

  .search-toggle {
    width: 34px;
    height: 34px;
  }

  .cta-button {
    font-size: 12px;
  }

  .cta-button svg {
    width: 24px;
    height: 24px;
  }

  .last-item {
    right: -15px;
  }

  .header-logo {
    left: -15px;
  }

  .home-heading {
    font-size: 42px;
  }

  .counter-number {
    font-size: 30px;
  }

  /*---anilstart--here--*/
  .content-box .isgecsmheading {
    min-height: 98px;
  }

  .soical-media .social-icon ul li svg {
    width: 36px;
    height: 36px;
  }

  footer .f-nav-left {
    gap: 10px;
  }

  .tabs-container .tabs-details .item p {
    font-size: 12px;
  }

  footer .footer-column ul li a {
    font-size: 12px;
  }

  footer .f-nav-right .right-text .address p {
    font-size: 13px;
  }

  .tab-content .swiper .item img {
    height: 396px;
  }

  .breadcrumb-nav .breadcrumb-item a,
  .breadcrumb-nav .breadcrumb-item.active {
    font-size: 13px;
  }
}

@media (max-width: 1280px) {
  .banner-slider .slider-for {
    bottom: 100px;
  }

  footer .footer-column {
    min-width: 130px;
  }

  footer .f-nav-left {
    flex-wrap: nowrap;
  }
}

@media (max-width: 1199px) {
  .padding-tb {
    padding: 60px 0;
  }

  #closeBtn {
    display: block;
  }

  .sidebar-togle-wraper {
    display: block;
    order: -1;
    margin-right: auto;
  }

  nav {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 250px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
    border-right: 2px solid #007bff;
  }

  nav.active {
    left: 0;
  }

  nav .close-nav {
    display: block;
    margin-left: auto;
    font-size: 24px;
    margin-bottom: 0px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    z-index: 1234;
  }

  .nav-link,
  .menu-item a {
    color: #4d4d4d;
  }

  .header-nav {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: flex-start;
  }

  .header-nav .nav-link,
  .header-nav .menu-item a {
    font-weight: 700;
    color: #4d4d4d;
  }

  .dropdown {
    position: relative;
    box-shadow: none;
    overflow: hidden;
    height: auto;
    max-height: none;
    padding: 0;
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease;
    top: 0;
  }

  .nav-item.active .dropdown,
  .current_page_item a .sub-menu {
    display: block;
    opacity: 1;
    padding: 10px 0;
  }

  .nav-item.active .dropdown a,
  .current_page_item a .sub-menu a {
    font-weight: 600;
    color: #555;
  }

  .bnr-btn {
    margin-top: 0px;
    width: 100%;
  }

  .nav-main {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .container {
    max-width: 100%;
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-main {
    padding: 0;
  }

  .sidebar-togle-wraper {
    margin-right: 10px;
  }

  .last-item {
    position: absolute;
    right: 15px;
  }

  .home-slider .details {
    width: 60%;
  }

  .banner-slider .slider-for {
    bottom: 30px;
    gap: 20px
  }

  .banner-slider .slider-for .for-click .isgecxxssheading {
    padding-top: 10px;
    font-size: 13px;
  }

  .special-pb {
    padding: 0 30px
  }


  /*Tabs slider*/
  .tabs-container .tabs-details .slider {
    display: initial;
  }

  .newsevent-wrapper .right {
    width: 44%;
  }

  .newsevent-wrapper .left {
    width: 56%;
  }

  .newsevent-wrapper .inside-wrap .box {
    width: 100%;
  }

  .newsevent-wrapper .inside-wrap .bnr-btn {
    width: 100%;
    text-align: left;
    margin-top: 15px;
  }

  .newsevent-wrapper .inside-wrap .bnr-btn a.d-flex {
    display: inline-flex;
  }

  .newsevent-wrapper .inside-wrap.d-flex {
    display: block;
  }

  .sustainbility-row .sustainbility_colm:nth-child(1) {
    display: block;
  }

  .sustainbility_colm {
    width: 100%;
  }

  .sustainbility-row .sustainbility_colm:nth-child(1) {
    display: none;
  }

  .home-heading {
    font-size: 30px;
  }

  .tab-menu-list ul li a.active {
    text-align: center;
  }

  footer .bottom .f-f-left {
    width: 79%;
  }

  footer .bottom .f-f-right {
    width: 21%;
  }

}

@media (max-width: 991px) {

  .fixed-top-section .right-item {
    margin-top: 20px;
  }

  .home-slider .details {
    width: 56%;
  }

  .home-heading {
    font-size: 40px;
  }

  .slider-for .for-click {
    width: 80%;
  }

  /* .fixed-top-section .item-top {
    grid-template-columns: 1fr;
  } */
  .fixed-top-section .item-bottom .d-flex {
    flex-direction: column;
  }

  .counters {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 90%;
    padding: 15px;
  }

  .counter-box {
    min-width: 100%;
  }

  .counter-number {
    font-size: 24px;
  }

  .legacy-wrapper .item-top {
    display: block;
  }

  .our-business .fixed-top-section .item-top {
    grid-template-columns: auto;
  }

  .our-business .fixed-top-section .item-top .right-item {
    display: none;
  }

  .tab-content .swiper .item .home-heading {
    font-size: 60px;
  }

  .search-bar {
    width: 95%;
    max-width: 600px;
    padding: 40px 30px;
  }
  
  .search-bar input {
    font-size: 20px;
    padding: 15px 50px 15px 0;
  }
  
  .search-submit-btn svg {
    width: 24px;
    height: 24px;
  }

  /* .newsevent-wrapper .item-bottom{display: none;} */
  #blog_article {
    display: block;
  }


  .newsevent-wrapper .left {
    width: 100%;
  }

  .newsevent-wrapper .bnr-btn.d-flex {
    flex-direction: row;
  }

  .newsevent-wrapper .bnr-btn a.isgecxxsheading.d-flex {
    flex-direction: row;
  }

  .newsevent-wrapper .right {
    display: none;
  }


  .image-wrapper {
    width: 100%;
  }

  .info-container {
    display: none;
  }

  /*Footer*/
  footer .f-nav-left {
    flex-direction: column;
    width: 100%;
  }

  footer .f-nav-right {
    width: 50%;
  }

  footer {
    padding-bottom: 0;
  }

  footer .bottom {
    flex-direction: column-reverse;
    margin-top: 0;
  }

  footer .top {
    display: block;
  }

  footer .f-nav-right {
    padding-left: 0;
    padding-top: 30px;
  }

  footer .footer-column {
    border-bottom: 1px solid #FFFFFF1A;
  }

  footer .accordion-toggle p {
    margin-top: 10px;
  }

  footer .bottom .f-f-right {
    width: 100%;
    padding-left: 0;
  }

  .footer-column .accordion-toggle p {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  footer .footer-column .accordion-toggle p svg {
    display: block;
  }

  footer .footer-column ul {
    display: none;
  }

  footer .footer-column.active ul {
    display: block;
    margin-top: 0px;
    margin-bottom: 20px;
  }

  footer .footer-column ul li a,
  footer .f-nav-right .right-text .address p {
    color: #dadada;
  }

  footer .bottom .f-f-left {
    padding-top: 30px;
  }

  .soical-media {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  footer .accordion-toggle p {
    margin-bottom: 20px;
  }

  .contact-info p,
  footer .f-nav-right {
    padding-top: 30px;
  }

  .counters::before,
  .counters::after {
    display: none;
  }

  .overlay {
    width: 100%;
    line-height: 1.4;
  }

  footer .footer-column.active .accordion-toggle span {
    transform: rotate(180deg);
  }

  .sustainbility-row-inner .slick-dots li.slick-active button:before {
    top: 6px;
  }

  /* .newsevent-wrapper .item-bottom.desktop-news{display: none;}
  .newsevent-wrapper .item-bottom.mobile-news{display: block;} */
}

@media (max-width: 767px) {

  .breadcrumb-nav {
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .isgecxlheading {
    font-size: 48px;
  }

  .isgeclgheading {
    font-size: 40px;
  }

  .isgecmdheading {
    font-size: 28px;
  }

  .isgecsmheading {
    font-size: 18px;
  }

  .isgecxsheading {
    font-size: 14px;
  }

  .isgecxxsheading {
    font-size: 14px;
  }

  .isgecxxssheading {
    font-size: 12px;
  }

  .d-desk {
    display: none !important;
  }

  .d-mobile {
    display: block !important;
  }

  .bnr-btn.bnr-btn2 .cta-button {
    width: 100%;
    justify-content: center;
    margin: 20px 0 0;
    padding: 10px;
  }

  .padding-tb {
    padding: 40px 0;
  }

  .home-slider .details {
    top: auto;
    bottom: 40px;
    transform: none;
    width: 80%;
  }

  .slick-dots {
    display: block !important;
  }

  .slick-dots li button:before {
    color: #0079AC;
    opacity: 1;
  }

  .slick-dots {
    bottom: -35px;
  }

  .slick-dots li.slick-active button:before {
    color: #005f7f;
    opacity: 1;
  }

  /* .slick-dots li button:before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: #0079AC;
  border-radius: 50%;
  opacity: 1;
  transition: width 0.3s, border-radius 0.3s, background 0.3s;
}


.slick-dots li.slick-active button:before {
  width: 24px;
  border-radius: 20px;
  background: #005f7f;
} */
  .home-heading {
    font-size: 24px;
  }

  .slider-for {
    display: none;
  }

  .fixed-top-section .item-top {
    gap: 10px;
  }

  .fixed-top-section .item-bottom {
    margin-top: 30px;
  }

  .fixed-top-section .legacy-deatils h3 {
    font-size: 28px;
  }

  .legacy-deatils {
    flex-direction: column;
    gap: 10px;
  }

  .search-bar {
    width: 90%;
    max-width: 500px;
    padding: 30px 20px;
  }
  
  .search-bar input {
    font-size: 18px;
    padding: 12px 45px 12px 0;
  }
  
  .search-close-btn {
    top: -180px;
    right: 8px;
   
  }
  
  .search-close-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .search-submit-btn svg {
    width: 22px;
    height: 22px;
  }

  .counters .counter-number {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .counter-box {
    padding: 14px 14px;
  }

  .counter-box .isgecxxssheading {
    text-wrap-style: pretty;
  }

  #tabs-slider .slick-list {
    padding-right: 60px
  }

  .tabs-wrapper .tab {
    font-weight: 600;
  }

  .common-section .fixed-top-section {
    padding: 20px;
    width: 95%;
    margin: auto;
  }

  .fixed-top-section .legacy-deatils {
    align-items: flex-start;
  }

  .tab-content .swiper .item .home-heading {
    font-size: 40px;
    font-weight: 600;
  }

  .tabs-container .tabs-details .item.section-grey {
    background-color: #fff !important;
  }

  .tabs-container .tabs-details .item p {
    font-size: 14px;
  }

  .tab-content .swiper .item h4 {
    font-size: 18px;
  }

  /* .jot{background: url('../images/joinour-tem-mobile.jpg') no-repeat center center/contain;} */

  .blogs .article-slider .article-text {
    height: 216px;
    padding: 0px 20px;
  }

  #blog_article .article-wrap img {
    height: 193px;
  }

  #blog_article .article-wrap.article-special img {
    height: 409px;
    width: 100%;
  }

  .blogs .article-slider .purvivxsheading {
    margin: -30px 0 0;
  }


  .image-container,
  .news-left-box .content-box {
    display: inline-block;
    white-space: normal;
  }

  .newsevent-wrapper .image-container img {
    height: 320px;
  }

  .newsevent-wrapper .content-box {
    margin-top: 0px;
    width: 100%;
  }

  .our-business .common-section .fixed-top-section {
    padding: 36px 20px;
  }

  .news-left-box {
    margin: 0px;
  }

  .newsevent-wrapper .left .section-grey {
    position: relative;
  }

  .newsevent-wrapper .bnr-btn.d-flex {
    position: absolute;
    bottom: 25px;
    left: 10px;
    right: 10px;
    width: auto;
  }

  .newsevent-wrapper .content-box {
    padding: 0px 5px;
  }

  .newsevent-wrapper .image-container {
    padding: 0px 5px;
  }

  .new-part2 {
    margin-right: -15px;
  }

  .news-event {
    overflow: hidden;
  }

  .newsevent-wrapper .item-top {
    display: block;
  }

  .newsevent-wrapper .right-item {
    display: none;
  }

  sustainbility-row-inner {
    display: block;
  }

  .heading_common_top {
    display: block;
    margin-bottom: 20px;
  }

  .heading_top-left_inner {
    width: 100%;
  }

  /* .top_section_box_left{display: block;} */
  .top_section_box_left .isgecmdheading {
    width: 100%;
  }

  .top_section_box_left,
  .top_section_box_right {
    width: 100%;
  }

  .sustainabilty-wraper {
    padding: 36px 20px;
    margin: auto;
    width: 95%;
  }

  .heading_top-left_inner .isgecxxsheading {
    margin-bottom: 15px;
  }

  .tab-menu-list ul {
    display: flex;
    margin-top: 20px;
  }

  .tab-menu-list ul li {
    flex: auto;
  }

  .section_sustainabilty {
    overflow: hidden;
  }

  .sustainbility-colm-inner {
    padding: 0px 8px;
  }

  .sustainbility-row-inner {
    display: block;
    margin: 0px -8px;
  }

  .box_sustainibility {
    padding: 24px;
  }

  .box_sustainibility h5 {
    font-size: 18px;
  }

  .counters {
    position: static;
  }

  .counters {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0px;
    margin-top: 20px;
    max-width: 100%;
  }

  .sustainbility-colm-inner .btn_box_common {
    padding: 0;
  }


  .sustainbility-colm-inner .btn_box_common {
    position: inherit;
  }

  /*Footer*/
  footer .top {
    display: block;
  }

  footer .f-nav-left,
  footer .f-nav-right {
    width: 100%;
    padding-left: 0;
  }

  .soical-media p {
    font-size: 18px;
    font-weight: 600;
  }

  .copy-right p {
    font-size: 10px;
  }

  footer .bottom .f-f-left {
    width: 100%;
  }

  .fixed-social {
    display: none;
  }

  .fixed-social ul {
    top: 50px;
  }

  .fixed-social ul li a svg {
    width: 20px;
    height: 20px;
  }

  .tab-wrapper .isgecxsheading span:nth-child(2) {
    margin-left: 0;
  }

  .tab-wrapper .tab .isgecxsheading {
    font-size: 14px;
  }

  .special-pb {
    padding: 15px;
  }


  .download-btn {
    width: 100%;
    height: 57px;
  }

  .cta-button {
    font-size: 14px;
    padding: 10px;
  }

  .big-image .cta-button {
    margin-top: 0;
  }

  .home-heading {
    margin-bottom: 20px;
  }

  .image-wrapper img,
  .info-container img {
    border-radius: 12px;
  }

  .cta-button .text {
    font-size: 14px;
  }

  .tab-content .swiper .item {
    margin-left: 0;
  }

  .tab-content .swiper .item p {
    font-size: 14px;
  }

  .tab-menu-list ul li a {
    text-align: center;
  }

  .top_section_box_right {
    margin: 40px 0;
  }

  .tab-content .swiper .item img {
    height: 336px;
  }

  .cta-button:hover .text {
    transform: none;
  }

  .sustainbility-row {
    gap: 0;
  }

  .cta-button:hover .icon:not(.clone) {
    opacity: 1;
    transform: translateX(0px);
  }

  .cta-button:hover .icon.clone {
    transform: none;
  }

  .sustainbility-row-inner .slick-dots {
    bottom: -25px;
  }

  .sustainbility-row-inner .slick-dots li {
    width: 10px;
  }

  .sustainbility-row-inner .slick-dots li.slick-active button:before {
    /* color: #005f7f; */
    opacity: 1;
    width: 20px;
    background: #005f7f;
    height: 5px;
    border-radius: 20px;
    top: 6px;
    font-size: 0;
  }

  .page-home-page .sustainbility-row-inner {
    display: flex;
  }

  .breadcrumb-nav .breadcrumb {
    gap: 10px !important;
  }

  .breadcrumb-nav .breadcrumb li {
    margin: 0 !important;
    padding: 0 5px !important;
  }

  #tab5 .sustainbility-row .sustainbility_colm:last-child {
    display: none;
  }

  #tab5 .sustainbility-row .sustainbility_colm:first-child .sustainbility-row-inner {
    display: block;
  }

  /* .sustainbility-row .sustainbility-row-inner .sustainbility-colm-inner .box_sustainibility{height: auto !important;} */
  footer .download-btn.d-desk {
    margin-bottom: 30px;
  }

  footer .download-btn.d-desk {
    display: none !important;
  }



  /*Scrollbar*/
  .popup-wrapper .right h5.heading-text {
    font-size: 18px;
    padding-bottom: 20px;
  }

  .popup-wrapper .right .para-head {
    margin-left: 0;
    height: 250px;
  }

  .popup-wrapper .right .para-head p {
    width: 90%;
  }

}

@media (max-width: 480px) {
  .breadcrumb-nav {
    font-size: 12px;
  }

  .cta-button {
    font-size: 14px;
    padding: 11px;
  }

  .cta-button .text {
    margin-right: 15px;
  }

  /* .search-toggle {
    opacity: 0;
  } */

  .header-logo img {
    max-height: 30px;
    width: auto;
  }

  .cta-button .icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .search-bar {
    padding: 25px 15px;
    width: 95%;
    max-width: 400px;
  }
  
  .search-bar input {
    font-size: 16px;
    padding: 10px 40px 10px 0;
  }
  
  /* .search-close-btn {
    top: 10px;
    right: 10px;
    padding: 5px;
  } */
  
  .search-close-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .search-submit-btn svg {
    width: 20px;
    height: 20px;
  }

  .search-toggle {
    width: 30px;
    height: 30px;
  }

  .search-toggle svg {
    width: 15px;
    height: auto;
  }

  .nav-main .cta-button {
    padding: 5px 5px 5px 15px;
  }

  .nav-main .cta-button .text {
    font-size: 12px !important;
  }

  .nav-main .cta-button .icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 479px) {
  .fixed-top-section .legacy-deatils h3 {
    font-size: 24px;
  }
}

@media screen and (max-width:375px) {

  .sidebar-toggle-menu svg {
    width: 24px;
    height: 14px;
  }

  .search-toggle {
    width: 28px;
    height: 28px;
  }

  .search-toggle svg {
    width: 14px;
    height: auto;
  }

  .nav-main .cta-button {
    padding: 4px 4px 4px 13px;
  }

  .nav-main .cta-button .text {
    font-size: 11px !important;
  }

  .nav-main .cta-button .icon {
    width: 22px;
    height: 22px;
  }

}

.sidebar-toggle-menu {
  cursor: pointer;
  margin-left: 10px;
}

.sidebar-toggle-menu span.line {
  display: block;
  width: 25px;
  height: 3px;
  margin: 4px 0;
  background: #333;
}

.big-image {
  position: relative;
}

.big-image::after,
.banner-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  z-index: 12;
}

.home-slider .details {
  z-index: 123;
}

.page-industrial .banner-item::after {
  background: none;
}


@media only screen and (width: 428px) and (-webkit-device-pixel-ratio: 3) {
  body {
    overflow: hidden;
  }
}

/*Career Form Css*/
.date-field {
  position: relative;
  font-family: system-ui, sans-serif;
  margin: 12px 0;
  max-width: 300px;
}

.date-field input {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
}

.date-field label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 14px;
  color: #888;
  pointer-events: none;
  transition: all 0.2s ease;
  background: #fff;
  padding: 0 4px;
}

/* When input has value or focus → float label up */
.date-field input:focus+label,
.date-field input:not(:placeholder-shown)+label {
  top: -8px;
  font-size: 12px;
  color: #16a34a;
  /* green highlight */
}

/*End*/
/*Thank you msg disply none*/
.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

.feature-text {
  font-size: 14px;
}

/* Search Bar Hide for Policy*/
body.term-policies .search-years {
  display: none !important;
}


.right-image-container {
  position: relative;
  display: inline-block;
}

.right-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);  
  pointer-events: none;    
  border-radius: 22px;    
}
.newsevent-wrapper .inside-wrap {
z-index: 99;
}

.moreless-buttonab{text-transform: capitalize;}

.job_header_top .job-col{padding-left: 0;}
.custom-search-heading span{color: #0087c5;text-transform: capitalize;}
.custom-card-btn{background-color: #0087C5 !important;}
.custom-search-bar{margin-top: 130px;}

@media (max-width: 767px) {
    .name_link_s_colm{
        margin-bottom: 30px;
    }

    .legacy-deatils{margin-left: 15px;text-align: center;}
    .isgec-tech-partner .featured-slide-btn-box {
      bottom: 0px;
      position: static;
      margin-top: 20px;
      width: 100%;
      justify-content: flex-end;
  }
  

}


#wpcf7-f3711-o1 .form-group .wpcf7-not-valid-tip {
  bottom: -43px;
}
.popup-content .form-popup-box{gap: 32px;}
