.hero-layout {
  display: flex;
  align-items: center;      /* vertical center */
  justify-content: space-between;
  gap: 30px;                /* space between text & image */
}
.hero-left {
  flex: 1;                  /* take available space */
  max-width: 550px;
}
.hero-right {
  flex: 2;
  display: flex;
  justify-content: flex-end;

}

.hero-right img {
  width: 120%;
  max-width: none;
  transform: translateX(12%);
}
@media (max-width: 768px) {
  .hero-layout {
    flex-direction: column;
    text-align: center;
  }
  .hero-right img {
    width: 70%;
    transform: none;
  }
  .hero-right{
    justify-content: center;
  }


}




.why-section {
  padding: 80px 0;

  background: rgba(255, 255, 255, 0.03);





  box-shadow:
    0 10px 30px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.why-layout {
  display: flex;
  align-items: center;
  gap: 60px;
 
}
.why-left {
  flex: 1;
}
.why-cards {
  display: flex;
  gap: 30px;
   justify-content: center;
}
.why-card {
  flex: 1;
  padding: 40px 30px;
  border-radius: 14px;
  position: relative;
width: 300px;
  /* glass background */
  background: rgba(10, 20, 40, 0.55);
  backdrop-filter: blur(12px);

  /* border space */
  border: 1px solid transparent;

  display: flex;
  flex-direction: column;
  gap: 16px;

  transition: 0.3s ease;

  /* glow */
  box-shadow:
    0 0 20px rgba(255,170,50,0.15);
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(255,190,80,0.9),
    rgba(255,140,0,0.6),
    rgba(255,190,80,0.9)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}
.why-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 0 30px rgba(255,170,50,0.35),
    0 0 60px rgba(255,140,0,0.2);
}

.why-icon img {
  width: 150px;
  height: auto;
}
.why-card h3 {
  font-size: 24px;
  margin: 0;

  /* gold gradient text */
  background: linear-gradient(90deg,#ffd36b,#ff9f43);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why-card p {
  margin: 0;
  color: #cfd6e6;
  line-height: 1.6;
}
.why-right {
  flex: 2;                /* more space */
  display: flex;
  justify-content: flex-end;
}

.why-right img {
width: 80%;
  transform: scale(1.7) translateX(13%);
  transform-origin: right center;
  height: 400px;
 
}
@media (max-width: 768px) {

  .why-layout {
    flex-direction: column;
  }

  .why-cards {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .why-title {
    text-align: center;
  }
  .why-right img{
   width: 100%;
   height: 400px;
   transform: none;
   transform-origin: unset;
  }
  .why-right {
    justify-content: center;
  }
}




/* row align */
.testimonial-area .row {
  display: flex;
  align-items: center;
}

/* left side bigger */
.testimonial-area .row > div:first-child {
  flex: 1;
}

/* right side normal */
.testimonial-area .row > div:last-child {
  flex: 1;
}

/* left image container */
.testimonial-left {
  display: flex;
  justify-content: flex-start;
}


.testimonial-left img {
  width: 140%;
  max-width: none;
  height: auto;
  transform: translateX(-20%);
}

/* mobile fix */
@media (max-width: 991px) {

  .testimonial-area .row {
    flex-direction: column;
  }

  .testimonial-area .row > div:first-child,
  .testimonial-area .row > div:last-child {
    flex: unset;
  }

  .testimonial-left img {
    width: 100%;
    transform: none;
  }
}

.testimonial-bg {
  background-image: url("/static/img/bgtry1.png");
  background-repeat: no-repeat;
 background-size: cover;
 padding: 20px;
  background-attachment: local;
}


@media screen and (max-width: 768px) {
  .cls{
    flex-direction: column;
  
  }
  .footer-new{
   flex-direction: column;
   align-items: center;

  }
  
}