/* Main Banner */
.main-banner {
  position: relative;
}

.main-banner-textblock-wrap {
  position: relative;
  z-index: 3;
  padding-block: 176px;
}

.main-banner__content {
  position: relative;
  font-size: 18px;
  color: var(--austry-white);
}

.main-banner__label {
  border: solid 1px var(--austry-base);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 6px;
  background-color: rgba(var(--austry-base-rgb), 0.3);
  color: var(--austry-base-light);
  display: inline-block;
  margin-block-end: 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-banner__title {
  position: relative;
  font-size: 80px;
  color: var(--austry-white);
  font-weight: bold;
  line-height: 90px;
  letter-spacing: -0.03em;
  margin-bottom: 27px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-banner__title span {
  color: var(--austry-base);
}

.main-banner__subtitle {
  font-size: 50px;
  color: var(--austry-white);
  font-weight: 500;
  padding-bottom: 30px;
  line-height: 36px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-banner__text {
  font-size: 18px;
  color: var(--austry-white);
  font-weight: 400;
  padding-bottom: 39px;
  line-height: 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-banner.active .main-banner__text,
.main-banner.active .main-banner__subtitle {
  visibility: visible;
  opacity: 0.9;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-banner__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-banner.active .main-banner__title,
.main-banner.active .main-banner__label,
.main-banner.active .main-banner__btn-box,
.main-banner.active .main-banner__row {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-banner__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-banner__card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px 20px;
  color: #fdb9e5;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}

.main-banner__card h2 {
  font-size: 32px;
  margin: 0;
  font-weight: 500;
  color: var(--austry-white);
}

.main-banner__card p {
  font-size: 12px;
  letter-spacing: 1px;
}

/* Responsibility Impact */
.responsibility-impact {
  position: relative;
  padding-block-end: 120px;
}

.responsibility-impact .section-title {
  margin-bottom: 30px;
}

.responsibility-impact-content {
  font-size: 16px;
  line-height: 28px;
  padding-inline-end: 60px;
}

.responsibility-impact-media {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.responsibility-impact-media-image {
  position: relative;
  max-width: calc(50% - 12px);
  min-width: calc(50% - 12px);
}

.responsibility-impact-media-image:nth-child(1) {
  order: 1;
}

.responsibility-impact-media-image:nth-child(3) {
  order: 4;
}

.responsibility-impact-media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.responsibility-impact-media-card {
  background-color: var(--austry-base-light);
  border-radius: 16px;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: calc(50% - 12px);
  min-width: calc(50% - 12px);
}

.responsibility-impact-media-card:nth-child(2) {
  background-color: var(--austry-green-light);
  align-self: end;
  order: 2;
}

.responsibility-impact-media-card:nth-child(4) {
  order: 3;
  align-self: flex-start;
}

.responsibility-impact-media-icon {
  max-width: 30px;
  margin-block-end: 10px;
}

.responsibility-impact-media-card h3 {
  font-size: 24px;
  font-weight: 500;
}

.responsibility-impact-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.responsibility-impact-list li {
  position: relative;
  padding-inline-start: 20px;
}

.responsibility-impact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: var(--austry-base);
}

.responsibility-impact-list h3 {
  font-size: 24px;
  font-weight: 500;
}

.responsibility-impact-list p {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

/* about-banner */
.about-banner {
  position: relative;
  padding-block: 30px;
}

.about-banner__content {
  position: relative;
  padding-block: 30px;
}

.about-banner__title {
  margin: 0;
  color: var(--austry-black);
  font-size: 80px;
  line-height: 86px;
  font-weight: bold;
  letter-spacing: -0.03em;
  margin-block-end: 10px;
}

.about-banner__title span,
.about-banner__text span {
  color: var(--austry-base);
}

.about-banner__subtitle {
  font-size: 40px;
  font-weight: 500;
  line-height: 36px;
  position: relative;
  margin-block-end: 16px;
  padding-block-end: 20px;
}

.about-banner__subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100px;
  height: 3px;
  background-color: var(--austry-base);
}

.about-banner__text {
  font-size: 18px;
  font-weight: 400;
  margin-block-end: 50px;
  line-height: 30px;
}

.about-banner__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-banner__list li {
  position: relative;
  padding-inline-start: 20px;
}

.about-banner__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: var(--austry-base);
}

.about-banner__list h3 {
  font-size: 30px;
  font-weight: 500;
}

.about-banner__list p {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--austry-base);
}

.about-banner__media {
  position: relative;
  padding-block-end: 80px;
  height: 100%;
}

.about-banner__media img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  max-height: 445px;
}

.about-banner__media-card {
  background-color: var(--austry-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.15);
  color: var(--austry-gray);
  padding: 45px 30px;
  border-top: solid 5px var(--austry-base);
  max-width: 181px;
  text-align: center;
  position: absolute;
  left: -90px;
  bottom: 0;
  z-index: 1;
}

.about-banner__media-card p {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--austry-base);
}

.about-banner__media-card h3 {
  font-size: 30px;
  font-weight: 500;
}

/* about-four__loom */
.about-four__loom {
  position: relative;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-block-start: 91px;
}

.about-four__loom-list {
  list-style: none;
  padding-left: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 8px;
}

.about-four__loom-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-four__loom-icon {
  width: 30px;
  height: 30px;
  background-color: var(--austry-base);
  color: var(--austry-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-four__loom-icon img {
  width: 16px;
  height: 16px;
  object-fit: cover;
  filter: brightness(0) invert(1);
}

.about-four__loom-content {
  flex: 1;
  font-size: 14px;
}

.about-four__loom-content h4 {
  font-size: 20px;
  text-transform: capitalize;
}

.about-four__loom-img {
  max-width: calc(50% - 10px);
  min-width: calc(50% - 10px);
  position: relative;
}

.about-four__loom-img img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
 /* border-radius: 16px; */
  max-height: 250px;
  min-height: 250px;
}

.about-four__loom-card {
  max-width: calc(50% - 10px);
  min-width: calc(50% - 10px);
  background-color: var(--austry-base-light);
  border-radius: 16px;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: end;
}

.about-four__loom-card img {
  max-width: 50px;
}

.about-four__loom-img:last-child {
  max-width: 100%;
  min-width: 100%;
  padding-block-end: 30px;
}

.about-four__loom-img-card {
  background-color: var(--austry-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.15);
  color: var(--austry-gray);
  padding: 45px 30px;
  border-left: solid 5px var(--austry-base);
  max-width: 230px;
  position: absolute;
  right: -40px;
  bottom: 0;
  z-index: 1;
}

.about-four__loom-img-card h3 {
  font-size: 24px;
  font-weight: 500;
}

.about-four__loom-img-card p {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--austry-base);
}

.about-four__left .section-title {
  margin-bottom: 31px;
}

.about-four__left .about-four__text {
  padding-bottom: 16px;
}

/* feature-milestone__col */
.feature-milestone__col {
  position: relative;
  flex: 0 0 80%;
  max-width: 75%;
  margin: 0 auto;
}

.feature-milestone__card {
  background-color: var(--austry-white);
  color: var(--austry-gray);
  border-radius: 20px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.15);
  margin-block-end: 20px;
  display: flex;
  margin-inline-end: 140px;
  /* flex-direction: column; */
  justify-content: flex-start;
  min-height: 140px;
}

.feature-milestone__card-yr {
  background-color: var(--austry-base-lighter);
  color: var(--austry-base);
  padding: 20px;
  order: 2;
  border-radius: 0 20px 20px 0;
  min-width: 140px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
}

.feature-milestone__card-yr::before {
  content: "";
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 80px;
  height: 2px;
  background-color: var(--austry-base);
}

.feature-milestone__card-yr::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 50%;
  z-index: 1;
  width: 2px;
  height: calc(50% + 20px);
  background-color: var(--austry-base);
}

