 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html,
      body {
        width: 100%;
        overflow-x: hidden;
      }

      .process-section {
        width: 100%;
      }

      .process-img-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 60px 0; /* space between images */
      }

      .process-img-wrapper img {
        width: 100%; /* reduce size here */
        height: auto;
        display: block;
      }
      .process-img-wrapper:nth-child(3) img {
        width: 100%;
      }

      /* ===== USP SECTION ===== */



.usp-title{
  font-family:"Prosto One";
  font-size:35px;
  color:#7BAF42;        /* green */
  letter-spacing:4px;
  margin-bottom:38px;
}
/* ===== USP SECTION ===== */

.usp-section {
  background: #3a3a3a;
  padding: 40px 8%; 
  text-align: center;
}

.usp-container {
  display: flex;
  margin-left: 0; /* Changed from 55px */
  justify-content: center; /* Changed from space-between */
  align-items: center;
  gap: 0; /* We will control spacing via item padding */
}
.usp-item {
  flex: 1;
  color: #ffffff;
  font-family: "Jost", sans-serif !important;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.6;
  text-transform: uppercase;
  position: relative;
  padding: 10px 30px; /* Uniform padding for equal spacing */
  text-align: center; /* Centering text within the block balances the look */
}

/* Updated vertical divider line - positioned in the middle of the gap */
/* vertical divider line positioned exactly in the middle */
.usp-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; /* Positioned at the very edge of the flex item */
  top: 50%;
  transform: translateY(-50%);
  height: 70%; /* Slightly shorter looks cleaner */
  width: 1px;  /* 1px or 2px depending on thickness preference */
  background: rgba(255, 255, 255, 0.3);
}
/* ===== WORKFLOW SECTION ===== */

.workflow-section{
  padding:100px 8%;
  background:#f5f5f5;
}

.workflow-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:60px 80px;
  align-items:center;
}

.workflow-item{
  text-align:center;
}

.workflow-item img{
  width:100%;
  height:240px;
  object-fit:cover;
  margin-bottom:25px;
}

.workflow-item h3{
  font-family:"Prosto One";
  font-size:22px;
  letter-spacing:3px;
  color:#111;
}

.workflow-text{
  text-align:center;
}

.workflow-text h2{
  font-family:"Prosto One";
  font-size:40px;
  color:#7BAF42;
  letter-spacing:4px;
  line-height:1.3;
}
@media(max-width:1000px){
  .workflow-grid{
    grid-template-columns: 1fr;
    gap:50px;
  }

  .workflow-text{
    order:-1;
  }
}
@media(max-width:768px){

.workflow-grid{
grid-template-columns:1fr;
gap:40px;
}

.usp-container{
  flex-direction:column;
  gap:20px;
}

.usp-item{
  padding:15px 20px;
}

.usp-item:not(:last-child)::after{
  display:none;
}

.usp-title{
  font-size:26px;
}

.workflow-text h2{
  font-size:28px;
}

  .process-section {
    width: 100%;
    padding-top: 70px !important; /* Proper clearance for transparent navbar */
    margin-top: 0 !important;
  }

  .process-img-wrapper {
    margin: 30px 0;
  }

  /* First banner image (GIF) specific fix */
  .process-img-wrapper:first-child {
    margin-top: 0 !important;
  }

  .process-img-wrapper img {
    object-fit: contain !important;
    height: auto !important;
    max-height: none !important;
  }
}

@media(max-width:480px){
.usp-section{
  padding:30px 5%;
}

.usp-title{
  font-size:22px;
}

.usp-item{
  font-size:14px;
  padding:10px 15px;
}

.workflow-section{
  padding:60px 5%;
}

.workflow-item img{
  height:180px;
}

.workflow-item h3{
  font-size:18px;
}

.workflow-text h2{
  font-size:24px;
}
}
