.supply-chain-section {
  width: 100%;
  background: #fff;
  padding: 50px 20px;
  font-family: 'Noto Sans', sans-serif;
}

.supply-chain-section .container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.left-image {
  flex: 1;
  position: relative;
  z-index: 1;
}

.left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right-trapezium {
  flex: 0 0 auto;       /* don't grow or shrink */
  height: 300px; 
  width: 600px;       /* fixed smaller height */
  background: #bb1a1a;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 60px;
  z-index: 2;
  margin-left: -80px;   /* overlap effect */
}
.content-box {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
}

.content-box h2 {
  font-size: 26px;
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 15px;
}

.content-box p {
  font-size: 15px;
  margin-bottom: 25px;
}

.buttons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.buttons-grid button {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 200;
  transition: all 0.3s ease;
  text-align: center;
}

.buttons-grid button:hover {
  background: #fff;
  color: #bb1a1a;
}
@media(max-width:1024px){


.left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right-trapezium {
  flex: 0 0 auto;       /* don't grow or shrink */
  height: 300px; 
  width: 400px;       /* fixed smaller height */
  background: #bb1a1a;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 60px;
  z-index: 2;
  margin-left: -80px;   /* overlap effect */
}
.content-box {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
}

}
@media (max-width: 767px) {
  .supply-chain-section {
    width: 100%;
    padding: 0;
    overflow-x: hidden;     /* stop horizontal scroll */
  }

  .supply-chain-section .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .left-image {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .left-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .right-trapezium {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 25px 15px;
    background: #bb1a1a;
    clip-path: none;         /* no trapezium */
    box-sizing: border-box;  /* padding inside width */
  }

  .content-box {
    width: 100%;
    max-width: 500px;  /* optional, keeps it neat */
    margin: 0 auto;
    text-align: center;
    color: #fff;
  }

  .content-box h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .content-box p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .buttons-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;  /* ensures full width */
    gap: 12px;
  }

  .buttons-grid button {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    transition: all 0.3s ease;
  }

  .buttons-grid button:hover {
    background: #fff;
    color: #bb1a1a;
  }
}
/* =======================
   How Vasi Section
======================= */
.howVasi-section {
  background: url('/images/how-vasi.jpg') no-repeat center center/cover;
  padding: 100px 20px;
  color: #fff;
}

.howVasi-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: left;
}

.howVasi-container h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.solution-btn {
  display: inline-block;
  padding: 8px 25px;
  background: #fff;
  color: #bb1a1a;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.solution-btn:hover {
  background: #bb1a1a;
  color: #fff;
}


/* =======================
   Tree Section
======================= */
.tree-section {
  padding: 3rem 1rem;
  color: black;
}

.tree-container {
  max-width: 1300px;
  padding: 2rem;
  margin: 0 auto;
}

.tree-header {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 2rem;
}
/* Section Heading */
.tree-heading {
  margin: 0;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .tree-heading {
    font-size: 1.8rem;
  }
}


.tree-logo img {
  max-width: 180px;
  height: auto;
}

.tree-text p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.tree-diagram img {
  padding-top: 3rem;
  display: block;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
}

/* =======================
   Responsive
======================= */

/* Tablet - 768px */
@media (max-width: 768px) {
  .howVasi-section {
    padding: 70px 15px;
    text-align: center;
  }

  .howVasi-container h2 {
    font-size: 2.2rem;
  }

  .tree-header {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .tree-logo img {
    max-width: 140px;
  }

  .tree-text p {
    font-size: 15px;
  }

  .tree-diagram img {
    max-width: 100%;
    padding-top: 2rem;
  }
}

/* Mobile - 486px */
@media (max-width: 486px) {
  .howVasi-section {
    padding: 50px 15px;
  }

  .howVasi-container h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .solution-btn {
    margin: 0 auto;
    padding: 8px 20px;
    font-size: 14px;
  }

  .tree-container {
    padding: 0rem;
  }

  .tree-header {
    gap: 1.5rem;
  }

  .tree-logo img {
    max-width: 120px;
  }

  .tree-text p {
    font-size: 14px;
    line-height: 1.5;
  }
}



/* Solution Section */
.solution-section {
  background: url('/images/solution.jpg') no-repeat center center/cover;
  padding: 200px 20px;
  color: #fff;
}

.solution-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: left;
}

.solution-container h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: capitalize; /* ensures first letters are capital */
}

.solution-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #fff;
  color: #bb1a1a;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

.solution-btn:hover {
  background: #bb1a1a;
  color: #fff;
}

/* Tablets portrait */
@media (max-width: 768px) {
  .solution-container h2 {
    font-size: 1.6rem;
  }
  .solution-section {
    padding: 100px 15px;
  }
  .solution-btn {
    font-size: 13px;
    padding: 6px 18px;
  }
}

/* Mobile devices */
@media (max-width: 486px) {
  
  .solution-container h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .solution-section {
    padding: 80px 15px;
  }
  .solution-btn {
    width: fit-content;
  }   
}


  .mainVasi-container {
  position: relative;
  display: flex;
  align-items: center;     /* vertical centering */
  justify-content: center; /* horizontal centering */
  text-align: center;
  width: 100%;
  padding: 180px 20px;
  font-family: "Noto Sans", sans-serif;
  box-sizing: border-box;
}

/* Content wrapper */
.mainCenter-content {
  margin: 0 auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* keeps content vertically centered */
  text-align: center;
}

.mainVasi-name{
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
}

.mainVasi-description{
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  max-width: 700px;
}


.p-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* cover the whole section */
  transform: translate(-50%, -50%);
  z-index: -1;             /* behind content */
}

@media (max-width: 768px) {
  .mainVasi-container {
    padding: 40px 15px;
  }

  .floating-logo {
    width: 140px;
  }

  .mainVasi-name {
    font-size: 1.3rem;
  }

  .mainVasi-description {
    font-size: 2rem;
  }
}


@media (max-width: 486px) {
  .mainVasi-container {
    padding:100px 15px;
  }

  .floating-logo {
    width: 130px;
  }

  .mainVasi-name {
    font-size: 1rem;
  }

  .mainVasi-description {
    max-width: 300px;
    font-size: 1.3rem;
  }
  
}