.feature-milestone__card-content {
  flex: 1;
  order: 1;
  padding: 30px;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-milestone__col:last-child .feature-milestone__card-yr::before,
.feature-milestone__col:last-child .feature-milestone__card-yr::after {
  display: none;
}

.feature-milestone__col:nth-child(even) .feature-milestone__card {
  margin-inline-end: 0;
  margin-inline-start: 140px;
}

.feature-milestone__col:nth-child(even) .feature-milestone__card-yr {
  order: 1;
  border-radius: 20px 0 0 20px;
  color: var(--austry-white);
}

.feature-milestone__col:nth-child(even) .feature-milestone__card-yr::before,
.feature-milestone__col:nth-child(even) .feature-milestone__card-yr::after {
  right: auto;
  left: -80px;
}

.feature-milestone__col:nth-child(even) .feature-milestone__card-content {
  order: 2;
}

.feature-milestone__col:nth-child(even) .feature-milestone__card-yr,
.feature-milestone__col:nth-child(even) .feature-milestone__card-yr::before,
.feature-milestone__col:nth-child(even) .feature-milestone__card-yr::after {
  background-color: var(--austry-base);
}

/* services-group */
.services-group {
  position: relative;
}

.services-group .services-four__bg-box {
  height: 100%;
}

.services-four__single-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services-four__group .services-four__single-inner {
  border-radius: 16px;
  background-color: var(--austry-dark-light);
  border: solid 1px var(--austry-dark-light-border);
  color: var(--austry-white);
  box-shadow: none;
}

.services-four__group .services-four__img {
  min-height: auto;
  padding: 60px 50px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.services-four__group .services-four__img::before,
.services-four__group .services-four__img::after {
  display: none;
}

.services-four__group .services-four__icon {
  position: relative;
  bottom: auto;
  right: auto;
  border-radius: 12px;
  min-width: 80px;
}

.services-group__img-title {
  color: var(--austry-white);
  font-size: 20px;
  position: relative;
  padding-block-end: 15px;
  letter-spacing: 1px;
}

.services-group__img-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 60px;
  height: 2px;
  background-color: #ec87c0;
  transition: 0.4s ease-in-out;
}

.services-four__group .services-four__content {
  padding: 10px 50px 60px;
}

.services-four__group
  .services-four__single-inner:hover
  .services-group__img-title::before {
  background-color: var(--austry-base);
}

/* capabilities-ssv */
.capabilities-ssv {
  position: relative;
  padding-block: 120px;
}

.capabilities-ssv__card {
  background-color: var(--austry-white);
  border: solid 1px rgba(var(--austry-bdr-color-rgb), 0.7);
  padding: 50px;
  border-radius: 16px;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  height: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.capabilities-ssv__card:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.15);
}

.capabilities-ssv__card-icon {
  background-color: var(--austry-base-lighter);
  height: 80px;
  width: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-end: 30px;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
}

.capabilities-ssv__card-icon img {
  max-width: 46px;
  position: relative;
  display: inline-block;
  color: var(--austry-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.capabilities-ssv__card:hover .capabilities-ssv__card-icon {
  background-color: var(--austry-base);
}

.capabilities-ssv__card:hover .capabilities-ssv__card-icon img {
  transform: scale(0.9);
  filter: brightness(0) invert(1);
}

.capabilities-ssv__card-content {
  position: relative;
  padding-block-end: 20px;
}

.capabilities-ssv__card-content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 50px;
  height: 1px;
  background-color: #ec87c0;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
}

.capabilities-ssv__card:hover .capabilities-ssv__card-content::after {
  background-color: var(--austry-base);
  width: 60px;
  height: 2px;
}

.capabilities-ssv__card-title {
  font-size: 24px;
  margin-block-end: 20px;
  font-weight: 500;
}

/* vision-mission */
.vision-mission {
  position: relative;
  padding-block: 120px;
  background-color: var(--austry-gray1);
}

.vision-mission__col {
  position: relative;
  padding-inline-end: 20px;
}

.vision-mission__col:nth-child(even) {
  padding-inline: 20px 0;
}

.vision-mission__card {
  position: relative;
  background-color: var(--austry-white);
  color: var(--austry-gray);
  box-shadow: 0 1px 2px 0 rgba(58, 57, 68, 0.2);
  border-left: solid 4px var(--austry-base);
  padding: 50px;
  height: 100%;
}

.vision-mission__card::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 50px;
  height: 50px;
  border: solid 2px rgba(var(--austry-base-rgb), 0.2);
}

.vision-mission__card:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.15);
}

.vision-mission__col:nth-child(even) .vision-mission__card {
  border-left-color: #4364a6;
}

.vision-mission__col:nth-child(even) .vision-mission__card::before {
  border-color: #ccdaf7;
}

.vision-mission__col:nth-child(even) .vision-mission__card-title::before {
  background-color: #809fdd;
}

.vision-mission__col:nth-child(even) .vision-mission__card-icon {
  background-color: #e1e9f9;
}

.vision-mission__col:nth-child(even)
  .vision-mission__card:hover
  .vision-mission__card-icon,
.vision-mission__col:nth-child(even)
  .vision-mission__card:hover
  .vision-mission__card-title::before {
  background-color: #4364a6;
}

.vision-mission__card-img {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-block-end: 30px;
}

.vision-mission__card-icon {
  background-color: var(--austry-base-lighter);
  height: 80px;
  width: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
}

