.custom-banner {
     min-height: 500px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Responsive for laptops */
@media (max-width: 1024px) {
  .custom-banner {
    height: 60vh;
  }
}

/* Responsive for tablets and mobiles */
@media (max-width: 768px) {
  .custom-banner {
    height: 50vh;
  }
}
html {
    margin: 0 !important;
}
body, h1, h2, p {
font-family: 'Gothic A1', sans-serif !important;
font-weight: 200 !important; /* Thin/light weight */
}
 



.aboutsec1_container {
  display: flex;
  max-width: 1170px;
  margin: 0 auto;
  background: white;
  color: #31496B;
  padding: 90px 20px 40px 20px;
  box-sizing: border-box;
  gap: 0;
}

.aboutsec1_left,
.aboutsec1_right {
  opacity: 0;
  transform: translateX(0);
  transition: all 0.8s ease;
  box-sizing: border-box;
}

.aboutsec1_left {
    flex: 0 0 75%;
    padding-right: 40px;
    /* text-align: justify; */
    max-width: 748px;
    transform: translateX(-50px);
}

.aboutsec1_right {
  flex: 0 0 45%;        /* fixed width 45% */
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 40px;
  transform: translateX(50px);
}

.aboutsec1_heading {
  font-family: 'gothic', sans-serif;
  font-weight: 300;
  font-size: 45px;
  margin-top: 0;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: black;
}

.aboutsec1_paragraph {
  font-family: 'gothic', sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #5a5a5a;
  max-width: 100%;
}

.aboutsec1_video {
  width: 100%;
  max-width: 387px;
  height: auto;
  border-radius: 4px;
}

/* Animation active */
.aboutsec1_container.in-view .aboutsec1_left {
  opacity: 1;
  transform: translateX(0);
}

.aboutsec1_container.in-view .aboutsec1_right {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .aboutsec1_container {
    flex-direction: column;
    gap: 20px;
    padding: 30px 15px;
  }

  .aboutsec1_left,
  .aboutsec1_right {
    flex: 1 1 100%;
    transform: translateX(0);
    opacity: 1;
    transition: none;
    padding: 0;
    max-width: 100%;
    text-align: center;
  }

  .aboutsec1_right {
    justify-content: center;
  }

  .aboutsec1_heading {
    font-size: 32px;
    text-align: center;
  }

  .aboutsec1_paragraph {
    font-size: 16px;
  }

  .aboutsec1_video {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .aboutsec1_heading {
    font-size: 28px;
  }

  .aboutsec1_paragraph {
    font-size: 14px;
  }
}










/* sec 3*/

.section2_container {
  max-width: 1400px;
  margin: 40px auto;
  background: #f6f6f6;
  color: #31496b;
  padding: 34px 40px 1px 40px;
  box-sizing: border-box;
  font-family: 'gothic', sans-serif;
  margin: 0;
  width: 100%;
      max-width: 100%;
}

.section2_heading {
  font-size: 45px;
  font-weight: 300;
  color: black;
  text-transform: uppercase;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 40px;
}

.section2_description {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  max-width: 1070px;
  margin: 0 auto 50px;
  text-align: center;
  color: #5a5a5a;
  line-height: 1.6;
  font-family: 'gothic', sans-serif;
}
.section2_number_block img {
  width: 80px;   /* fixed width */
  height: 80px;  /* fixed height */
  object-fit: contain;
  margin-bottom: 32px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* Video Thumbnails Row */
.section2_videos_row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.section2_video_thumb {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.section2_video_thumb:hover {
  transform: scale(1.05);
}

/* White circular background */
.section2_video_thumb::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease;
  z-index: 2;
}

/* Play button triangle */
.section2_video_thumb::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px; /* triangle shape */
  border-color: transparent transparent transparent #1E2F69; /* blue color */
  transform: translate(-45%, -50%);
  transition: border-color 0.3s ease;
  z-index: 3;
  border-radius: 2px;
}

/* Hover state: circle bg blue, play icon white */
.section2_video_thumb:hover::before {
  background-color: #1E2F69; /* blue */
}

.section2_video_thumb:hover::after {
  border-color: transparent transparent transparent white;
}

.section2_video_thumb {
  flex: 1 1 220px;
  max-width: 269px;
  cursor: pointer;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.section2_video_thumb:hover {
  transform: scale(1.05);
}

.section2_video_thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* Numbers rows */
.section2_numbers_row {
  display: flex;
  justify-content: center;
  gap: 255px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.section2_number_block img {
    margin-bottom: 32px;
}


.section2_number_block {
  text-align: center;
  max-width: 418px;
}

.section2_number {
  font-size: 55px;
  font-weight: 600;
  color: #5a5a5a;
  margin-bottom: 10px;
}

.section2_label {
  font-size: 19px;
  font-weight: 400;
  color: #0f0e9f;
}

/* Modal Styles */
.section2_video_modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
}

.section2_video_modal_content {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  width: 800px;
  background: black;
  border-radius: 8px;
  overflow: hidden;
}

.section2_video_modal_close {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .section2_container {
    padding: 20px 20px;
  }

  .section2_heading {
    font-size: 36px;
  }

  .section2_description {
    font-size: 16px;
    max-width: 100%;
    padding: 0 10px;
  }

  .section2_videos_row {
    gap: 15px;
  }

  .section2_video_thumb {
    flex: 1 1 45%;
    max-width: none;
  }

  .section2_numbers_row {
    gap: 30px;
  }

  .section2_number {
    font-size: 40px;
  }

  .section2_label {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .section2_video_thumb {
    flex: 1 1 100%;
  }

  .section2_numbers_row {
    flex-direction: column;
    gap: 20px;
  }

  .section2_number {
    font-size: 30px;
  }

  .section2_label {
    font-size: 14px;
  }
}



/* sec 4 */
.qualitysec_container {
  display: flex;
  max-width: 1170px;
  margin: 0 auto;
  background: white;
  color: #31496B;
  padding: 33px 20px 30px 20px;
  box-sizing: border-box;
  gap: 0;
}

.qualitysec_left,
.qualitysec_right {
  opacity: 0;
  transform: translateX(0);
  transition: all 0.8s ease;
  box-sizing: border-box;
}

.qualitysec_left {
  flex: 0 0 75%;
  padding-right: 40px;
  max-width: 748px;
  transform: translateX(-50px);
}

.qualitysec_right {
  flex: 0 0 45%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
  transform: translateX(50px);
}

.qualitysec_heading {
  font-family: 'gothic', sans-serif;
  font-weight: 300;
  font-size: 45px;
  margin-top: 0;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: black;
}

.qualitysec_paragraph {
  font-family: 'gothic', sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #5a5a5a;
  max-width: 96%;
}

.qualitysec_video_placeholder img {
  width: 100%;
  border-radius: 8px;
}

/* Animation active */
.qualitysec_container.in-view .qualitysec_left {
  opacity: 1;
  transform: translateX(0);
}

.qualitysec_container.in-view .qualitysec_right {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .qualitysec_container {
    flex-direction: column;
    gap: 20px;
    padding: 30px 15px;
  }

  .qualitysec_left,
  .qualitysec_right {
    flex: 1 1 100%;
    transform: translateX(0);
    opacity: 1;
    transition: none;
    padding: 0;
    max-width: 100%;
    text-align: center;
  }

  .qualitysec_right {
    justify-content: center;
  }

  .qualitysec_heading {
    font-size: 32px;
    text-align: center;
  }

  .qualitysec_paragraph {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .qualitysec_heading {
    font-size: 28px;
  }

  .qualitysec_paragraph {
    font-size: 14px;
  }
  
  
  
  
  
}







/* section 4 */
.vertint_container {
  display: flex;
  max-width: 1170px;
  margin: 0 auto;
  background: transparent;
  color: #31496B;
  padding: 30px 0px 30px 0px;
  box-sizing: border-box;
  gap: 0;
}

.vertint_left,
.vertint_right {
  opacity: 0;
  transform: translateX(0);
  transition: all 0.8s ease;
  box-sizing: border-box;
}

.vertint_left {
  flex: 0 0 42%;
  display: flex;
  justify-content: start;
  align-items: flex-start;
  padding-right: 0;
  transform: translateX(-50px);
}

.vertint_right {
  flex: 0 0 75%;
  padding-left: 0;
  max-width: 639px;
  transform: translateX(50px);
}

.vertint_heading {
  font-family: 'gothic', sans-serif;
  font-weight: 300;
  font-size: 45px;
  margin-top: 0;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: black;
}

.vertint_paragraph {
  font-family: 'gothic', sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #5a5a5a;
  max-width: 100%;
}

.vertint_video_placeholder img {
  width: 100%;
  border-radius: 8px;
}

/* Animation active */
.vertint_container.in-view .vertint_left {
  opacity: 1;
  transform: translateX(0);
}

.vertint_container.in-view .vertint_right {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .vertint_container {
    flex-direction: column;
    gap: 20px;
    padding: 30px 15px;
  }

  .vertint_left,
  .vertint_right {
    flex: 1 1 100%;
    transform: translateX(0);
    opacity: 1;
    transition: none;
    padding: 0;
    max-width: 100%;
    text-align: center;
  }

  .vertint_left {
    padding-right: 0;
  }

  .vertint_right {
    padding-left: 0;
  }

  .vertint_heading {
    font-size: 32px;
    text-align: center;
  }

  .vertint_paragraph {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .vertint_heading {
    font-size: 28px;
  }

  .vertint_paragraph {
    font-size: 14px;
  }
}






/* sec 5*/
.supplychain_container {
  display: flex;
  max-width: 1170px;
  margin: 0 auto;
  background: white;
  color: #31496B;
  padding: 30px 0px 30px 0px;
  box-sizing: border-box;
  gap: 0;
}

.supplychain_left,
.supplychain_right {
  opacity: 0;
  transform: translateX(0);
  transition: all 0.8s ease;
  box-sizing: border-box;
}

.supplychain_left {
  flex: 0 0 57%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 0;
  transform: translateX(-50px);
}

.supplychain_right {
    flex: 0 0 75%;
    padding-left: 40px;
    max-width: 619px;
    transform: translateX(50px);
}

.supplychain_heading {
  font-family: 'gothic', sans-serif;
  font-weight: 300;
  font-size: 45px;
  margin-top: 0;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: black;
}

.supplychain_paragraph {
  font-family: 'gothic', sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #5a5a5a;
  max-width: 100%;
}

.supplychain_video_placeholder img {
  width: 100%;
  border-radius: 8px;
}

/* Animation active */
.supplychain_container.in-view .supplychain_left {
  opacity: 1;
  transform: translateX(0);
}

.supplychain_container.in-view .supplychain_right {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .supplychain_container {
    flex-direction: column;
    gap: 20px;
    padding: 30px 15px;
  }

  .supplychain_left,
  .supplychain_right {
    flex: 1 1 100%;
    transform: translateX(0);
    opacity: 1;
    transition: none;
    padding: 0;
    max-width: 100%;
    text-align: center;
  }

  .supplychain_left {
    padding-right: 0;
  }

  .supplychain_right {
    padding-left: 0;
  }

  .supplychain_heading {
    font-size: 32px;
    text-align: center;
  }

  .supplychain_paragraph {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .supplychain_heading {
    font-size: 28px;
  }

  .supplychain_paragraph {
    font-size: 14px;
  }
}




/* sec6 */
.envresp_container {
  display: flex;
  max-width: 1170px;
  margin: 0 auto;
  background:  #F7F7F7;
  color: #31496B;
  padding: 30px 0px 30px 00px;
  box-sizing: border-box;
  gap: 0;
}

.envresp_left,
.envresp_right {
  opacity: 0;
  transform: translateX(0);
  transition: all 0.8s ease;
  box-sizing: border-box;
}

.envresp_left {
  flex: 0 0 44%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 0;
  transform: translateX(-50px);
}

.envresp_right {
  flex: 0 0 56%;
  padding-left: 0;
  max-width: 748px;
  transform: translateX(50px);
}

.envresp_heading {
  font-family: 'gothic', sans-serif;
  font-weight: 300;
  font-size: 45px;
  margin-top: 0;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: black;
}

.envresp_paragraph {
  font-family: 'gothic', sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #5a5a5a;
  max-width: 100%;
}

.envresp_left img {
  width: 100%;
  border-radius: 8px;
}

/* Animation active */
.envresp_container.in-view .envresp_left {
  opacity: 1;
  transform: translateX(0);
}

.envresp_container.in-view .envresp_right {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .envresp_container {
    flex-direction: column;
    gap: 20px;
    padding: 30px 15px;
  }

  .envresp_left,
  .envresp_right {
    flex: 1 1 100%;
    transform: translateX(0);
    opacity: 1;
    transition: none;
    padding: 0;
    max-width: 100%;
    text-align: center;
  }

  .envresp_left {
    padding-right: 0;
  }

  .envresp_right {
    padding-left: 0;
  }

  .envresp_heading {
    font-size: 32px;
    text-align: center;
  }

  .envresp_paragraph {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .envresp_heading {
    font-size: 28px;
  }

  .envresp_paragraph {
    font-size: 14px;
  }
}







.respo_container {
  display: flex;
  max-width: 1170px;
  margin: 0 auto;
  background: white;
  color: #31496B;
  padding: 30px 0px 30px 0px;
  box-sizing: border-box;
  gap: 0;
}

.respo_left,
.respo_right {
  opacity: 0;
  transform: translateX(0);
  transition: all 0.8s ease;
  box-sizing: border-box;
}

.respo_left {
  flex: 0 0 75%;
  padding-right: 33px;
  max-width: 748px;
  transform: translateX(-50px);
}

.respo_right {
  flex: 0 0 45%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 40px;
  transform: translateX(50px);
}

.respo_heading {
  font-family: 'gothic', sans-serif;
  font-weight: 300;
  font-size: 45px;
  margin-top: 0;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: black;
}

.respo_paragraph {
  font-family: 'gothic', sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #5a5a5a;
  max-width: 100%;
}

/* Animation active */
.respo_container.in-view .respo_left {
  opacity: 1;
  transform: translateX(0);
}

.respo_container.in-view .respo_right {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .respo_container {
    flex-direction: column;
    gap: 20px;
    padding: 30px 15px;
  }

  .respo_left,
  .respo_right {
    flex: 1 1 100%;
    transform: translateX(0);
    opacity: 1;
    transition: none;
    padding: 0;
    max-width: 100%;
    text-align: center;
  }

  .respo_left {
    padding-right: 0;
  }

  .respo_right {
    padding-left: 0;
  }

  .respo_heading {
    font-size: 32px;
    text-align: center;
  }

  .respo_paragraph {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .respo_heading {
    font-size: 28px;
  }

  .respo_paragraph {
    font-size: 14px;
  }
}





@media (max-width: 480px) {
 .supplychain_video_placeholder img {
    width: 100%;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0;
}
   .vertint_video_placeholder img {
    width: 100%;
    border-radius: 8px;
    width: 100% !important;
    max-width: 100% !important;
}
.supplychain_video_placeholder {
    width: 100%;
}
.envresp_left img {
    width: 100% !important;
}
.supplychain_container.in-view .supplychain_left {
    text-align: center;
    align-items: center;
}
.section2_number_block {
    margin-right: 0 !important;
}
}





