 
    .video-wrapper {
  position: fixed;
  /* top: 0; */
  /* left: 0; */
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;

}

.video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100vw;
  max-height: 100vh;
  transform: translate(-50%, -50%);
  z-index: 1;
 
}
.video-wrapper iframe {
  width: 177.77vh;
  max-height: 100vh;
  min-width: 100vw;
  min-height: 56.25vw;
}
.plans-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.plan-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.plan-card .price {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.plan-card ul li {
    margin-bottom: 10px;
}

.plan-card.highlight {
    border: 2px solid #ff6b6b;
    transform: scale(1.05);
}
.testimonial-cards-section {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonial-card-new {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.testimonial-card-new:hover {
    transform: translateY(-10px);
}

/* IMAGE BIG */
.testimonial-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* CONTENT */
.testimonial-content {
    padding: 20px;
    text-align: center;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-content h4 {
    margin: 0;
    font-size: 16px;
}

.testimonial-content span {
    font-size: 13px;
    color: #777;
}
 