.vision-mission__card-icon img {
  max-width: 46px;
  position: relative;
  display: inline-block;
  color: var(--austry-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.vision-mission__card:hover .vision-mission__card-icon {
  background-color: var(--austry-base);
}

.vision-mission__card:hover .vision-mission__card-icon img {
  transform: scale(0.9);
  filter: brightness(0) invert(1);
}

.vision-mission__card-title {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  padding-block-end: 15px;
}

.vision-mission__card-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 60px;
  height: 2px;
  background-color: #ec87c0;
  transition: 0.4s ease-in-out;
}

.vision-mission__card:hover .vision-mission__card-title::before {
  background-color: var(--austry-base);
}

/* our-legacy */
.our-legacy {
  position: relative;
  padding-block: 80px;
  background-color: var(--austry-dark);
  color: var(--austry-white);
}

.our-legacy .section-title__label {
  border-color: var(--austry-dark-light-border);
  background-color: var(--austry-dark-light);
  color: var(--austry-white);
}

.our-legacy .section-title::before {
  content: "";
  position: absolute;
  left: -48px;
  top: -42px;
  z-index: -1;
  width: 100px;
  height: 100px;
  border: solid 1px rgba(var(--austry-base-rgb), 0.4);
  transform: rotate(15deg);
}

.our-legacy .section-title__title {
  color: var(--austry-white);
}

.our-legacy__btn-box {
  margin-block: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.our-legacy__btn-box .thm-btn {
  background-color: var(--austry-base);
  color: var(--austry-white);
  font-size: 12px;
  text-transform: uppercase !important;
}

.our-legacy__btn-box .thm-btn:hover {
  color: var(--austry-base);
}

.our-legacy__btn-box .thm-btn::after {
  background-color: var(--austry-base-light);
}

.our-legacy__btn-box .thm-btn-white {
  background-color: var(--austry-white);
  color: var(--austry-base);
}

.our-legacy__content {
  padding-inline-end: 50px;
}

.our-legacy__card {
  border: solid 1px var(--austry-dark-light-border);
  background-color: var(--austry-dark-light);
  color: var(--austry-white);
  position: relative;
  backdrop-filter: blur(10px);
}

.our-legacy__card::before {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -30px;
  z-index: -1;
  width: 50px;
  height: 50px;
  background-color: rgba(var(--austry-base-rgb), 0.4);
  transform: rotate(15deg);
}

.our-legacy__card::after {
  content: "";
  position: absolute;
  right: -47px;
  bottom: -64px;
  z-index: -1;
  width: 100px;
  height: 100px;
  background-color: rgba(var(--austry-base-rgb), 0.4);
  transform: rotate(45deg);
}

.our-legacy__card-content {
  position: relative;
  padding: 50px;
}

.our-legacy__card-content::before {
  content: "";
  position: absolute;
  right: -41px;
  top: -41px;
  z-index: -1;
  width: 80px;
  height: 80px;
  border: solid 2px rgba(var(--austry-base-rgb), 0.4);
  transform: rotate(45deg);
}

.our-legacy__card-content p {
  margin-block-end: 20px;
}

.our-legacy__card-title {
  font-size: 28px;
  color: var(--austry-white);
  position: relative;
  padding-block-end: 15px;
  margin-block-end: 20px;
  text-align: center;
  text-transform: uppercase;
}

.our-legacy__card-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  transform: translateX(-50%);
  background-color: var(--austry-base);
  height: 4px;
  width: 100px;
}

.our-legacy__card-list {
  list-style: none;
  padding-left: 0;
  margin: 30px 0 0;
  display: flex;
  justify-content: space-between;
  color: var(--austry-base);
  flex-wrap: wrap;
  row-gap: 20px;
}

.our-legacy__card-list li {
  border-left: solid 2px var(--austry-base);
  padding-inline: 20px;
  text-align: center;
  width: 33.33%;
}
.our-legacy__card-list li:nth-child(1) {
     border-left: unset;
}

.our-legacy__card-list img {
  max-width: 40px;
  filter: brightness(0) invert(1);
  margin-block-end: 8px;
}

.our-legacy__card-list p {
  text-transform: uppercase;
  margin-block-end: 0;
}

/* .cta-ssv */
.cta-ssv::before {
  content: "";
  position: absolute;
  left: 120px;
  top: 80px;
  z-index: -1;
  width: 100px;
  height: 100px;
  border: solid 1px rgba(var(--austry-base-rgb), 0.4);
  transform: rotate(15deg);
}

/* csr-banner */
.csr-banner {
  position: relative;
}

.csr-banner .image-layer::before {
  background-color: rgba(22, 28, 42, 0.9);
}

.csr-banner__label {
  border: solid 1px var(--austry-base);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 6px;
  background-color: rgba(var(--austry-base-rgb), 0.3);
  color: var(--austry-base-light);
  display: inline-block;
  margin-block-end: 16px;
}

.csr-banner-textblock-wrap {
  position: relative;
  z-index: 3;
  padding-block: 120px;
}

.csr-banner__content {
  position: relative;
  font-size: 18px;
  color: var(--austry-white);
}

.csr-banner__title {
  position: relative;
  font-size: 80px;
  color: var(--austry-white);
  font-weight: bold;
  line-height: 90px;
  letter-spacing: -0.03em;
  margin-bottom: 27px;
}

.csr-banner__title span {
  color: var(--austry-base);
}

.csr-banner__text {
  font-size: 18px;
  color: var(--austry-white);
  font-weight: 400;
  padding-bottom: 39px;
  line-height: 30px;
}

.csr-banner__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.csr-banner__card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px 20px;
  color: #fdb9e5;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  text-align: center;
}

.csr-banner__card h2 {
  font-size: 32px;
  margin: 0;
  font-weight: 500;
  color: var(--austry-white);
}

.csr-banner__card p {
  font-size: 12px;
  letter-spacing: 1px;
  
}

/* beyond-manufacture */
.beyond-manufacture {
  position: relative;
  padding-block: 80px;
  text-align: center;
}

.beyond-manufacture .section-title {
  margin-block-end: 25px;
}

.beyond-manufacture-content {
  max-width: 620px;
  margin-inline: auto;
  font-size: 18px;
}

/* renewable-leadership */
.renewable-leadership {
  position: relative;
  padding-block: 80px;
  background-color: var(--austry-gray1);
}

.renewable-leadership__single .services-four__single-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 0 none;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.15);
}

