/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* =============================================
   HERO BANNER
   ============================================= */
.pio-hero {
  position: relative;
  width: 100%;
  background: linear-gradient(165deg, #c9e8f8 0%, #daf0ff 30%, #b8dff5 60%, #9ecfed 100%);
  overflow: hidden;
  margin-top: 62px;
}

.pio-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* --- Light Rays --- */
.pio-hero-rays {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.pio-ray {
  position: absolute;
  top: -10%;
  width: 2px;
  height: 130%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, transparent 100%);
  border-radius: 50px;
  filter: blur(6px);
}
.pio-ray:nth-child(1) { left: 15%; transform: rotate(-14deg); animation: pioRayAnim 8s ease-in-out infinite; }
.pio-ray:nth-child(2) { left: 42%; transform: rotate(-4deg);  animation: pioRayAnim 10s ease-in-out infinite 1.5s; }
.pio-ray:nth-child(3) { left: 68%; transform: rotate(10deg);  animation: pioRayAnim 9s ease-in-out infinite 3s; }
@keyframes pioRayAnim { 0%,100%{opacity:.35} 50%{opacity:.7} }

/* =============================================
   FLOATING EDU ICONS  —  LEFT SIDE COLUMN
   (visible on all screen sizes, z-index above canvas)
   ============================================= */
.pio-floats {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
/* All icons default — desktop scattered */
.pio-float {
  position: absolute;
  animation: pioFloatAnim 14s ease-in-out infinite;
}

/* ---- DESKTOP positions (original) ---- */
.pio-float:nth-child(1)  { top:5%;  left:3%;  font-size:2rem;   color:rgba(14,120,180,0.18);   }
.pio-float:nth-child(2)  { top:12%; left:90%; font-size:1.6rem; color:rgba(0,170,180,0.15);    animation-delay:2s; }
.pio-float:nth-child(3)  { top:75%; left:5%;  font-size:1.8rem; color:rgba(0,160,80,0.15);     animation-delay:4s; }
.pio-float:nth-child(4)  { top:18%; left:8%;  font-size:2.2rem; color:rgba(14,120,180,0.18);   animation-delay:3s; }
.pio-float:nth-child(5)  { top:65%; left:92%; font-size:1.7rem; color:rgba(0,170,180,0.15);    animation-delay:5s; }
.pio-float:nth-child(6)  { top:8%;  left:48%; font-size:2.4rem; color:rgba(245,158,11,0.18);   animation-delay:1.5s; }
.pio-float:nth-child(7)  { top:30%; left:2%;  font-size:1.3rem; color:rgba(255,165,0,0.15);    animation-delay:2.5s; }
.pio-float:nth-child(8)  { top:50%; left:95%; font-size:1.1rem; color:rgba(255,165,0,0.15);    animation-delay:4.5s; }
.pio-float:nth-child(9)  { top:40%; left:10%; font-size:1.9rem; color:rgba(231,76,60,0.12);    animation-delay:1.2s; }
.pio-float:nth-child(10) { top:55%; left:85%; font-size:2.1rem; color:rgba(52,152,219,0.15);   animation-delay:3.2s; }
.pio-float:nth-child(11) { top:22%; left:55%; font-size:1.5rem; color:rgba(155,89,182,0.12);   animation-delay:2.8s; }
.pio-float:nth-child(12) { top:70%; left:35%; font-size:2.3rem; color:rgba(243,156,18,0.15);   animation-delay:1.8s; }
.pio-float:nth-child(13) { top:15%; left:25%; font-size:1.4rem; color:rgba(26,188,156,0.15);   animation-delay:.6s; }
.pio-float:nth-child(14) { top:60%; left:15%; font-size:2rem;   color:rgba(230,126,34,0.15);   animation-delay:4.2s; }
.pio-float:nth-child(15) { top:80%; left:60%; font-size:1.8rem; color:rgba(46,204,113,0.15);   animation-delay:5.5s; }

@keyframes pioFloatAnim {
  0%,100% { transform:translateY(0) translateX(0) rotate(0deg); }
  25%      { transform:translateY(-12px) translateX(6px) rotate(4deg); }
  50%      { transform:translateY(-6px) translateX(-3px) rotate(-2deg); }
  75%      { transform:translateY(-18px) translateX(-6px) rotate(2deg); }
}

/* =============================================
   LEFT-SIDE EDU BUBBLE STRIP
   (mobile: absolute left column of edu icon bubbles)
   ============================================= */
.pio-left-edu-strip {
  display: none; /* hidden on desktop — floating icons handle desktop */
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 100%;
  z-index: 3;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 12px 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(14,120,180,0.06) 0%, rgba(0,170,210,0.04) 50%, rgba(14,120,180,0.06) 100%);
  border-right: 1px solid rgba(255,255,255,0.35);
}
.pio-edu-pill {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: 1.5px solid rgba(14,120,180,0.2);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pioEduPillFloat 5s ease-in-out infinite;
  box-shadow: 0 3px 10px rgba(14,120,180,0.1);
}
.pio-edu-pill:nth-child(1) { animation-delay: 0s;    }
.pio-edu-pill:nth-child(2) { animation-delay: 0.8s;  }
.pio-edu-pill:nth-child(3) { animation-delay: 1.6s;  }
.pio-edu-pill:nth-child(4) { animation-delay: 2.4s;  }
.pio-edu-pill:nth-child(5) { animation-delay: 3.2s;  }
.pio-edu-pill:nth-child(6) { animation-delay: 4s;    }
.pio-edu-pill i { font-size: 0.82rem; }
.pio-edu-pill.blue  i { color: #0e78b4; }
.pio-edu-pill.teal  i { color: #00aab4; }
.pio-edu-pill.green i { color: #00a050; }
.pio-edu-pill.gold  i { color: #c88a00; }
.pio-edu-pill.red   i { color: #c0392b; }
.pio-edu-pill.purple i { color: #8e44ad; }

@keyframes pioEduPillFloat {
  0%,100% { transform: translateY(0) scale(1); }
  30%      { transform: translateY(-6px) scale(1.06); }
  60%      { transform: translateY(-3px) scale(0.97); }
}

/* =============================================
   EXTRA DECORATIVE BUBBLES
   ============================================= */
.pio-extra-bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.pio-extra-bub {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .22;
  animation: pioExtraFloat 6s ease-in-out infinite;
}
.pio-extra-bub:nth-child(1){top:15%;left:20%;background:rgba(14,120,180,.18);border:2px solid rgba(14,120,180,.28);animation-delay:0s}
.pio-extra-bub:nth-child(2){top:60%;left:75%;background:rgba(0,170,180,.18);border:2px solid rgba(0,170,180,.28);animation-delay:1s}
.pio-extra-bub:nth-child(3){top:40%;left:80%;background:rgba(0,160,80,.18);border:2px solid rgba(0,160,80,.28);animation-delay:2s}
.pio-extra-bub:nth-child(4){top:75%;left:30%;background:rgba(220,160,0,.18);border:2px solid rgba(220,160,0,.28);animation-delay:.5s}
.pio-extra-bub:nth-child(5){top:25%;left:65%;background:rgba(14,120,180,.18);border:2px solid rgba(14,120,180,.28);animation-delay:3s}
.pio-extra-bub:nth-child(6){top:50%;left:40%;background:rgba(0,170,180,.18);border:2px solid rgba(0,170,180,.28);animation-delay:1.5s}
.pio-extra-bub i { font-size: 1rem; color: #062d48; }
@keyframes pioExtraFloat {
  0%,100%{transform:translateY(0) translateX(0)}
  25%{transform:translateY(-15px) translateX(10px)}
  50%{transform:translateY(-8px) translateX(-8px)}
  75%{transform:translateY(-20px) translateX(-5px)}
}

/* =============================================
   BANNER LAYOUT — DESKTOP (side-by-side)
   ============================================= */
.pio-banner-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 560px;
}

.pio-banner-left {
  width: 55%;
  position: relative;
  padding: 60px 40px 60px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  flex-shrink: 0;
}

.pio-banner-right {
  width: 45%;
  position: relative;
  overflow: hidden;
  min-height: 560px;
  flex-shrink: 0;
  top: 18px;
  left: 232px;
}

/* =============================================
   STAT BUBBLES — desktop corner position
   ============================================= */
.pio-bubble {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: transform .3s ease;
}
.pio-bubble:hover { transform: scale(1.12); }

.pio-bub-tl { top: 60px;    left: 25px; }
.pio-bub-tr { top: 60px;    right: 25px; }
.pio-bub-bl { bottom: 30px; left: 25px; }
.pio-bub-br { bottom: 30px; right: 25px; }

.pio-bub-blue  { background:radial-gradient(circle at 35% 30%,rgba(255,255,255,.93),rgba(180,220,255,.72)); border:2px solid rgba(14,120,180,.28); box-shadow:0 8px 26px rgba(14,120,180,.2),inset 0 1px 0 rgba(255,255,255,.9); animation:pioBubFloat 4s ease-in-out infinite; }
.pio-bub-teal  { background:radial-gradient(circle at 35% 30%,rgba(255,255,255,.93),rgba(160,225,235,.72)); border:2px solid rgba(0,170,180,.28);  box-shadow:0 8px 26px rgba(0,170,180,.2),inset 0 1px 0 rgba(255,255,255,.9);  animation:pioBubFloat 4.8s ease-in-out infinite .5s; }
.pio-bub-green { background:radial-gradient(circle at 35% 30%,rgba(255,255,255,.93),rgba(160,235,200,.72)); border:2px solid rgba(0,160,80,.28);   box-shadow:0 8px 26px rgba(0,160,80,.2),inset 0 1px 0 rgba(255,255,255,.9);   animation:pioBubFloat 4.4s ease-in-out infinite 1s; }
.pio-bub-gold  { background:radial-gradient(circle at 35% 30%,rgba(255,255,255,.93),rgba(255,230,160,.72)); border:2px solid rgba(220,160,0,.28);  box-shadow:0 8px 26px rgba(220,160,0,.2),inset 0 1px 0 rgba(255,255,255,.9);  animation:pioBubFloat 5.2s ease-in-out infinite .3s; }
@keyframes pioBubFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.pio-bub-ring { position:absolute;inset:-5px;border-radius:50%;animation:pioRingPulse 2.8s ease-in-out infinite; }
.pio-bub-blue  .pio-bub-ring { border:2px solid rgba(14,120,180,.16); }
.pio-bub-teal  .pio-bub-ring { border:2px solid rgba(0,170,180,.16);  animation-delay:.4s; }
.pio-bub-green .pio-bub-ring { border:2px solid rgba(0,160,80,.16);   animation-delay:.8s; }
.pio-bub-gold  .pio-bub-ring { border:2px solid rgba(220,160,0,.16);  animation-delay:1.2s; }
@keyframes pioRingPulse { 0%,100%{transform:scale(1);opacity:.3} 50%{transform:scale(1.12);opacity:.8} }

.pio-bub-icon  { font-size:1.15rem; margin-bottom:2px; }
.pio-bub-blue  .pio-bub-icon { color:#0e78b4; }
.pio-bub-teal  .pio-bub-icon { color:#00aab4; }
.pio-bub-green .pio-bub-icon { color:#00a050; }
.pio-bub-gold  .pio-bub-icon { color:#c88a00; }

.pio-bub-num   { font-size:1.2rem; font-weight:900; color:#062d48; line-height:1; }
.pio-bub-label { font-size:.52rem; font-weight:700; color:#2a6a8a; text-transform:uppercase; letter-spacing:.6px; margin-top:2px; }

/* =============================================
   HERO CENTER CONTENT  — ENTRANCE ANIMATION
   ============================================= */
.pio-hero-content {
  text-align: center;
  max-width: 440px;
  z-index: 4;
  animation: pioContentIn .9s cubic-bezier(.22,1,.36,1) both;
}
@keyframes pioContentIn {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}

.pio-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.8);
  backdrop-filter: blur(8px);
  color: #0a5a82;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(14,120,180,.08);
  animation: pioBadgePop .6s cubic-bezier(.34,1.56,.64,1) .3s both;
}
@keyframes pioBadgePop { from{opacity:0;transform:scale(.8)} to{opacity:1;transform:scale(1)} }
.pio-badge .fa-crown { color: #f59e0b; }

.pio-heading {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 900;
  color: #062d48;
  line-height: 1.12;
  margin-bottom: 10px;
}
.pio-heading-accent { color:#0e78b4; position:relative; }
.pio-heading-accent::after {
  content:'';
  position:absolute; bottom:2px; left:0;
  width:100%; height:6px;
  background:rgba(14,120,180,.1);
  border-radius:3px;
  z-index:-1;
}
.pio-type-text { color:#0a5a82; }
.pio-cursor    { color:#0e78b4; animation:pioBlink .9s step-end infinite; }
@keyframes pioBlink { 50%{opacity:0} }

.pio-desc {
  font-size: .9rem;
  color: #1a5c7e;
  line-height: 1.6;
  margin-bottom: 20px;
  animation: pioFadeUp .7s ease .5s both;
}
@keyframes pioFadeUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

.pio-whyus-inline { margin-top:5px; margin-bottom:18px; }
.pio-whyus-inline h4 { font-size:1.1rem; font-weight:900; color:#062d48; margin-bottom:2px; }
.pio-whyus-inline h4 span { color:#0e78b4; }
.pio-whyus-inline p { color:#1a5c7e; font-size:.78rem; margin:0; }

.pio-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  animation: pioFadeUp .7s ease .7s both;
}
.pio-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s ease;
}
.pio-btn-fill {
  background: linear-gradient(135deg,#0e78b4,#0a5a82);
  color: #fff;
  box-shadow: 0 5px 20px rgba(14,120,180,.3);
  position: relative;
  overflow: hidden;
}
.pio-btn-fill::after {
  content:'';
  position:absolute; inset:0;
  background:rgba(255,255,255,.18);
  transform:translateX(-100%);
  transition:transform .4s ease;
}
.pio-btn-fill:hover::after { transform:translateX(0); }
.pio-btn-fill:hover  { transform:translateY(-2px); box-shadow:0 10px 28px rgba(14,120,180,.45); color:#fff; }
.pio-btn-outline {
  background: rgba(255,255,255,.6);
  border: 1.5px solid rgba(14,120,180,.3);
  color: #0a5a82;
  backdrop-filter: blur(6px);
}
.pio-btn-outline:hover { background:rgba(255,255,255,.88); transform:translateY(-2px); }

/* =============================================
   RIGHT SIDE CAROUSEL
   ============================================= */
.pio-img-wrapper { width:100%; height:100%; position:relative; }

.pio-img-slider,
.pio-img-slider .carousel-inner,
.pio-img-slider .carousel-item { height:100%; }

.pio-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.pio-slide-tag {
  position: absolute;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  padding: 5px 9px;
  border-radius: 7px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  border: 1px solid rgba(255,255,255,.9);
  z-index: 5;
}
.pio-tag-stars { color:#f59e0b; font-size:9px; margin-bottom:1px; }
.pio-tag-text  { font-size:8px; font-weight:600; color:#0a5a82; }
.pio-tag-1 { bottom:25%; right:8px; }
.pio-tag-2 { top:10%;    left:8px; }
.pio-tag-3 { top:8%;     right:8px; }

.pio-slide-safe {
  position: absolute;
  padding: 3px 8px;
  border-radius: 14px;
  color: #062d48;
  font-size: 9px;
  display: flex;
  align-items: center;
  gap: 3px;
  border: 1px solid rgba(255,255,255,.9);
  white-space: nowrap;
  z-index: 5;
  background: linear-gradient(90deg,rgba(255,255,255,.85) 25%,rgba(220,242,255,.95) 50%,rgba(255,255,255,.85) 75%);
  background-size: 200% auto;
  animation: pioShimmer 3s linear infinite;
  box-shadow: 0 1px 5px rgba(0,0,0,.04);
}
.pio-slide-safe .fa-shield-alt { color:#00c853; font-size:9px; }
.pio-safe-1 { top:4%;    right:1%; }
.pio-safe-2 { bottom:4%; left:5px; }
.pio-safe-3 { bottom:5%; right:3%; }
.pio-safe-4 { top:15%;   right:1%; }

@keyframes pioShimmer {
  0%   { background-position:-200% center; }
  100% { background-position:200% center; }
}

.pio-slide-btn {
  position: absolute;
  background: linear-gradient(135deg,#0e78b4,#0a5a82);
  color: #fff;
  padding: 6px 13px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: .73rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.16);
  transition: all .2s;
  z-index: 5;
}
.pio-slide-btn:hover { transform:translateY(-2px); box-shadow:0 5px 16px rgba(0,0,0,.22); color:#fff; }
.pio-btn-1 { bottom:18%; right:8px; }
.pio-btn-2 { bottom:8%;  left:8px; }
.pio-btn-3 { bottom:10%; right:14%; }
.pio-btn-4 { bottom:7%;  right:18%; }
.pio-btn-5 { bottom:7%;  right:17%; }

.pio-carousel-ctrl {
  width: 28px !important;
  height: 28px !important;
  background: rgba(0,0,0,.3) !important;
  border-radius: 50% !important;
  opacity: .6;
  transition: all .3s;
}
.pio-carousel-ctrl:hover { opacity:1; background:rgba(0,0,0,.5) !important; }

/* =============================================
   MOBILE STATS STRIP
   ============================================= */
.pio-mobile-stats { display: none; }

/* =============================================
   SCROLL + MARQUEE
   ============================================= */
.pio-scroll {
  display: block;
  text-align: center;
  padding: 6px 0 3px;
  color: rgba(14,120,180,.4);
  font-size: 1rem;
  text-decoration: none;
  animation: pioScrollAnim 2s ease-in-out infinite;
  position: relative;
  z-index: 3;
}
.pio-scroll:hover { color:rgba(14,120,180,.7); }
@keyframes pioScrollAnim { 0%,100%{transform:translateY(0)} 50%{transform:translateY(4px)} }

.pio-marquee {
  position: relative;
  z-index: 3;
  background: linear-gradient(90deg,#0a5a82,#0e78b4);
  overflow: hidden;
  padding: 10px 0;
}
.pio-marquee-inner { display:flex; width:max-content; animation:pioMarqueeAnim 40s linear infinite; }
.pio-marquee:hover .pio-marquee-inner { animation-play-state:paused; }
@keyframes pioMarqueeAnim { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.pio-marquee-row   { display:flex; align-items:center; }
.pio-marquee-word  { white-space:nowrap; color:rgba(255,255,255,.9); font-size:.7rem; font-weight:700; letter-spacing:1.2px; padding:0 18px; }
.pio-marquee-word i { margin-right:5px; color:#7ee8ff; }
.pio-marquee-sep   { width:3px; height:3px; border-radius:50%; background:#7ee8ff; opacity:.4; flex-shrink:0; }

/* =============================================
   SECTION ENTRANCE — scroll-triggered
   ============================================= */
.pio-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.pio-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.pio-reveal-left  { opacity:0; transform:translateX(-40px); transition:opacity .7s ease,transform .7s ease; }
.pio-reveal-right { opacity:0; transform:translateX(40px);  transition:opacity .7s ease,transform .7s ease; }
.pio-reveal-left.visible,
.pio-reveal-right.visible { opacity:1; transform:translateX(0); }

/* =============================================
   OVERVIEW
   ============================================= */
.pio-overview { padding:70px 0; background:#f0f6ff; }
.pio-overview-container { max-width:1100px; margin:0 auto; padding:0 20px; }
.pio-overview-img-wrap { position:relative; }
.pio-overview-img {
  width:100%; border-radius:16px; position:relative; z-index:1;
  box-shadow:0 14px 40px rgba(0,0,0,.1); aspect-ratio:4/3; object-fit:cover;
}
.pio-overview-title { font-size:clamp(1.3rem,1.8vw,1.9rem); font-weight:900; color:#062d48; margin-bottom:14px; }
.pio-overview-text  { color:#3a5a72; line-height:1.7; margin-bottom:12px; font-size:.9rem; }

/* =============================================
   SERVICES
   ============================================= */
.pio-services { padding:70px 20px; background:#fff; }
.pio-section-head { text-align:center; margin-bottom:42px; }
.pio-section-head h2 { font-size:clamp(1.6rem,2.4vw,2.2rem); font-weight:900; color:#062d48; margin-bottom:6px; }
.pio-section-head h2 span { color:#0e78b4; }
.pio-section-head p { color:#3a5a72; font-size:.92rem; }

.pio-services-grid {
  max-width:1100px; margin:0 auto;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:20px;
}
.pio-service-card {
  background:#fff; border:1px solid #daeaf8; border-radius:16px;
  padding:28px 20px; text-align:center; transition:all .3s;
}
.pio-service-card:hover { transform:translateY(-5px); box-shadow:0 12px 32px rgba(14,120,180,.1); }
.pio-service-icon {
  width:56px; height:56px; border-radius:12px;
  background:linear-gradient(135deg,#0e78b4,#0a5a82); color:#fff;
  font-size:20px; display:flex; align-items:center; justify-content:center;
  margin:0 auto 16px;
  transition: transform .3s ease;
}
.pio-service-card:hover .pio-service-icon { transform:scale(1.15) rotate(-5deg); }
.pio-service-card h3 { font-size:1.05rem; font-weight:800; color:#062d48; margin-bottom:7px; }
.pio-service-card p  { color:#3a5a72; font-size:.85rem; line-height:1.6; margin-bottom:14px; }
.pio-service-link {
  color:#0e78b4; font-weight:700; font-size:.82rem; text-decoration:none;
  display:inline-flex; align-items:center; gap:4px; transition:gap .2s;
}
.pio-service-link:hover { gap:7px; }

/* =============================================
   CONTACT
   ============================================= */
.pio-contact { padding:70px 20px; background:#f0f6ff; }
.pio-contact-container { max-width:1100px; margin:0 auto; }
.pio-contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:35px; align-items:start; }
.pio-contact-list { display:flex; flex-direction:column; gap:18px; }
.pio-contact-row  { display:flex; gap:14px; align-items:flex-start; }
.pio-contact-icon {
  width:44px; height:44px; border-radius:11px; flex-shrink:0;
  background:linear-gradient(135deg,#0e78b4,#0a5a82);
  display:flex; align-items:center; justify-content:center; color:#fff; font-size:15px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pio-contact-row:hover .pio-contact-icon { transform:scale(1.1); box-shadow:0 6px 18px rgba(14,120,180,.3); }
.pio-contact-info h4  { font-weight:800; color:#062d48; margin-bottom:1px; font-size:.92rem; }
.pio-contact-info a,
.pio-contact-info p   { color:#3a5a72; text-decoration:none; font-size:.85rem; line-height:1.55; }
.pio-contact-info a:hover { color:#0e78b4; }
.pio-contact-img-wrap img { width:90%; border-radius:14px; box-shadow:0 8px 28px rgba(14,120,180,.08); }


/* =============================================
   🆕 LAPTOP SMALL (992px - 1099px)
   ============================================= */
@media (min-width: 992px) and (max-width: 1099px) {
  .pio-banner-wrap {
    flex-direction: column;
    min-height: auto;
  }
  .pio-banner-right {
    width: 100%;
    height: 930px;
    min-height: unset;
    position: relative;
    order: 1;
    top: auto; 
    right: auto;
    overflow: hidden;
    top: 20px;
    left: 20px;
  }
  .pio-banner-left {
    width: 100%;
    min-height: auto;
    padding: 45px 30px 40px;
    order: 2;
  }
  .pio-bubble { 
    width: 82px; 
    height: 82px; 
  }
  .pio-bub-tl { 
    top: 20px;    
    left: 15px; 
  }
  .pio-bub-tr { 
    top: 20px;    
    right: 15px; 
  }
  .pio-bub-bl { 
    bottom: 20px; 
    left: 15px; 
  }
  .pio-bub-br { 
    bottom: 20px; 
    right: 15px; 
  }
  .pio-extra-bub { 
    width: 42px; 
    height: 42px; 
  }
  .pio-extra-bub i { 
    font-size: .8rem; 
  }
  .pio-contact-grid { 
    grid-template-columns: 1fr; 
  }
  
  /* Carousel full height fix */
  .pio-img-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .pio-img-slider,
  .pio-img-slider .carousel-inner,
  .pio-img-slider .carousel-item,
  .pio-img-slider .carousel-item a,
  .pio-img-slider .carousel-item.active {
    height: 100% !important;
    width: 100%;
  }
  
  .pio-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
  
  .pio-carousel-ctrl {
    width: 32px !important;
    height: 32px !important;
  }
  .pio-bub-outer-label {
  position: absolute;
  font-size: .72rem;
   
}
}
.pio-faq {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #eef5f9 100%);
}

.pio-faq-accordion {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
}

.pio-faq-item {
  border: 1px solid #e8eef2;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(14,120,180,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pio-faq-item:hover {
  box-shadow: 0 6px 20px rgba(14,120,180,0.12);
  transform: translateY(-2px);
}

.pio-faq-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: #0e2a3f;
  background: #fff;
  padding: 20px 22px;
  font-size: 16px;
  line-height: 1.4;
  transition: background 0.3s ease, color 0.3s ease;
}

.pio-faq-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eaf4fa;
  color: #0e78b4;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease;
}

.pio-faq-q {
  flex: 1;
}

.pio-faq-btn:not(.collapsed) {
  color: #0e78b4;
  background: #fff;
}

.pio-faq-btn:not(.collapsed) .pio-faq-num {
  background: #0e78b4;
  color: #fff;
}

.pio-faq-btn:focus {
  box-shadow: none;
  border-color: transparent;
}

.pio-faq-btn::after {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-size: 16px;
  transition: transform 0.3s ease;
}

.pio-faq-body {
  padding: 4px 22px 22px 72px;
  color: #5b6b76;
  font-size: 15px;
  line-height: 1.65;
}

/* ===== TABLET ===== */
@media (max-width: 768px) {
  .pio-faq {
    padding: 50px 0;
  }

  .pio-faq-accordion {
    padding: 0 16px;
  }

  .pio-faq-btn {
    padding: 16px 18px;
    font-size: 15px;
    gap: 12px;
  }

  .pio-faq-num {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .pio-faq-body {
    padding: 2px 18px 18px 60px;
    font-size: 14px;
  }
}

/* ===== MOBILE PHONES ===== */
@media (max-width: 480px) {
  .pio-faq {
    padding: 40px 0;
  }

  .pio-faq-accordion {
    padding: 0 12px;
  }

  .pio-faq-item {
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .pio-faq-btn {
    padding: 14px 14px;
    font-size: 14px;
    gap: 10px;
    align-items: flex-start;
  }

  .pio-faq-num {
    width: 26px;
    height: 26px;
    font-size: 11px;
    margin-top: 2px;
  }

  .pio-faq-body {
    padding: 0 14px 16px 50px;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .pio-faq-item:hover {
    transform: none;
  }
}

/* =============================================
   🆕 LAPTOP MEDIUM (1100px - 1199px)
   ============================================= */
@media (min-width: 1100px) and (max-width: 1199px) {
  .pio-banner-wrap {
    max-width: 991px;
    min-height: 500px;
  }
  .pio-banner-left {
    width: 53%;
    padding: 35px 22px 35px 32px;
    min-height: 500px;
  }
  .pio-banner-right {
    width: 53%;
    left: 20px !important;
    top: 14px;
    min-height: 500px;
  }
  .pio-bubble { width: 72px; height: 72px; }
  .pio-bub-tl { top: 25px; left: 10px; }
  .pio-bub-tr { top: 25px; right: 10px; }
  .pio-bub-bl { bottom: 20px; left: 10px; }
  .pio-bub-br { bottom: 20px; right: 10px; }
  .pio-bub-num { font-size: 0.9rem; }
  .pio-bub-label { font-size: 0.42rem; }
  .pio-bub-outer-label { font-size: 0.48rem; padding: 3px 9px; }
  .pio-heading { font-size: 1.5rem; }
  .pio-desc { font-size: 0.8rem; }
  .pio-hero-content { max-width: 370px; }
  .pio-btn { padding: 8px 16px; font-size: 0.78rem; }
}

/* =============================================
   🆕 DESKTOP SMALL (1200px - 1299px)
   ============================================= */
@media (min-width: 1200px) and (max-width: 1299px) {
  .pio-banner-wrap {
    max-width: 1140px;
    min-height: 530px;
  }
  .pio-banner-left {
    width: 54%;
    padding: 42px 28px 42px 42px;
    min-height: 530px;
  }
  .pio-banner-right {
    width: 46%;
    left: 70px !important;
    top: 15px;
    min-height: 530px;
  }
  .pio-bubble { width: 82px; height: 82px; }
  .pio-bub-tl { top: 38px; left: 14px; }
  .pio-bub-tr { top: 38px; right: 14px; }
  .pio-bub-bl { bottom: 24px; left: 14px; }
  .pio-bub-br { bottom: 24px; right: 14px; }
  .pio-bub-num { font-size: 1rem; }
  .pio-bub-label { font-size: 0.46rem; }
  .pio-bub-outer-label { font-size: 0.52rem; padding: 4px 11px; }
  .pio-heading { font-size: clamp(1.5rem, 2vw, 2rem); }
  .pio-desc { font-size: 0.82rem; }
  .pio-hero-content { max-width: 390px; }
}

/* =============================================
   🆕 DESKTOP MEDIUM (1300px - 1399px)
   ============================================= */
@media (min-width: 1300px) and (max-width: 1399px) {
  .pio-banner-wrap {
    max-width: 1240px;
    min-height: 550px;
  }
  .pio-banner-left {
    width: 55%;
    padding: 48px 32px 48px 48px;
    min-height: 550px;
  }
  .pio-banner-right {
    width: 45%;
    left: 120px !important;
    top: 17px;
    min-height: 550px;
  }
  .pio-bubble { width: 90px; height: 90px; }
  .pio-bub-tl { top: 45px; left: 18px; }
  .pio-bub-tr { top: 45px; right: 18px; }
  .pio-bub-bl { bottom: 28px; left: 18px; }
  .pio-bub-br { bottom: 28px; right: 18px; }
  .pio-bub-num { font-size: 1.1rem; }
  .pio-bub-outer-label { font-size: 0.56rem; }
  .pio-heading { font-size: clamp(1.7rem, 2.3vw, 2.3rem); }
  .pio-desc { font-size: 0.87rem; }
}

/* =============================================
   🆕 DESKTOP LARGE (1400px - 1499px)
   ============================================= */
@media (min-width: 1400px) and (max-width: 1499px) {
  .pio-banner-wrap {
    max-width: 1180px;
    min-height: 570px;
  }
  .pio-banner-left {
    width: 55%;
    padding: 52px 35px 52px 55px;
    min-height: 570px;
  }
  .pio-hero{
    margin-top:37px;
  }
  .pio-banner-right {
    width: 54%;
    left: 35px !important;
    top: 18px;
    min-height: 570px;
  }
  .pio-bubble { width: 95px; height: 95px; }
  .pio-bub-tl { top: 50px; left: 22px; }
  .pio-bub-tr { top: 50px; right: 22px; }
  .pio-bub-bl { bottom: 30px; left: 22px; }
  .pio-bub-br { bottom: 30px; right: 22px; }
  .pio-bub-num { font-size: 1.15rem; }
  .pio-bub-outer-label { font-size: 0.58rem; }
  .pio-heading { font-size: clamp(1.8rem, 2.4vw, 2.5rem); }
}

/* =============================================
   🆕 DESKTOP EXTRA LARGE (1500px - 1599px)
   ============================================= */
@media (min-width: 1500px) and (max-width: 1599px) {
  .pio-banner-wrap {
    max-width: 1128px;
    min-height: 590px;
  }
  .pio-banner-left {
    width: 54%;
    padding: 58px 38px 58px 60px;
    min-height: 590px;
  }
  .pio-banner-right {
    width: 56%;
    left: 64px !important;
    top: 20px;
    min-height: 590px;
  }
  .pio-hero{
    margin-top:38px;
  }
  .pio-bubble { width: 100px; height: 100px; }
  .pio-bub-tl { top: 55px; left: 25px; }
  .pio-bub-tr { top: 55px; right: 25px; }
  .pio-bub-bl { bottom: 32px; left: 25px; }
  .pio-bub-br { bottom: 32px; right: 25px; }
  .pio-bub-num { font-size: 1.2rem; }
  .pio-bub-outer-label { font-size: 0.6rem; }
  .pio-heading { font-size: clamp(1.9rem, 2.6vw, 2.7rem); }
}

/* =============================================
   🆕 WIDE (1600px - 1699px)
   ============================================= */
@media (min-width: 1600px) and (max-width: 1699px) {
  .pio-banner-wrap {
    max-width: 1250px;
    min-height: 610px;
    margin-bottom:10px;
  }
  .pio-banner-left {
    width: 53%;
    padding: 62px 42px 62px 68px;
    min-height: 610px;
  }
  .pio-hero{
    margin-top:43px;
  }
  .pio-banner-right {
    width: 52%;
    left: 125px !important;
    top: 22px;
    min-height: 610px;
  }
  .pio-bubble { width: 105px; height: 105px; }
  .pio-bub-tl { top: 60px; left: 28px; }
  .pio-bub-tr { top: 60px; right: 28px; }
  .pio-bub-bl { bottom: 35px; left: 28px; }
  .pio-bub-br { bottom: 35px; right: 28px; }
  .pio-bub-num { font-size: 1.25rem; }
  .pio-bub-outer-label { font-size: 0.62rem; }
  .pio-heading { font-size: clamp(2rem, 2.7vw, 2.9rem); }
}

/* =============================================
   🆕 WIDE LARGE (1700px - 1799px)
   ============================================= */
@media (min-width: 1700px) and (max-width: 1799px) {
  .pio-banner-wrap {
    max-width: 1294px;
    min-height: 630px;
    margin-bottom:10px;
  }
  .pio-hero{
    margin-top:30px;
  }
  .pio-banner-left {
    width: 52%;
    padding: 66px 46px 66px 75px;
    min-height: 630px;
  }
  .pio-banner-right {
    width: 52%;
    left: 131px !important;
    top: 24px;
    min-height: 630px;
  }
  .pio-bubble { width: 112px; height: 112px; }
  .pio-bub-tl { top: 65px; left: 32px; }
  .pio-bub-tr { top: 65px; right: 32px; }
  .pio-bub-bl { bottom: 38px; left: 32px; }
  .pio-bub-br { bottom: 38px; right: 32px; }
  .pio-bub-num { font-size: 1.3rem; }
  .pio-bub-outer-label { font-size: 0.65rem; }
  .pio-heading { font-size: clamp(2.1rem, 2.8vw, 3.1rem); }
}

/* =============================================
   🆕 HD (1800px - 1919px)
   ============================================= */
@media (min-width: 1800px) and (max-width: 1919px) {
  .pio-banner-wrap {
    max-width: 1260px;
    min-height: 650px;
    margin-bottom:10px;
  }
  .pio-banner-left {
    width: 51%;
    padding: 70px 50px 70px 82px;
    min-height: 650px;
  }
  .pio-banner-right {
    width: 56%;
    left: 130px !important;
    top: 26px;
    min-height: 650px;
  }
  .pio-bubble { width: 118px; height: 118px; }
  .pio-bub-tl { top: 70px; left: 36px; }
  .pio-bub-tr { top: 70px; right: 36px; }
  .pio-bub-bl { bottom: 42px; left: 36px; }
  .pio-bub-br { bottom: 42px; right: 36px; }
  .pio-bub-num { font-size: 1.35rem; }
  .pio-bub-outer-label { font-size: 0.68rem; padding: 5px 16px; }
  .pio-heading { font-size: clamp(2.2rem, 2.9vw, 3.3rem); }
}

/* =============================================
   🆕 FULL HD (1920px - 2099px)
   ============================================= */
@media (min-width: 1920px) and (max-width: 2099px) {
  .pio-banner-wrap {
    max-width: 1400px;
    min-height: 680px;
    margin-bottom:20px;
  }
  .pio-banner-left {
    width: 50%;
    padding: 75px 55px 75px 90px;
    min-height: 680px;
  }
  .pio-banner-right {
    width: 52%;
    left: 190px !important;
    top: 28px;
    min-height: 680px;
  }
  .pio-bubble { width: 125px; height: 125px; }
  .pio-bub-tl { top: 75px; left: 40px; }
  .pio-bub-tr { top: 75px; right: 40px; }
  .pio-bub-bl { bottom: 48px; left: 40px; }
  .pio-bub-br { bottom: 48px; right: 40px; }
  .pio-bub-num { font-size: 1.45rem; }
  .pio-bub-outer-label { font-size: 0.7rem; padding: 6px 18px; }
  .pio-heading { font-size: clamp(2.3rem, 3vw, 3.5rem); }
}

/* =============================================
   🆕 QHD (2100px - 2399px)
   ============================================= */
@media (min-width: 2100px) and (max-width: 2399px) {
  .pio-banner-wrap {
    max-width: 1478px;
    min-height: 710px;
  }
  .pio-hero{
    margin-bottom:20px;
  }
  .pio-banner-left {
    width: 49%;
    padding: 80px 60px 80px 100px;
    min-height: 710px;
  }
  .pio-banner-right {
    width: 51%;
    left: 225px !important;
    top: 30px;
    min-height: 710px;
  }
  .pio-bubble { width: 135px; height: 135px; }
  .pio-bub-tl { top: 80px; left: 45px; }
  .pio-bub-tr { top: 80px; right: 45px; }
  .pio-bub-bl { bottom: 52px; left: 45px; }
  .pio-bub-br { bottom: 52px; right: 45px; }
  .pio-bub-num { font-size: 1.6rem; }
  .pio-bub-outer-label { font-size: 0.73rem; padding: 6px 20px; }
  .pio-heading { font-size: clamp(2.5rem, 3.2vw, 3.8rem); }
}

/* =============================================
   🆕 ULTRA WIDE (2400px - 2699px)
   ============================================= */
@media (min-width: 2400px) and (max-width: 2699px) {
  .pio-banner-wrap {
    max-width: 1740px;
    min-height: 750px;
    margin-bottom:20px;
  }

  .pio-banner-left {
    width: 48%;
    padding: 85px 65px 85px 110px;
    min-height: 750px;
  }
  .pio-banner-right {
    width: 52%;
    left: 240px !important;
    top: 32px;
    min-height: 750px;
  }
  .pio-bubble { width: 145px; height: 145px; }
  .pio-bub-tl { top: 85px; left: 50px; }
  .pio-bub-tr { top: 85px; right: 50px; }
  .pio-bub-bl { bottom: 58px; left: 50px; }
  .pio-bub-br { bottom: 58px; right: 50px; }
  .pio-bub-num { font-size: 1.7rem; }
  .pio-bub-label { font-size: 0.62rem; }
  .pio-bub-icon { font-size: 1.4rem; }
  .pio-bub-outer-label { font-size: 0.78rem; padding: 7px 22px; letter-spacing: 1.8px; }
  .pio-heading { font-size: clamp(2.6rem, 3.5vw, 4rem); }
  .pio-desc { font-size: 1.05rem; }
  .pio-hero-content { max-width: 550px; }
}

/* =============================================
   🆕 4K (2700px - 3000px+)
   ============================================= */
@media (min-width: 2700px) {
  .pio-banner-wrap {
    max-width: 1973px;
    min-height: 800px;
    margin-bottom:30px;
  }
  .pio-banner-left {
    width: 47%;
    padding: 95px 75px 95px 130px;
    min-height: 800px;
  }
  .pio-banner-right {
    width: 53%;
    left: 260px !important;
    top: 36px;
    min-height: 800px;
  }
  .pio-bubble { width: 160px; height: 160px; }
  .pio-bub-tl { top: 95px; left: 60px; }
  .pio-bub-tr { top: 95px; right: 60px; }
  .pio-bub-bl { bottom: 65px; left: 60px; }
  .pio-bub-br { bottom: 65px; right: 60px; }
  .pio-bub-num { font-size: 1.9rem; }
  .pio-bub-label { font-size: 0.68rem; }
  .pio-bub-icon { font-size: 1.6rem; }
  .pio-bub-outer-label { font-size: 0.85rem; padding: 8px 25px; letter-spacing: 2px; }
  .pio-heading { font-size: clamp(2.8rem, 3.8vw, 4.5rem); }
  .pio-desc { font-size: 1.15rem; }
  .pio-hero-content { max-width: 600px; }
  .pio-badge { font-size: 0.85rem; padding: 10px 25px; }
  .pio-btn { padding: 14px 30px; font-size: 1rem; }
  .pio-whyus-inline h4 { font-size: 1.4rem; }
  .pio-whyus-inline p { font-size: 0.9rem; }
}

/* =============================================
   RESPONSIVE — TABLET (≤991px)
   Stack: image TOP, content BOTTOM
   ============================================= */
@media (max-width:991px) {
  .pio-banner-wrap {
    flex-direction: column;
    min-height: auto;
  }
  .pio-banner-right {
    width: 100%;
    height: 930px;
    min-height: unset;
    position: relative;
    order: 1;
    top: auto; 
    right: auto;
    overflow: hidden;
    top: 20px;
    left: 20px;
  }
  .pio-banner-left {
    width: 100%;
    min-height: auto;
    padding: 45px 30px 40px;
    order: 2;
  }
  .pio-bubble { 
    width: 82px; 
    height: 82px; 
  }
  .pio-bub-tl { 
    top: 20px;    
    left: 15px; 
  }
  .pio-bub-tr { 
    top: 20px;    
    right: 15px; 
  }
  .pio-bub-bl { 
    bottom: 20px; 
    left: 15px; 
  }
  .pio-bub-br { 
    bottom: 20px; 
    right: 15px; 
  }
  .pio-extra-bub { 
    width: 42px; 
    height: 42px; 
  }
  .pio-extra-bub i { 
    font-size: .8rem; 
  }
  .pio-contact-grid { 
    grid-template-columns: 1fr; 
  }
  
  /* Carousel full height fix */
  .pio-img-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .pio-img-slider,
  .pio-img-slider .carousel-inner,
  .pio-img-slider .carousel-item,
  .pio-img-slider .carousel-item a,
  .pio-img-slider .carousel-item.active {
    height: 100% !important;
    width: 100%;
  }
  
  .pio-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
  
  .pio-carousel-ctrl {
    width: 32px !important;
    height: 32px !important;
  }
  .pio-bub-outer-label {
  position: absolute;
  font-size: .72rem;
   
}
}

/* =============================================
   🆕 RESPONSIVE SECTIONS (NOT BANNER)
   ============================================= */

/* Overview, Services, Contact - responsive max-width */
@media (min-width: 992px) and (max-width: 1199px) {
  .pio-overview-container,
  .pio-services-grid,
  .pio-contact-container {
    max-width: 960px;
  }
  .pio-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .pio-contact-grid {
    gap: 25px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .pio-overview-container,
  .pio-services-grid,
  .pio-contact-container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .pio-overview-container,
  .pio-services-grid,
  .pio-contact-container {
    max-width: 1320px;
  }
}

@media (min-width: 1600px) and (max-width: 1919px) {
  .pio-overview-container,
  .pio-services-grid,
  .pio-contact-container {
    max-width: 1400px;
  }
  .pio-overview-text { font-size: 1rem; }
  .pio-service-card { padding: 32px 24px; }
}

@media (min-width: 1920px) and (max-width: 2399px) {
  .pio-overview-container,
  .pio-services-grid,
  .pio-contact-container {
    max-width: 1600px;
  }
  .pio-overview-text { font-size: 1.05rem; }
  .pio-overview-title { font-size: 2.2rem; }
  .pio-section-head h2 { font-size: 2.5rem; }
  .pio-service-card { padding: 36px 28px; }
  .pio-service-card h3 { font-size: 1.2rem; }
  .pio-service-card p { font-size: 0.9rem; }
}

@media (min-width: 2400px) and (max-width: 2999px) {
  .pio-overview-container,
  .pio-services-grid,
  .pio-contact-container {
    max-width: 1800px;
  }
  .pio-overview-text { font-size: 1.1rem; }
  .pio-overview-title { font-size: 2.4rem; }
  .pio-section-head h2 { font-size: 2.8rem; }
  .pio-service-card { padding: 40px 32px; }
  .pio-services-grid { gap: 28px; }
  .pio-contact-grid { gap: 50px; }
}

@media (min-width: 3000px) {
  .pio-overview-container,
  .pio-services-grid,
  .pio-contact-container {
    max-width: 2200px;
  }
  .pio-overview-text { font-size: 1.2rem; line-height: 1.8; }
  .pio-overview-title { font-size: 2.8rem; }
  .pio-section-head h2 { font-size: 3.2rem; }
  .pio-section-head p { font-size: 1.1rem; }
  .pio-service-card { padding: 48px 36px; }
  .pio-service-card h3 { font-size: 1.4rem; }
  .pio-service-card p { font-size: 1rem; }
  .pio-services-grid { gap: 32px; }
  .pio-contact-grid { gap: 60px; }
  .pio-contact-info h4 { font-size: 1.1rem; }
  .pio-contact-info a, .pio-contact-info p { font-size: 1rem; }
}
/* =============================================
   RESPONSIVE — PHONE (≤767px)
   COMPLETE MOBILE OVERHAUL
   ============================================= */
@media (max-width:767px) {
  /* --- HERO restructure --- */
  .pio-hero { 
    overflow: hidden; 
    position: relative;
    margin-top: -18px;
  }

  /* Carousel (image) on top, FULL WIDTH & HEIGHT */
  .pio-banner-right {
    height: 340px;
    width: 100% !important;
    max-width: 100% !important;
    order: 1;
    min-height: unset;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    margin: 0 !important;
    padding: 0 !important;
    top: 0px;
    left: 20px;
  }
  
  /* Image wrapper - FULL CONTAINER */
  .pio-img-wrapper {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  /* Carousel slider - FULL HEIGHT FIX */
  .pio-img-slider {
    height: 100% !important;
    width: 100% !important;
  }
  
  .pio-img-slider .carousel-inner {
    height: 100% !important;
    width: 100% !important;
  }
  
  .pio-img-slider .carousel-item,
  .pio-img-slider .carousel-item.active {
    height: 100% !important;
    width: 100% !important;
  }
  
  .pio-img-slider .carousel-item a {
    display: block !important;
    height: 100% !important;
    width: 100% !important;
  }
  
  /* Images - SHOW FULL IMAGE */
  .pio-slide-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    max-width: 100% !important;
    background: #f0f6ff;
  }
  
  /* Carousel controls */
  .pio-carousel-ctrl {
    width: 36px !important;
    height: 36px !important;
    background: rgba(0,0,0,.4) !important;
    opacity: .7;
    z-index: 10;
  }
  
  .pio-carousel-ctrl:hover,
  .pio-carousel-ctrl:active {
    opacity: 1;
    background: rgba(0,0,0,.6) !important;
  }

  /* ===== LEFT CONTENT - FIXED DISPLAY ===== */
  .pio-banner-left {
    order: 2;
    width: 100% !important;
    padding: 35px 20px 30px 60px !important;
    min-height: auto;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    position: relative;
    z-index: 2;
  }

  /* Hero content - SHOW FULL CONTENT */
  .pio-hero-content {
    text-align: left;
    max-width: 100%;
    width: 100%;
    display: block !important;
  }
  
  /* Badge */
  .pio-badge {
    display: inline-flex !important;
    font-size: .65rem;
    padding: 6px 14px;
    margin-bottom: 12px;
  }
  
  /* Heading */
  .pio-heading { 
    font-size: 1.5rem; 
    line-height: 1.2;
    margin-bottom: 8px;
    display: block !important;
  }
  
  /* Description */
  .pio-desc { 
    font-size: .82rem;
    display: block !important;
    margin-bottom: 12px;
  }
  
  /* Why Choose Us */
  .pio-whyus-inline {
    display: block !important;
    margin-bottom: 16px;
  }
  
  .pio-whyus-inline h4 { 
    font-size: 1rem;
    display: block !important;
  }
  
  .pio-whyus-inline p { 
    font-size: .75rem;
    display: block !important;
  }

  /* Show the left edu strip on mobile */
  .pio-left-edu-strip { 
    display: flex !important;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 3;
  }

  /* Hide corner bubbles on mobile */
  .pio-bub-tl, 
  .pio-bub-tr,
  .pio-bub-bl, 
  .pio-bub-br { 
    display: none !important; 
  }

  /* Floating icons */
  .pio-float:nth-child(1)  { left: 16% !important; top: 5% !important; }
  .pio-float:nth-child(4)  { left: 18% !important; top: 18% !important; }
  .pio-float:nth-child(7)  { left: 16% !important; top: 75% !important; }
  .pio-float:nth-child(9)  { left: 18% !important; top: 40% !important; }
  .pio-float:nth-child(14) { left: 18% !important; top: 60% !important; }
  .pio-float { 
    font-size: 1rem !important; 
    opacity: 0.07 !important; 
  }

  .pio-extra-bub { 
    width: 32px; 
    height: 32px; 
    opacity: .12; 
  }
  .pio-extra-bub i { 
    font-size: .55rem; 
  }

  /* Buttons - SHOW FULL WIDTH */
  .pio-buttons {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }
  
  .pio-btn {
    width: 100% !important;
    max-width: 280px;
    justify-content: center;
    padding: 12px 20px;
    font-size: .85rem;
  }

  /* Mobile stats strip */
  .pio-mobile-stats {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    background: rgba(255,255,255,.42);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,.6);
    border-bottom: 1px solid rgba(255,255,255,.6);
    position: relative;
    z-index: 3;
    order: 3;
  }
  
  .pio-mob-stat {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 11px 4px;
    border-right: 1px solid rgba(14,120,180,.1);
  }
  
  .pio-mob-stat:last-child { 
    border-right: none; 
  }
  
  .pio-mob-stat-icon { 
    font-size: .95rem; 
    margin-bottom: 3px; 
  }
  
  .pio-mob-stat-icon.blue  { color: #0e78b4; }
  .pio-mob-stat-icon.teal  { color: #00aab4; }
  .pio-mob-stat-icon.green { color: #00a050; }
  .pio-mob-stat-icon.gold  { color: #c88a00; }
  
  .pio-mob-stat-num   { 
    font-size: .9rem; 
    font-weight: 900; 
    color: #062d48; 
    line-height: 1; 
  }
  
  .pio-mob-stat-label { 
    font-size: .45rem; 
    font-weight: 700; 
    color: #2a6a8a; 
    text-transform: uppercase; 
    letter-spacing: .5px; 
    margin-top: 2px; 
    text-align: center; 
  }

  /* Section spacing */
  .pio-overview  { 
    padding: 48px 0; 
  }
  .pio-services  { 
    padding: 48px 16px; 
  }
  .pio-contact   { 
    padding: 48px 16px; 
  }
}

/* =============================================
   RESPONSIVE — SMALL PHONE (≤480px)
   ============================================= */
@media (max-width:480px) {
  .pio-banner-right { 
    height: 340px;
    width: 100% !important;
    top: 0px;
    left: 20px;
  }
  
  .pio-img-wrapper {
    width: 100% !important;
    height: 100% !important;
  }
  
  .pio-slide-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }
  
  .pio-banner-left { 
    padding: 28px 16px 24px 54px !important;
    width: 100% !important;
  }

  .pio-heading { 
    font-size: 1.25rem; 
  }
  
  .pio-badge { 
    font-size: .6rem; 
    padding: 5px 12px; 
  }
  
  .pio-desc { 
    font-size: .78rem; 
  }
  
  .pio-btn { 
    font-size: .8rem; 
    padding: 10px 18px; 
    max-width: 260px;
  }

  .pio-extra-bub { 
    display: none; 
  }

  .pio-mob-stat-num { 
    font-size: .82rem; 
  }
  
  .pio-mob-stat-label { 
    font-size: .4rem; 
  }
  
  .pio-mob-stat-icon { 
    font-size: .8rem; 
  }

  .pio-marquee-word { 
    font-size: .62rem; 
    padding: 0 12px; 
  }

  .pio-services-grid { 
    grid-template-columns: 1fr 1fr; 
  }

  .pio-left-edu-strip { 
    width: 40px; 
  }
  
  .pio-edu-pill { 
    width: 30px; 
    height: 30px; 
  }
  
  .pio-edu-pill i { 
    font-size: .7rem; 
  }
  
  .pio-carousel-ctrl {
    width: 30px !important;
    height: 30px !important;
  }
}

/* =============================================
   RESPONSIVE — VERY SMALL (≤360px)
   ============================================= */
@media (max-width:360px) {
  .pio-banner-right { 
    height: 340px;
    width: 100% !important;
    top: 0px;
    left: 20px;
  }
  
  .pio-img-wrapper {
    width: 100% !important;
    height: 100% !important;
  }
  
  .pio-slide-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }
  
  .pio-banner-left { 
    padding: 22px 12px 20px 48px !important;
    width: 100% !important;
  }
  
  .pio-heading { 
    font-size: 1.1rem; 
  }
  
  .pio-btn {
    max-width: 240px;
    font-size: .75rem;
    padding: 8px 16px;
  }
  
  .pio-left-edu-strip { 
    width: 36px; 
  }
  
  .pio-edu-pill { 
    width: 26px; 
    height: 26px; 
  }
  
  .pio-edu-pill i { 
    font-size: .6rem; 
  }
  
  .pio-carousel-ctrl {
    width: 26px !important;
    height: 26px !important;
  }
}

/* === BUBBLE OUTER LABELS === */
.pio-bub-outer-label {
  position: absolute;
  font-size: .62rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f0dfdf;
  white-space: nowrap;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.3);
  z-index: 6;
  animation: pioLabelFloat 4s ease-in-out infinite;
}
.pio-bub-outer-label::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 23px;
  background: inherit;
  opacity: 0;
  z-index: -1;
  animation: pioLabelGlow 2.5s ease-in-out infinite;
}
.pio-bub-outer-label::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

/* Top labels sit above bubble, arrow points DOWN */
.pio-bub-tl .pio-bub-outer-label,
.pio-bub-tr .pio-bub-outer-label { bottom: calc(100% + 10px); }
.pio-bub-tl .pio-bub-outer-label::after,
.pio-bub-tr .pio-bub-outer-label::after { top: 100%; }

/* Bottom labels sit below bubble, arrow points UP */
.pio-bub-bl .pio-bub-outer-label,
.pio-bub-br .pio-bub-outer-label { top: calc(100% + 10px); }
.pio-bub-bl .pio-bub-outer-label::after,
.pio-bub-br .pio-bub-outer-label::after { bottom: 100%; }

/* Blue (top-left) */
.pio-bub-blue .pio-bub-outer-label {
  background: linear-gradient(135deg,#05669e,#0969a0);
  box-shadow: 0 4px 15px rgba(14,120,180,.3);
}
.pio-bub-blue .pio-bub-outer-label::after { border-top: 7px solid #0969a0; }

/* Teal (top-right) */
.pio-bub-teal .pio-bub-outer-label {
  background: linear-gradient(135deg, #32898f, #04848d);
  box-shadow: 0 4px 15px rgba(0,170,180,.3);
}
.pio-bub-teal .pio-bub-outer-label::after { border-top: 7px solid #008a94; }

/* Green (bottom-left) */
.pio-bub-green .pio-bub-outer-label {
  background: linear-gradient(135deg,#00a050,#008040);
  box-shadow: 0 4px 15px rgba(0,160,80,.3);
}
.pio-bub-green .pio-bub-outer-label::after { border-bottom: 7px solid #00a050; }

/* Gold (bottom-right) */
.pio-bub-gold .pio-bub-outer-label {
  background: linear-gradient(135deg,#c88a00,#a87000);
  box-shadow: 0 4px 15px rgba(200,138,0,.3);
}
.pio-bub-gold .pio-bub-outer-label::after { border-bottom: 7px solid #c88a00; }

/* Hover lift */
.pio-bubble:hover .pio-bub-outer-label {
  transform: translateX(-50%) translateY(-6px);
  box-shadow: 0 8px 25px rgba(14,120,180,.4);
  transition: all .3s ease;
}

/* Animations */
@keyframes pioLabelFloat {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-4px); }
}
@keyframes pioLabelGlow {
  0%,100% { opacity:0; transform:scale(1); }
  50%     { opacity:.3; transform:scale(1.08); }
}

/* Stagger delays */
.pio-bub-tl .pio-bub-outer-label         { animation-delay:0s; }
.pio-bub-tr .pio-bub-outer-label         { animation-delay:.5s; }
.pio-bub-bl .pio-bub-outer-label         { animation-delay:1s; }
.pio-bub-br .pio-bub-outer-label         { animation-delay:1.5s; }
.pio-bub-tl .pio-bub-outer-label::before { animation-delay:0s; }
.pio-bub-tr .pio-bub-outer-label::before { animation-delay:.6s; }
.pio-bub-bl .pio-bub-outer-label::before { animation-delay:1.2s; }
.pio-bub-br .pio-bub-outer-label::before { animation-delay:1.8s; }

/* Responsive */
@media (max-width:991px) {
  .pio-bub-outer-label { font-size:.45rem; padding:3px 10px; letter-spacing:1px; }
  .pio-bub-tl .pio-bub-outer-label,
  .pio-bub-tr .pio-bub-outer-label { bottom:calc(100% + 6px); }
  .pio-bub-bl .pio-bub-outer-label,
  .pio-bub-br .pio-bub-outer-label { top:calc(100% + 6px); }
}
@media (max-width:767px) {
  .pio-bub-outer-label { display:none; }
}
