.vwrap {
      position: relative;
      width: 100%;
/*       max-width: 520px; */
      cursor: pointer;
    }
 
    /* Orange offset background */
    .orange-bg {
      position: absolute;
      top: 20px;
      left: -20px;
      width: 100%;
      height: 100%;
      background: #c12f2f;
      z-index: 0;
      border-radius: 4px;
    }
 
    .vbox {
      position: relative;
      z-index: 1;
      border-radius: 4px;
      overflow: hidden;
      aspect-ratio: 4/3;
      background: #222;
    }
 
    .vthumb {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(0.7);
      transition: filter 0.3s;
    }
 
    .vwrap:hover .vthumb {
      filter: brightness(0.5);
    }
 
    /* Corner brackets */
    .corner {
      position: absolute;
      width: 22px;
      height: 22px;
      border-color: #fff;
      border-style: solid;
      z-index: 3;
    }
    .tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
    .tr { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
    .bl { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
    .br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }
 
    /* Play button */
    .play {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }
 
    .pbtn {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s, background 0.3s;
    }
 
    .vwrap:hover .pbtn {
      transform: scale(1.1);
      background: #e67e22;
    }
 
    .pbtn i {
      font-size: 26px;
      color: #222;
      margin-left: 5px;
      transition: color 0.3s;
    }
 
    .vwrap:hover .pbtn i {
      color: #fff;
    }
 
    /* iframe */
    .iframe-wrap {
      position: absolute;
      inset: 0;
      display: none;
      z-index: 10;
    }
 
    .iframe-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
 
    .vbox.playing .vthumb,
    .vbox.playing .play,
    .vbox.playing .corner {
      display: none;
    }
 
    .vbox.playing .iframe-wrap {
      display: block;
    }
	
	
/*     .cards-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      max-width: 1050px;
      margin: 0 auto;
    } */
 
    .card {
      border: 1.5px solid #000;
/*       width: 300px; */
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background: #fff;
      position: relative;
      margin-top: 40px;
      margin-bottom: 30px;
      transition: box-shadow 0.3s;
    }
 
    .card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.10); }
 
    /* Icon - top border pe */
    .card-icon {
      width: 80px;
      height: 80px;
      background: #c12f2f;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: -40px;
      left: 50%;
      transform: translateX(-50%);
    }
	
	.card-icon img{
		filter: invert(1);
	}
 
    .card-icon i { font-size: 34px; color: #1a1a1a; }
 
    .card-body {
      margin-top: 16px;
      padding-bottom: 0px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
 
    .card-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #1a1a1a;
/*       margin-bottom: 0.9rem; */
    }
 
    .card-desc, .card-body p {
      font-size: 13.5px;
      color: #444;
      line-height: 1.75;
      text-align: justify;
		display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
    }
 
    /* Button - bottom border pe */
    .card-btn {
      display: inline-block;
      border: 2px solid #c12f2f;
      background: #fff;
      color: #1a1a1a;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      padding: 10px 30px;
      text-decoration: none;
      text-transform: uppercase;
      cursor: pointer;
      position: absolute;
      bottom: -22px;
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      transition: background 0.25s;
    }
 
    .card-btn:hover { background: #c12f2f;color:#fff; }
	
	.spacer {
      height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: #999;
    }
 
    .section-wrap {
      display: flex;
      justify-content: center;
      padding: 3rem 1rem;
    }
 
    .wrap {
      display: flex;
      align-items: center;
      gap: 0;
      padding: 2rem;
/*       background: #ffffff; */
/*       border: 1px solid #e0e0e0; */
      border-radius: 12px;
/*       max-width: 960px; */
      width: 100%;
 
      /* Fade-in animation */
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
 
    .wrap.visible {
      opacity: 1;
      transform: translateY(0);
    }
 
    .left {
      min-width: 220px;
      max-width: 240px;
      padding-right: 2rem;
      border-right: 1px solid #e0e0e0;
    }
 
    .left h2 {
/*       font-size: 22px;
      font-weight: 700;
      line-height: 1.25;
      margin-bottom: 0.5rem; */
    }
 
    .left h2 .blue { color: #1a3cff; }
    .left h2 .dark { color: #2d2d2d; }
 
    .left p {
      font-size: 13px;
      color: #666;
      line-height: 1.5;
    }
 
    .stats {
      display: flex;
      flex: 1;
      justify-content: space-around;
    }
 
    .stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 1rem;
 
      /* Staggered animation */
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
 
    .wrap.visible .stat:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
    .wrap.visible .stat:nth-child(2) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
    .wrap.visible .stat:nth-child(3) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
    .wrap.visible .stat:nth-child(4) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }
	.wrap.visible .stat:nth-child(5) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }
 
    .icon-box {
      width: 65px;
      height: 65px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    .icon-box svg { width: 60px; height: 60px; }
 
    .num {
      font-size: 22px;
      font-weight: 700;
      color: #2d2d2d;
      line-height: 1;
    }
 
    .num .unit {
      font-size: 13px;
      font-weight: 500;
      color: #2d2d2d;
    }
 
    .label {
/*       font-size: 12px;
      color: #777; */
/*       margin-top: 4px; */
      max-width: 100px;
      line-height: 1.3;
    }
 
    @media (max-width: 640px) {
      .wrap { flex-direction: column; }
      .left { max-width: 100%; padding-right: 0; padding-bottom: 1.5rem; border-right: none; border-bottom: 1px solid #e0e0e0; }
      .stats { flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
      .stat { min-width: 120px; }
    }
	
	.cta-section {
    position: relative;
    background: #1a1a2e;
    padding: 0;
    overflow: visible;
/*     margin-top: 60px; */
}
 
.cta-inner {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: visible;
    margin: -30px 40px 0 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
	top: -50px;
}
 
.cta-content {
    flex: 1;
    z-index: 2;
}
 
.cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    line-height: 1.2;
}
 
.cta-content p {
    font-size: 16px;
    color: #555;
    margin: 0 0 24px 0;
}
 
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
 
/* Contact Us - Green pill button (same as image) */
.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #8ab820;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: background 0.25s, transform 0.2s;
    border: none;
    cursor: pointer;
}
.btn-contact:hover { background: #739a18; transform: translateY(-2px); color: #fff; }
 
/* WhatsApp button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: background 0.25s, transform 0.2s;
}
.btn-whatsapp:hover { background: #1dae55; transform: translateY(-2px); color: #fff; }
 
/* Phone number link */
.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 2px solid #8ab820;
    transition: color 0.2s;
}
.btn-phone:hover { color: #8ab820; }
 
/* Quick Enquiry outline button */
.btn-enquiry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #c12f2f;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 24px;
    border-radius: 30px;
    text-decoration: none;
    border: 2px solid #c12f2f;
    letter-spacing: 0.3px;
    transition: background 0.25s, color 0.25s, transform 0.2s;
    cursor: pointer;
}
.btn-enquiry:hover {
    background: #c12f2f;
    color: #fff;
    transform: translateY(-2px);
}
 
/* Robot image container */
.cta-robot {
    position: absolute;
    right: 60px;
    top: -60px;
    width: 180px;
    z-index: 3;
    pointer-events: none;
}
.cta-robot img {
    width: 100%;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}
 
/* Dark bottom strip */
.cta-dark-strip {
    background: #1a1a2e;
    height: 50px;
    margin-top: -1px;
}
 
@media (max-width: 768px) {
    .cta-inner {
        margin: -20px 16px 0 16px;
        padding: 30px 24px 40px;
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-robot {
        display: none;
    }
    .cta-content h2 { font-size: 22px; }
    .cta-buttons { gap: 10px; }
}