.renewable-leadership__single .services-four__img::before {
  background: linear-gradient(
    0deg,
    rgb(0, 0, 0) -50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.services-four__img-content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  padding: 25px;
}

.services-four__img-content h4 {
  font-size: 30px;
  font-weight: 500;
  color: var(--austry-white);
}

.services-four__img-content p {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  color: #fdb9e5;
}

.renewable-leadership__single .services-four__content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.renewable-leadership__single .services-four__title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.renewable-leadership__single .services-four__icon {
  position: relative;
  bottom: auto;
  right: auto;
  height: 50px;
  width: 50px;
}

.renewable-leadership__single .services-four__icon img {
  max-width: 32px;
}

.renewable-leadership__single .services-four__text {
  min-height: 70px;
  flex: 0;
  font-size: 16px;
  margin-block-end: 16px;
  flex-shrink: 0;
}

.services-four__advance {
  position: relative;
  margin-block-end: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}

.services-four__advance-card {
  background-color: var(--austry-gray1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 20px;
  gap: 6px;
  box-sizing: border-box;
}

.services-four__advance-card h3 {
  font-size: 22px;
  color: var(--austry-base);
}

.services-four__advance-card p {
  text-transform: uppercase;
  font-size: 12px;
}

.renewable-leadership__single .services-four__btn-box {
  text-align: center;
  margin-top: auto;
}

.renewable-leadership__single .thm-btn {
  /* width: 100%; */
  width: 80%;
  margin-top: 20px;
}

.thm-btn-ssv {
  background-color: var(--austry-base);
  color: var(--austry-white);
  font-size: 11px;
}

.thm-btn-ssv:hover {
  color: var(--austry-white);
}

.thm-btn-ssv::after {
  background-color: var(--austry-black);
}

/* environmental-impact */
.environmental-impact {
  position: relative;
  padding-block: 80px;
  background-color: var(--austry-base);
  color: var(--austry-white);
}

.environmental-impact .section-title {
  text-align: center;
}

.environmental-impact .section-title__label {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--austry-white);
}

.environmental-impact .section-title__title , .environmental-impact__card-content h3 , .environmental-impact__card-content h4 {
  color: #111;
}

.environmental-impact p {
  color: #111;
}

.environmental-impact__card {
  background-color: rgba(255, 255, 255, 0.2);
  border: solid 1px rgba(255, 255, 255, 0.5);
  color: var(--austry-white);
  border-radius: 16px;
  max-width: 280px;
  margin: 0 auto 30px;
  padding: 20px;
  margin-block-end: 30px;
  height: var(100% - 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.environmental-impact__card-icon {
  background-color: rgba(255, 255, 255, 0.35);
  color: var(--austry-white);
  border-radius: 6px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.environmental-impact__card-icon img {
  filter: brightness(0) invert(1);
  width: 50px;
}

.environmental-impact__card-content {
  text-align: center;
}

.environmental-impact__card-title {
  color: var(--austry-white);
  font-size: 22px;
  line-height: 24px;
  font-weight: 500;
  text-transform: uppercase;
}

.environmental-impact__card-subtitle {
  color: var(--austry-white);
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.environmental-impact__card-text {
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
}

/* carbon-neutral */
.carbon-neutral {
  position: relative;
  padding-block: 80px;
  background-color: var(--austry-dark);
}

.carbon-cards-box {
  display: flex;
  flex-wrap: wrap;
}

.carbon-neutral .col-12,
.carbon-neutral .col-sm-6,
.carbon-neutral .col-lg-4 {
  display: flex;
}

.carbon-neutral .section-title,
.impact-glance .section-title {
  text-align: center;
}

.carbon-neutral .section-title__label {
  border-color: var(--austry-dark-light-border);
  background-color: var(--austry-dark-light);
  color: var(--austry-white);
}

.carbon-neutral .section-title__title,
.carbon-neutral .section-title p {
  color: var(--austry-white);
}

.carbon-neutral__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 16px;
  background-color: var(--austry-dark-light);
  border: solid 1px var(--austry-dark-light-border);
  color: var(--austry-white);
  padding: 35px;
  text-align: center;
}

.carbon-neutral__card-title {
  color: var(--austry-base);
  font-size: 22px;
  line-height: 24px;
  font-weight: 500;
  margin-block-end: 20px;
}

.carbon-neutral__card-subtitle {
  color: var(--austry-white);
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  margin-block-end: 10px;
  text-transform: uppercase;
}

.carbon-neutral__card-text {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
}

/* impact-glance */
.impact-glance {
  position: relative;
  padding-block: 80px;
}

.impact-glance-main {
  position: relative;
}

.impact-glance-main .table-responsive {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.15);
}

.impact-glance-table {
  width: 100%;
  margin-block-end: 0;
}

.impact-glance-table th {
  padding: 30px;
  background-color: var(--austry-base);
  border: 0 none;
  box-shadow: none;
  text-align: center;
  color: var(--austry-white);
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
}

.impact-glance-table td {
  padding: 30px;
  background-color: var(--austry-white);
  box-shadow: none;
  color: var(--austry-gray);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.impact-glance-table td:last-child {
  color: var(--austry-base);
}

/* our-mission */
.our-mission {
  position: relative;
  padding-block-end: 80px;
}

.our-mission .row {
  display: flex;
  flex-wrap: wrap;
}

.our-mission .col-12,
.our-mission .col-sm-6,
.our-mission .col-lg-4 {
  display: flex;
}

.our-mission__card {
  flex: 1;
  /* display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start; */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  padding: 50px;
  border-block-start: solid 5px var(--austry-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
}

.our-mission__card:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.15);
}

.our-mission__card-icon {
  background-color: var(--austry-base-lighter);
  height: 80px;
  width: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-end: 30px;
  flex-shrink: 0;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
}

.our-mission__card-icon img {
  max-width: 46px;
  position: relative;
  display: inline-block;
  color: var(--austry-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.our-mission__card:hover .our-mission__card-icon {
  background-color: var(--austry-base);
}

.our-mission__card:hover .our-mission__card-icon img {
  transform: scale(0.9);
  filter: brightness(0) invert(1);
}

.our-mission__card-title {
  font-size: 20px;
  font-weight: 600;
  margin-block-end: 20px;
}

.our-mission__card-list {
  list-style: none;
  padding-inline-start: 0;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.our-mission__card-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.our-mission__card-list img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-top: 8px;
}

/* together-ssv */
.together-ssv {
  position: relative;
  padding-block-end: 120px;
}

.together-ssv__main {
  background-color: var(--austry-base);
  color: var(--austry-white);
  border-radius: 16px;
  padding: 40px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.together-ssv__main h3 {
  color: var(--austry-white);
  font-size: 28px;
  font-weight: 400;
}

.together-ssv__btn-box {
  position: relative;
}

.together-ssv__btn-box .thm-btn {
  background-color: var(--austry-white);
  color: var(--austry-base);
}

.together-ssv__btn-box .thm-btn:hover {
  color: var(--austry-white);
}

.together-ssv__btn-box .thm-btn::after {
  background-color: var(--austry-black);
}

/* Renewable Hero Section */
.renewable-leadership-hero {
  position: relative;
  padding-block: 50px;
  background-color: rgb(255, 255, 255);
}

/* .renewable-hero__label {
  display: inline-block;
  background: #fbd9f1;
  color: #222;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
} */

.renewable-hero__title {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.renewable-hero__title span {
  color: var(--austry-base);
}

.renewable-hero__desc {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 40px;
  color: ##76787c;
}

.renewable-hero__stats {
  display: flex;
  gap: 60px;
}

.renewable-hero__stats .stat-item h3 {
  font-size: 32px;
  color: var(--austry-base);
  line-height: 38px;
}

.renewable-hero__stats .stat-item p {
  font-size: 12px;
  line-height: 30px;
  text-transform: uppercase;
  color: #777;
}

/* Right Image with badges */

.renewable-hero__image-box {
  position: relative;
  padding-block-end: 80px;
  height: 100%;
}

.renewable-hero__image {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  width: 100%;
  size: cover;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
}

.renewable-hero__badge {
  position: absolute;
  top: -40px;
  right: -40px;
  background: var(--austry-dark);
  color: #fff;
  padding: 25px 20px;
  text-align: center;
}

.renewable-hero__badge h4 {
  font-size: 32px;
  line-height: 38px;
  margin: 0;
  color: var(--austry-white);
}

.renewable-hero__badge span {
  font-size: 12px;
  text-transform: uppercase;
}

.renewable-hero__label-box {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: var(--austry-base);
  color: #ffffff;
  padding: 25px 20px;
  text-align: center;
}
.emp-box {
  position: absolute;
  bottom: 40px;
  right: -40px;
  background: var(--austry-base);
  color: #ffffff;
  padding: 25px 20px;
  text-align: center;
}
.emp-box h4 {
  color: #ffffff;
}

.renewable-hero__label-box h4 {
  font-size: 32px;
  line-height: 38px;
  margin: 0;
  font-weight: 500;
  color: var(--austry-white);
}

.renewable-hero__label-box span {
  font-size: 12px;
  text-transform: uppercase;
}

/* Our-clean-energy-portfolio */

.our-clean-energy-portfolio {
  position: relative;
  padding: 80px 0;
  background-color: var(--austry-gray1);
}

.project-card-wrap {
  background-color: var(--austry-white);
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
  padding: 35px;
  border-left: 6px solid var(--austry-base);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.project-card-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0px 12px 50px rgba(0, 0, 0, 0.15);
}

.env-project-card-wrap {
  background-color: var(--austry-white);
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
  padding: 35px;
  border-left: 6px solid var(--austry-base);
  transition: all 0.3s ease;
  margin: 30px 0;
  max-width: 30%;
  transition: all 0.3s ease;
}

.project-card {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.project-card__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}

.project-card__image-box {
  background-color: var(--austry-base);
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.project-card__image-box img {
  max-width: 40px;
  filter: brightness(0) invert(1);
}

.project-card__title {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  margin: 0;
}

.project-features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 20px;
}

.project-features::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 50px;
  height: 50px;
  border: solid 2px rgba(var(--austry-base-rgb), 0.2);
}

.feature-list-item h4 {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: #111;
}

/* <!-- Stats Section --> */

.stats-cards {
  padding: 20px 0;
}

.stats-card {
  background-color: var(--austry-dark-light);
  border: solid 1px var(--austry-dark-light-border);
  box-shadow: none;
  padding: 20px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border-radius: 16px;
}

.stats-card__icon {
  background-color: rgba(var(--austry-base-rgb), 0.2);
  border: solid 2px rgba(var(--austry-base-rgb), 0.4);
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.stats-card__icon img {
  max-width: 40px;
  filter: brightness(0) invert(1);
}

.stats-card__number {
  font-family: sans-serif;
  font-size: 22px;
  line-height: 24px;
  font-weight: 500;
  color: var(--austry-white);
  margin-bottom: 10px;
}

.stats-card__subtitle {
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 12px;
  letter-spacing: 1px;
  color: var(--austry-white);
  text-transform: uppercase;
}

.stats-card__text {
  font-family: sans-serif;
  font-size: 15px;
  color: var(--austry-gray);
  line-height: 26px;
  font-weight: 500;
}

.equivalent-impact {
  padding: 80px 0;
  color: var(--austry-white);
}

.equivalent-impact__box {
  background-color: var(--austry-gray1);
  box-shadow: none;
  padding: 50px 30px;
  text-align: center;
  position: relative;
}

.equivalent-impact__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  color: #111;
}

.equivalent-impact__underline {
  width: 80px;
  height: 3px;
  background: var(--austry-base);
  margin: 0 auto 40px auto;
  border-radius: 2px;
}

.equivalent-impact__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.equivalent-impact__icon {
  background-color: var(--austry-base);
  border: solid 2px var(--austry-base);
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.equivalent-impact__icon img {
  width: 35px;
  filter: brightness(0) invert(1);
}

.equivalent-impact__text {
  font-size: 16px;
  line-height: 30px;
  color: #111;
  font-weight: 500;
  max-width: 400px;
}

/* <!-- Employee Welfare Excellence --> */

.employee-banner {
  position: relative;
  padding: 120px 0;
  color: #fff;
  overflow: hidden;
}

.employee-banner .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.employee-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.employee-banner .container {
  position: relative;
  z-index: 3;
}

.employee-banner__label {
  border: solid 1px var(--austry-base);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 6px;
  background-color: rgba(var(--austry-base-rgb), 0.3);
  color: var(--austry-base-light);
  display: inline-block;
  margin-block-end: 16px;
}

.employee-banner__title {
  font-size: 70px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--austry-white);
}

.employee-banner__title span {
  color: var(--austry-base);
}

.employee-banner__line {
  width: 70px;
  height: 4px;
  background: var(--austry-base);
  margin-bottom: 20px;
}

.employee-banner__desc {
  font-size: 20px;
  line-height: 30px;
}

.employee-banner__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-card {
  background: rgba(255, 250, 250, 0.108);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 20px;
  backdrop-filter: blur(8px);
}

.stat-card h2 {
  font-size: 32px;
  font-weight: 500;
  color: #fff;
}

.stat-card p {
  font-size: 12px;
  color: var(--austry-base);
  margin: 0;
  text-transform: uppercase;
}

/* Employee Housing Excellence  */
.stats-style-box {
  content: "";
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 100px;
  height: 100px;
  background-color: rgba(var(--austry-base-rgb), 0.4);
  transform: rotate(45deg);
}
.feature-list-item {
  list-style: square;
  margin: 0;
}
.feature-list-item p {
  font-size: 16px;
  line-height: 24px;
  color: var(--austry-gray);
}

li::marker {
  color: var(--austry-base);
  font-size: 24px;
}
.emp-last_div_main {
  padding-block: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.emp-last_div {
  margin-bottom: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 70%;
  height: 80px;
  background-color: var(--austry-gray1);
  box-shadow: none;
}
.emp-last_div p {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  color: #111;
}

/* ----------------------------Our Team page Styling--------------------------- */
.our-team__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.our-team-item {
  /* background-color: var(--austry-base-lighter); */
  background-color: rgb(22 21 21 / 94%);
  padding: 16px;
  border-radius: 10px;
}
.our-team-item h3 {
  font-size: 30px;
  /* color: var(--austry-base); */
  color: #ffffff;
  line-height: 36px;
  font-weight: 500;
}
.our-team-item p {
  /* color: var(--austry-gray); */
  color: #fdb9e5;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 1px;
}

/* ------------------Our Legacy styling-------------------------- */
.legacy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.legacy-card__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.legacy-card__image-box {
  background-color: var(--austry-base);
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legacy-card__image-box img {
  max-width: 40px;
  filter: brightness(0) invert(1);
}

.legacy-card__title {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  margin: 0;
}
.legacy-card-desc {
  color: var(--austry-base);
}
.legacy-card__desc p {
  text-align: center;
}

/* ---------------------visionary-leadership Start------------------------ */
.visionary-leadership {
  position: relative;
  padding-bottom: 40px;
  background-color: var(--austry-gray1);
}
.leadership-text-icon {
  font-size: 25px;
  color: var(--austry-white);
}
.leadership-card {
  display: flex;
  flex-direction: column;

  gap: 15px;
  margin-bottom: 20px;
}

/* ---------------------Operational Section Styling---------------------- */
.operational-excellence {
  position: relative;
  padding: 80px 0;
  background-color: var(--austry-white);
}
.operational-card-wrap {
  background-color: var(--austry-white);
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
  flex: 0 0 48%;
  max-width: 46%;
  padding: 25px;
  border: 1px solid var(--austry-gray);
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.operational-card {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.project-card__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}
.operational-card__desc1 {
  margin-top: 40px;
  background-color: var(--austry-base-lighter);
  padding: 15px 10px;
  border-radius: 10px;
}
.operational-card__desc1 h3 {
  font-size: 18px;
  color: var(--austry-base);
  font-weight: 500;
}
.operational-card__desc2 {
  margin-top: 15px;
  padding-left: 10px;
  width: 100%;
  border-left: 4px solid var(--austry-base);
}
.operational-card__desc2 p {
  line-height: 20px;
  font-style: italic;
}

/* -----------------------Proven Section Styling------------------------- */
.proven-portfolio {
  position: relative;
  padding: 80px 0;
  background-color: var(--austry-gray1);
}

.proven-card {
  background-color: var(--austry-white);
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  padding: 20px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.proven-card__icon {
  background-color: var(--austry-base-lighter);
  height: 80px;
  width: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-end: 30px;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
}
.proven-card__icon img {
  max-width: 46px;
}

/* --------------------Our Team Future Vision Styling----------------------- */
.our-team_vision {
  position: relative;
  padding-block: 80px;
  background-color: var(--austry-dark);
  color: var(--austry-white);
}
.our-team_vision .section-title__label {
  border-color: var(--austry-dark-light-border);
  background-color: var(--austry-dark-light);
  color: var(--austry-white);
}
.our-team_vision .section-title__title {
  color: var(--austry-white);
}
.future-middle__content-out {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 30px;
}
.future-middle__content {
  text-align: center;
  width: 80%;
}
.future-last_heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  padding: 0px 30px;
  text-align: center;
}
.future-last_heading h1 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
}
.future-last_heading p {
  color: var(--austry-base);
  font-size: 20px;
  margin-top: 10px;
}
.our-team-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.ot-btn1 {
  font-weight: 600;
  font-size: 12px;
    line-height: 30px;
    letter-spacing: 0.2em;
    padding: 12px 30px 12px;
    text-transform: uppercase;
  color: var(--austry-white);
  background-color: var(--austry-base);
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
}
.ot-btn2 {
  font-weight: 600;
  font-size: 12px;
    line-height: 30px;
    letter-spacing: 0.2em;
    padding: 12px 30px 12px;
    text-transform: uppercase;
  color: var(--austry-base);
  padding: 10px 20px;
  border: 1px solid var(--austry-base);
  border-radius: 10px;
}
.ot-btn1:hover {
  color: var(--austry-white);
}
.ot-btn2:hover {
  color: var(--austry-base);
}

.sizing-cta {
  padding-top: 40px;
  padding-bottom: 80px;
}

/* .sizing-four__img:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 20px;
  right: 128px;
  height: 20px;
  background-color: var(--austry-base);
  clip-path: polygon(0 0, 97% 0, 100% 100%, 0% 100%);
} */

.sizing-four__img {
  height: 100%;
}

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

.sizing-ssv__img:after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 80px;
  height: 80px;
  background-color: transparent;
  clip-path: unset;
  border: solid 2px rgba(var(--austry-base-rgb), 0.4);
}
.sizing__btn-box {
  display: flex;
  gap: 25px;
  margin-top: 20px;
}

/* ----------------------------Market page Styling--------------------------- */
.market-ssv {
  position: relative;
  padding-block: 80px;
}
.market-hero {
  position: relative;
  padding-block: 80px;
  background-color: var(--austry-dark);
  /* background-color: #ffffff; */
}
.market-hero .section-title__label {
  border-color: var(--austry-dark-light-border);
  /* border-color: #c33793; */
  background-color: var(--austry-dark-light);
  /* background-color: #ffeaf8; */
  color: var(--austry-white);
  /* color: #c33793; */
}
.market-hero__text-box {
  color: var(--austry-white);
  margin-bottom: 40px;
}
.market-strategy-para {
  padding: 10px 90px;
}
.market-presence-container {
  position: relative;
  padding-block: 50px;
}
.mpresence-four__img {
  height: 100%;
}
.mpresence-four__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.market-presence-container .row {
  margin-top: 50px;
}
.market-presence-container .row:nth-child(2n + 1) {
  flex-direction: row-reverse;
}

.goodwill-container{
  max-width: 1000px;
  margin-top: 70px;
  margin-right: auto;
  margin-left: auto;
}
.goodwill__btn-box .thm-btn-white {
  background-color: var(--austry-white);
  color: var(--austry-base);
  border: 1px solid var(--austry-base);
  text-transform: uppercase !important;
}
.goodwill__btn-box .thm-btn-white:hover {
  background-color: var(--austry-base);
  color: var(--austry-white);
  border: 1px solid var(--austry-white);
}
.goodwill__btn-box .thm-btn-dark {
  background-color: var(--austry-dark);
  color: var(--austry-white);
  border: 1px solid var(--austry-dark);
  text-transform: uppercase !important;
}
.goodwill__btn-box .thm-btn-dark:hover {
  border: 1px solid var(--austry-white);
}

/* ----------------------------Spinning page Styling--------------------------- */
.spinning-four{
  padding: 80px 0 80px;
}
.spinning_sec-four_cards{
  display: flex;
  flex-direction: column;
  gap: 50px;
}
/* .spanning_stats-cards{
  position: relative;
  display: block;
  margin-bottom: 30px;
  height: calc(100%, 30px);
} */

.spinning__newsletter-btn{
    border: 1px solid var(--austry-black);
    /* background-color: var(--austry-base); */
    color: var(--austry-white);
    padding: 10px 24px;
    font-size: 12px;
    font-family: var(--austry-font);
    order: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
    letter-spacing: 0.6px;
}
.spinning__newsletter-input-box{
  justify-content: center;
  flex-direction: row-reverse;
}
.spinning__newsletter-btn img {
  filter: brightness(0) invert(1);
  width: 27px;
}
.our-yarns ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
.our-yarns li {
  background: var(--austry-base-lighter);
  color: var(--austry-dark);
  padding: 12px 14px;
  border-radius: 10px;
  margin-top: 14px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
}
.our-yarns__after{
  background: var(--austry-base);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.our-yarns h4 {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
  color: var(--austry-black);
}
.qh-outer__box{
  padding: 0 60px;
}
.quality-hallmarks{
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--austry-dark);
  padding: 26px;
  border-radius: 10px;
  margin-top: 40px;
  color: #fff;
}
.quality-hallmarks h4 {
  color: #fff;
}
.qh-lists{
  display: flex;
  flex-wrap: wrap;
}
.qh-list_content{
  width: 50%;
  padding-top: 8px;
}

.weaving_stats-card {
  background-color: var(--austry-dark-light);
  border: solid 1px var(--austry-dark-light-border);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border-radius: 16px;
}

.stats_upper_block{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 15px 15px 15px;
}
.stats_lower_block{
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  padding: 15px 15px 20px 15px;
  border-top: 1px solid var(--austry-dark-light-border);
  height: 100%;
}
.stats_lower_block div {
    margin-top: auto;
    padding-left: 25px;
}

/* ----- Custom CSS ------- */

.csr-banner__label-spinning {
  border: solid 1px var(--austry-base);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 6px;
  /* background-color: rgba(var(--austry-base-rgb), 0.3); */
  color: var(--austry-base-light);
  display: inline-block;
  margin-block-end: 16px;
  background-color: #d72e8b;
}

.services-group__img-title-bar {
  color: var(--austry-white);
  font-size: 20px;
  position: relative;
  padding-block-end: 15px;
}

.csr-inner .services-group__img-title-bar {
  color: var(--austry-dark-light);
}

.services-four__group .csr-icon-block {
  padding: 30px 25px 0 25px;
  gap: 16px;
}

.services-four__group .csr-para {
  padding: 0 0 25px 25px;
}

.services-four__group .csr-inner {
  background-color: var(--austry-gray1);
  color: var(--austry-dark-light);
  border: 1px solid var(--austry-bdr-color);
}

.csr-inner .csr-bar {
  position: relative;
  padding-left: 28px;
}

.csr-inner .csr-bar::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--austry-base);
  position: absolute;
  top: 10%;
  left: 0;
}

.ne-box{
    background:linear-gradient(135deg,#12142c,#1a1d3f);
    border-radius:14px;
    padding:60px 20px;
}

.ne-value{
    color:#ff2f92;
    font-size:48px;
    font-weight:300;
    line-height:1;
}

.ne-label{
    color:#ffffff;
    font-size:14px;
    margin-top:6px;
}

.ne-line{
    width:220px;
    height:3px;
    background:linear-gradient(to right,#ff2f92,#ff80c0);
    border-radius:10px;
}

.qc-card{
    background:#242642;
    border-radius:16px;
    padding:30px;
    text-align:center;
    height:100%;
    box-shadow:0 0 20px rgba(255,47,146,0.1);
}

.info-box{
    background:#242642;
    border-left:4px solid #ff2f92;
    padding:20px;
    border-radius:10px;
    margin-top:30px;
    color: var(--austry-white);
}

.qc-icon{
    width:60px;
    height:60px;
    background:#ff2f92;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-size:24px;
    color: var(--austry-white);
}

.qc-card h5{
    font-weight:600;
      color: var(--austry-white);
      letter-spacing: 1px;
}

.qc-card p{
    font-size:14px;
    color:#cfcfe6;
}

.info-box-block{
    background:#f5f2f2;
    border-left:4px solid #ff2f92;
    padding:30px 20px;
    /* border-radius:10px; */
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-top:30px;
    color: var(--austry-white);
}

.info-box-block h6 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.info-box-block p {
  color: #333;
  font-size: 16px;
}

.csr-icon-banner {
  display: flex;
  gap: 18px;
}
@media (max-width: 1199px) {
  .csr-icon-banner {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 991px) {
  .csr-image-padd {
    padding: 0 !important;
  }
}
.csr-banner__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.csr-banner__card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 30px;

    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.csr-banner__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

/* Icon circle */
.csr-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #d72e8b;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.csr-icon img {
    width: 30px;
}

/* Text */
.csr-title h2 {
    font-size: 32px;
    /* font-weight: 700; */
    color: #fff;
    margin: 0;
}

.csr-title p {
    margin: 4px 8px 0;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f1b6d6;
    text-align: start;
}
.main-banner__subtitle {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 400;
}


/* .services-four__icon-csr-dot {

}

.services-four__group .services-four__icon {
  position: relative;
  bottom: auto;
  right: auto;
  border-radius: 12px;
  min-width: 80px;
} */
 /* Main container */
.capacity-block {
    max-width: 560px;
}

/* Eyebrow label */
.capacity-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d72e8b;
    background: #fde7ef;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

/* Main number */
.capacity-metric {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: #111;
    margin-bottom: 16px;
}

.capacity-metric span {
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: #d72e8b;
    margin-top: 6px;
}

/* Divider */
.capacity-divider {
    width: 60px;
    height: 3px;
    background-color: #d72e8b;
    margin-bottom: 24px;
}

/* Main paragraph */
.capacity-text {
    font-size: 16px;
    line-height: 1.75;
    color: #111;
    margin-bottom: 18px;
}

/* Supporting paragraph */
.capacity-subtext {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.65);
}
.infrastructure-content {
    max-width: 560px;
}

/* Top badge */
.infra-badge {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid #d72e8b;
    color: #d72e8b;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 22px;
}

/* Main heading */
.infra-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.25;
    color: #222;
    margin-bottom: 22px;
}

.infra-title span {
    color: #d72e8b;
}

/* Main paragraph */
.infra-text {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 26px;
}

/* Supporting capacity text */
.infra-subtext {
    font-size: 16px;
    line-height: 1.9;
    color: #777;
}


.together-ssv__main2 {
  background-color: var(--austry-base);
  color: var(--austry-white);
  border-radius: 16px;
  padding: 40px;
  min-height: 250px;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-left: 109px;
}
.together-ssv__main2 h3 {
  color: var(--austry-white);
  font-size: 28px;
  font-weight: 400;
}

.custom-card-col {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  /* This ensures that on large screens (desktops), cards take 1/3 width */
  @media (min-width: 992px) {
    .custom-card-col {
      flex: 0 0 33.333% !important;
      max-width: 33.333% !important;
      margin-bottom: 0;
    }
  }


/* Business Page Code  */


.business-products-section {
  padding: 80px 0;
  background: #fff;
}

/* Hero Banner */
.business-hero {
  position: relative;
  height: 300px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  margin-bottom: 100px;
}

.business-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.business-hero-overlay h2 {
  font-family: sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.business-hero-overlay h2 span{
  color: #aa3583;
}

.business-hero-overlay p {
  max-width: 1000px;
  font-size: 16px;
}

/* Grid Cards */
.business-grid {
  row-gap: 40px;
}

.business-card {
  border: 1px solid #f1b4dc;
  border-radius: 6px;
  padding: 18px 20px;
  text-align: center;
  background: #fff;
  transition: all 0.3s ease;
  height: 195px;

  /* changes */
      display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    
}

.business-card img {
  max-width: 60px;
  margin-bottom: 15px;
}

.business-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #222;
}

.business-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.business-card {
  position: relative; /* IMPORTANT */
}

#card1{
  padding-top: 70px;
}

.business-card-btn {
  /* position: absolute; */ 
  right: 120px;
  top: 90%;
  transform: translateY(-50%);
  width: 70px;
  height: 36px;
  background: #f05ac6;
  color: #fff;
  border-radius: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  margin-top: 24px;
}

.business-card-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

  /* Sustainability Section  */

.sustainability-section {
  padding-bottom: 100px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 65%);
  text-align: center;
}

.sustainability-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 50px;
  color: #111;
}

.sustainability-header p {
  max-width: 900px;
  margin: 0 auto 10px;
  font-size: 16px;
  color: #666;
}

/* Button */
.sustainability-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  margin-bottom: 60px;
}

.sustainability-btn span {
  width: 60px;
  height: 2px;
  background: #f169ca;
  display: inline-block;
}

/* Grid */
.sustainability-grid {
  row-gap: 60px;
  /* justify-content: center; */
  margin-left: 3  0px;
}

.sustainability-item img {
  max-width: 90px;
  margin-bottom: 15px;
}

.sustainability-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

/* Business Cotton Page  */


.cotton-hero {
  position: relative;
  height: 520px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 60px;
  margin: 100px auto 0;
  max-width: 1300px;
}

.cotton-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.cotton-hero-overlay h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.cotton-hero-overlay p {
  max-width: 800px;
  font-size: 16px;
}

.cotton-hero-overlay h1  span{
  color: #aa3583;
}

/* Cotton icon section */

.cotton-certifications {
  margin: 100px;
  padding: 0 0 80px;
}

.cotton-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 60px;
}

.cotton-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cotton-item img {
  width: 70px;
  height: auto;
}

.cotton-item h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.cotton-item p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* #cotton{
  margin-top: 100px;
} */


/* Business page cards section */

.diverse-split-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.diverse-split-card:hover {
  transform: translateY(-8px);
}

/* TOP AREA */
.card-top {
 /* padding: 35px 20px; */
  text-align: center;
height:40%;
}

.card-top img {
  max-width: 100%;
  margin-bottom: 12px;
}

.card-top h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* Background Variants */
.bg-green { background: #e9f8f3; color:#0f6f5c; }
.bg-orange { background: #fff3e2; color:#b36a1f; }
.bg-white { background: #f7f7f7; color:#333; }
.bg-purple { background: #f6eefe; color:#7b4bc4; }

/* BOTTOM AREA */
.card-bottom {
  padding: 25px 22px 28px;
}

.small-icon {
  width: 36px;
  height: 36px;
  background: #f05ac6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.small-icon img {
  max-width: 18px;
}

.card-bottom h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.card-bottom p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px;
}

.explore-link {
  color: #f05ac6;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}

.explore-link:hover {
  text-decoration: underline;
}

.diverse-solutions-section {
  padding-top: 100px;   /* upar se gap */
  padding-bottom: 120px; /* niche se gap */
  background: #ffffff; /* reference jaisa clean */
}

.diverse-solutions-section .container {
  max-width: 1300px;   /* thoda wide like premium site */
}

.diverse-grid {
  row-gap: 40px;     /* rows ke beech gap */
}

/* Header wrapper spacing */
.diverse-header {
  margin-bottom: 70px;
}

/* Pill / Badge */
.diverse-pill {
  display: inline-block;
  padding: 6px 16px;
  background: #fde9f6;
  color: #f05ac6;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Main Heading */
.diverse-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
}

.diverse-title span {
  color: #f05ac6; /* Pink Solutions */
}

/* Subtitle */
.diverse-subtitle {
  font-size: 16px;
  color: #76787c;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}



.underline::after{
   display:none !important ;
}

 .cotton{
    align-items: flex-start !important;
}

.cotton-image{
	width:100% !important ;
	max-width: unset !important;
	/* padding-left:5px; */
	/* padding-right:5px; */

}

.capabilities-ssv__card:hover 
.capabilities-ssv__card-icon img.no-filter-img {
  filter: none !important;
}

.csr-title .crousel {
    color: #474242; 
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 400;
   
}

.proven-card_icon .size{
	border:2px solid #ffeaf8 important;
	width:100px !important;
}

.prod{
	    max-width: unset !important;
}

.qualityPage{
	margin-top:15px;
	margin-bottom:15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
     .response{
        margin: 0px 0 0 !important ;
    }
}


/*Quality Boxex*/

.about-ssv-boxes .ssv-feature-boxes {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 25px;
}

.about-ssv-boxes .ssv-feature-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.about-ssv-boxes .ssv-feature-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-ssv-boxes .ssv-feature-icon {
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #d72e8b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-ssv-boxes .ssv-feature-icon img {
  max-width: 46px;
  filter: brightness(0) invert(1);
}

.about-ssv-boxes .ssv-feature-content h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25em;
  margin: 0 0 4px;
  color: #111;
}

.about-ssv-boxes .ssv-feature-content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
  margin: 0;
  color: #76787c;
}


/* ========== QUALITY INSPECTION SECTION (ONLY THIS SECTION) ========== */

.services-four .quality-ssv-section {
  margin-top: 30px;
}

.services-four .quality-ssv-right {
  color: #fff;
}

.services-four .quality-ssv-subtitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #ffffff;
}

/* Stage Cards */
.services-four .quality-ssv-stage {
  padding: 25px !important;
  display: flex;
  align-items: top;
  gap: 15px;
  background: #2e303f;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 25px;
}

.services-four .quality-ssv-number {
  min-width: 36px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #d72e8b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #fff;
}

.services-four .quality-ssv-stage-content h5 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 2px;
  color: #fff;
  line-height: 1.25em;
}

.services-four .quality-ssv-stage-content p {
  font-size: 16px;
  margin: 0;
  color: #cfd3dc;
}

.services-four .quality-ssv-note {
  font-size: 13px;
  color: #cfd3dc;
  margin-top: 10px;
}

.headcolor{
	color:#c33793 !important;
}



/* ===== White Outer Container ===== */
.white-banner-wrapper {
  background: #ffffff;
  padding: 60px 0;
}

/* ===== Boxed Banner Only (Safe for other pages) ===== */
.main-banner--boxed {
  max-width: 1300px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

/* Optional shadow */
.main-banner--boxed {
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* --- Css added by AQ ---- */
.custom-proven-card {
  padding: 35px;
}

.font-color p {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.csr-banner__card .ssv-csr-title {
  line-height: 1.4em;
  text-align: start;
}


@media (max-width: 1230px) {
  .main-menu-two .main-menu__list > li + li {
    margin-left: 55px !important;
  }
}

@media (max-width: 991px) {
  .ssv-qi {
    padding: 0;
  }
  .ssv-expert-team {
    margin-top: 0 !important;
  }
  .ssv-capable {
   padding-block: 80px !important;
  }
}

@media (max-width: 575px) {
  .ssv-diverse {
    margin-left: 0 !important;
  }
}

@media (max-width: 767px) {
  .csr-banner__card .ssv-csr-title {
    font-size: 16px;
  }
 
}

@media (max-width: 575px) {
      .custom-proven-card {
        padding: 20px;
     }
}

@media (max-width: 400px) {
     .containersizing{
        padding-left: 35px !important;
    }
}

@media (max-width: 396px) {
     .sizeissue{
        padding: 12px 10px 12px !important;
    }
}

@media (max-width: 992px) {
     .topspacing{
       margin-top: 40px !important;
    }
}

@media (max-width: 768px) {
     .contentspacing{
        padding-top: 80px !important;
    	padding-bottom: 0px !important;
    }
}

.market-hero .section-title__title {
	letter-spacing: -0.03em;
}


.csr-banner__content .commit {
	font-size: 12px;
    letter-spacing: 1px;
    line-height: 30px;
    padding: 7px 18px 5px;
}

.csr-banner__label {
	font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 30px;
    text-transform: uppercase;
    padding: 7px 18px 5px;
}

.csr-banner__label-spinning {
	font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 30px;
    text-transform: uppercase;
    padding: 7px 18px 5px;
}


.market-content {
	margin-bottom: 20px;
}

.market-content-area {
	margin-top: 0px !important;
}

.market-content-area h2 {
	padding-bottom: 10px;

}

.Beyond-section h2 {
	padding-bottom: 10px;
}

.market-content-area .section-title {
    margin-bottom: 10px;
}


.cta__newsletter-btn {
    padding: 12px 30px 12px;
    font-size: 12px;
}


.together-ssv__btn-box .thm-btn {
	font-size: 12px;
    line-height: 30px;
    letter-spacing: 0.1em;
    padding: 12px 30px 12px;
    text-transform: uppercase;
}


.environmental-impact__card {
    border-radius: 16px;
    max-width: unset;
    margin: 0;
    margin-bottom: 30px;
    padding: 50px;   
}

.environmental-impact__card-icon {
    background-color: #c33793;
}

.environmental-impact__card {
    background-color: var(--austry-white);
    transition: 500ms linear;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 6px;
    border: solid 1px rgba(var(--austry-bdr-color-rgb), 0.7);
    border-radius: 16px;
    max-width: unset;
    margin: 0;
    margin-bottom: 30px;
    padding: 50px;
}


.environmental-impact__card:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.15);
}

.environmental-impact .Environment-color {
  color: #111;
}

.about-four__text {
    padding-bottom: 10px;
}

.mb-4 {
    margin-bottom: 10px !important;
}



/* --- 1. Main Slider Container --- */
.custom-blog-slider {
    overflow: hidden;
    position: relative;
    padding: 20px 0 40px; /* Neeche dots ke liye extra space */
    width: 100%;
}

.custom-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.custom-slide-item {
    flex: 0 0 33.333%; /* Desktop par 3 cards */
    padding: 0 15px;
    box-sizing: border-box;
}

/* --- 2. Card Styling (Bade Floating Box ke liye) --- */
.news-four__single {
    position: relative;
    margin-bottom: 40px;
}

.news-four__img {
    position: relative;
    z-index: 1;
}

.news-four__img img {
    width: 100%;
    display: block;
    border-radius: 0px;
}

/* Yahan Box ko bada aur image ke upar float kiya gaya hai */
.news-four__content {
    background-color: #ffffff;
    padding: 40px 30px 45px; /* Box ke andar zyada space (Bada look) */
    width: 94%;            /* Width badha di gayi hai (Bada look) */
    margin: -65px auto 0;  /* Box thoda aur upar overlap karega */
    position: relative;
    z-index: 10;
    box-shadow: 0px 15px 45px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: all 0.3s ease;
}

/* --- 3. Content Elements --- */
.news-four__date-and-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.news-four__date {
    background-color: #ce2c7d;
    padding: 3px 12px;
    margin-right: 15px;
}

.news-four__date p {
    color: #ffffff;
    margin: 0;
    font-size: 13px;
    font-weight: 700;
}

.news-four__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777;
    font-size: 14px;
}

.news-four__meta .text p {
	font-size: 12px;
}

.news-four__meta i {
    color: #ce2c7d;
}

.news-four__title {
    font-size: 24px; 
    font-weight: 500;
    line-height: 1.2em;
    margin-bottom: 15px;
}

.news-four__title a {
    color: #333;
    text-decoration: none;
}

.news-four__text {
    color: #76787c;
    font-size: 16px;
    line-height: 1.85em;
    margin: 0;
}

/* Read More Button (Circle) */
.news-four__read-more {
    position: absolute;
    bottom: -25px;
    right: 30px;
    z-index: 12;
}

.news-four__read-more a {
    width: 50px;
    height: 50px;
    background: #1f2235;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.news-four__read-more a:hover {
    background: #ce2c7d;
    transform: translateY(-3px);
}

/* --- 4. Round Dots Pagination --- */
.slider-pagination {
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 12px; /* Dots ke beech space */
}

.custom-dot {
    height: 12px;
    width: 12px;
    background-color: #d1d1d1; /* Normal grey */
    border-radius: 50%;     /* Perfect Round */
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.custom-dot.active {
    background-color: #ce2c7d; /* Theme Pink */
    transform: scale(1.3);    /* Active dot bada dikhega */
}

.custom-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth sliding effect */
    will-change: transform;
}

/* --- 5. Responsive Settings --- */
@media (max-width: 991px) {
    .custom-slide-item { flex: 0 0 50%; } /* Tablet par 2 */
}

@media (max-width: 767px) {
    .custom-slide-item { flex: 0 0 100%; } /* Mobile par 1 */
    .news-four__content {
        width: 90%;
        padding: 30px 20px;
        margin-top: -50px;
    }
}
   

@media (max-width: 1024px) {
    .news-four__title {
    	font-size: 22px; 
    }
}
@media (max-width: 768px) {
    .news-four__title {
    	font-size: 20px; 
    }
}
@media (max-width: 425px) {
    .news-four__title {
    	font-size: 18px; 
    }
}



/* ----------- Contact Us ------------ */


.contact-hero {
	margin: 0 auto;
}

.contact-div {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form input , .contact-form textarea {
	font-size: 14px;
    font-weight: 400;
    line-height: 1.82em;
    color: #76787c;
	margin-bottom: 14px;
}

.contact-form label {
	font-size: 18px;
    font-weight: 500;
    line-height: 1em;
	display: block; 
	margin-bottom: 8px; 
	color: #333;
}

.contact-details {
	font-size: 18px;
    font-weight: 500;
    line-height: 1em;
	display: block; 
	margin-bottom: 4px; 
	color: #333;

}

.fa-envelope , .fa-phone-alt , .fa-map-marker-alt 	{
	color: #ff2f92;
}



@media (max-width: 991px) {
    .Contact-info {
    	padding-top: 40px; 
    }
}







