/* =============================================
   ABOUT SECTION — about.css
   Performance-optimized: GPU layers, no blur
   on animated elements, will-change hints
   ============================================= */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }



/* ── Section ── */
.tb-ab-section {
  padding: 40px 0;
  background: transparent;
  overflow: hidden;
  position: relative;
  width: 100%;
  /* Promote section to its own composite layer */
  will-change: transform;
  transform: translateZ(0);
}
.tb-ab-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(13,110,253,.05) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(3,55,95,.04)    0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,107,157,.03) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Container ── */
.tb-ab-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

/* ── Row ── */
.tb-ab-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

/* ── Columns ── */
.tb-ab-col-left,
.tb-ab-col-right {
  width: 50%;
  flex-shrink: 0;
  padding: 0 15px;
}

/* ── Person wrapper ── */
.tb-ab-person-wrapper {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Own composite layer so children animate independently */
  transform: translateZ(0);
}

/* ── Glow blobs
     KEY FIX: remove filter:blur() from animated elements.
     Use a pre-blurred static look via border-radius + opacity only.
     Blur on animating elements forces the browser to rasterize
     every frame — massive paint cost.
   ── */
.tb-ab-glow {
  position: absolute;
  width: 300px; height: 300px;
  /* Soft look without filter:blur — large radial gradient fades naturally */
  background: radial-gradient(circle, rgba(13,110,253,.22) 0%, rgba(13,110,253,.08) 40%, transparent 70%);
  border-radius: 50%;
  opacity: 1;
  z-index: 1;
  will-change: transform, opacity;
  transform: translateZ(0);
  animation: tb-ab-pulseGlow 4s infinite alternate;
}
.tb-ab-glow-pink {
  position: absolute;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,107,157,.18) 0%, rgba(255,107,157,.06) 45%, transparent 70%);
  border-radius: 50%;
  opacity: 1;
  z-index: 0;
  top: 30%; left: 10%;
  will-change: transform, opacity;
  transform: translateZ(0);
  animation: tb-ab-pulseGlow 4.5s infinite alternate-reverse;
}
.tb-ab-glow-orange {
  position: absolute;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,153,0,.16) 0%, rgba(255,153,0,.05) 45%, transparent 70%);
  border-radius: 50%;
  opacity: 1;
  z-index: 0;
  bottom: 20%; right: 10%;
  will-change: transform, opacity;
  transform: translateZ(0);
  animation: tb-ab-pulseGlow 5s infinite alternate;
}

/* ── Orbit rings ── */
.tb-ab-orbit {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(13,110,253,.18);
  z-index: 2;
  /* GPU layer for rotation */
  will-change: transform;
  transform: translateZ(0);
  animation: tb-ab-rotateOrbit 28s linear infinite;
}
.tb-ab-orbit-inner {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dotted rgba(255,107,157,.15);
  z-index: 2;
  will-change: transform;
  transform: translateZ(0);
  animation: tb-ab-rotateOrbit 18s linear infinite reverse;
}

/* ── Orbit icons
     KEY FIX: removed backdrop-filter:blur() — it's the single
     biggest perf killer on scroll. Replaced with a solid
     semi-transparent white + subtle border. Looks nearly identical,
     costs nothing.
   ── */
.tb-ab-icon {
  position: absolute;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Solid background instead of backdrop-filter:blur */
  background: rgba(255,255,255,.97);
  color: #03375f;
  /* Lighter shadow — heavy box-shadows repaint on every frame */
  box-shadow: 0 6px 20px rgba(0,0,0,.10), 0 0 0 1.5px rgba(255,255,255,.9);
  border: 1px solid rgba(200,220,255,.6);
  animation: tb-ab-counterRotate 28s linear infinite;
  /* Only transition cheap properties */
  transition: background .25s, color .25s, box-shadow .25s;
  cursor: pointer;
  /* Each icon on its own GPU layer */
  will-change: transform;
  transform: translateZ(0);
}

/* Tooltip */
.tb-ab-icon::before {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(.85);
  background: #03375f;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 30;
}
.tb-ab-icon:hover::before { opacity: 1; transform: translateX(-50%) scale(1); }

.tb-ab-icon i { transition: transform .25s; }

.tb-ab-icon:hover {
  /* Use transform scale — GPU, no repaint */
  transform: scale(1.32) translateY(-5px) translateZ(0) !important;
  box-shadow: 0 16px 36px rgba(13,110,253,.38);
  animation-play-state: paused;
  z-index: 20;
}
.tb-ab-icon:hover i { transform: rotate(8deg) scale(1.1); }

/* Brand hover colours */
.tb-ab-icon-instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:#fff; }
.tb-ab-icon-x:hover         { background: #0f1419; color:#fff; }
.tb-ab-icon-youtube:hover   { background: #c4302b; color:#fff; }
.tb-ab-icon-facebook:hover  { background: #1877f2; color:#fff; }
.tb-ab-icon-linkedin:hover  { background: #0077b5; color:#fff; }
.tb-ab-icon-google:hover    { background: #4285f4; color:#fff; }
.tb-ab-icon-analytics:hover { background: #ff9900; color:#fff; }
.tb-ab-icon-bullhorn:hover  { background: #6f42c1; color:#fff; }
.tb-ab-icon-tiktok:hover    { background: #000;    color:#fff; }
.tb-ab-icon-pinterest:hover { background: #e60023; color:#fff; }
.tb-ab-icon-snapchat:hover  { background: #fffc00; color:#0f1419; }
.tb-ab-icon-whatsapp:hover  { background: #25d366; color:#fff; }
.tb-ab-icon-email:hover     { background: #ea4335; color:#fff; }

/* ── Person image ── */
.tb-ab-person-img {
  position: relative;
  z-index: 5;
  /* drop-shadow on static image is fine — only painted once */
  filter: drop-shadow(0 28px 45px rgba(0,0,0,.28));
  animation: tb-ab-floatPerson 6s ease-in-out infinite;
  background: grey;
  border-radius: 50% 50% 45% 45%;
  object-fit: contain;
  will-change: transform;
  transform: translateZ(0);
  /* No transition on filter — too expensive */
}

/* ── Right content ── */
.tb-ab-content { padding-left: 20px; }

.tb-ab-badge-group { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:18px; }

.tb-ab-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px; border-radius: 50px;
  background: rgba(234,242,255,.95);
  color: #03375f; font-weight: 700; letter-spacing: .4px; font-size: .82rem;
  border: 1px solid rgba(13,110,253,.22);
  box-shadow: 0 4px 14px rgba(13,110,253,.07);
  /* No backdrop-filter here either */
  transition: background .25s, color .25s, transform .25s, box-shadow .25s;
  animation: tb-ab-badgePop .55s ease both;
}
.tb-ab-chip:nth-child(1){animation-delay:.05s}
.tb-ab-chip:nth-child(2){animation-delay:.15s}
.tb-ab-chip:nth-child(3){animation-delay:.25s}
.tb-ab-chip:hover { background:#0d6efd; color:#fff; border-color:#0d6efd; transform:translateY(-2px); box-shadow:0 8px 20px rgba(13,110,253,.32); }

.tb-ab-chip-accent { background: rgba(255,255,255,.9); border-color: rgba(3,55,95,.18); }
.tb-ab-chip-live   { background: rgba(255,50,50,.07);  border-color: rgba(255,50,50,.25); color:#c0392b; }
.tb-ab-chip-live:hover { background:#e74c3c; color:#fff; border-color:#e74c3c; }

.tb-ab-live-dot {
  width:8px; height:8px; background:#e74c3c; border-radius:50%; flex-shrink:0;
  animation: tb-ab-livePulse 1.5s infinite;
  will-change: box-shadow;
}

/* Heading */
.tb-ab-heading {
  font-size: 40px;
  font-weight: 600; line-height: 1.2; margin-bottom: 14px;
  color: #000; letter-spacing: -.5px;
}
.tb-ab-heading-highlight {
  background: linear-gradient(135deg, #0d6efd, #4d8eff, #03375f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.tb-ab-heading-highlight::after {
  content: "";
  position: absolute; bottom: 4px; left: 0;
  width: 100%; height: 7px;
  background: rgba(13,110,253,.11);
  border-radius: 4px; z-index: -1;
}

/* Description */
.tb-ab-description {
  font-size: clamp(14px, 1.2vw, 17px);
  color: #445566; line-height: 1.85; margin-bottom: 22px;
  padding-left: 14px;
  border-left: 4px solid rgba(13,110,253,.3);
}

/* Tags */
.tb-ab-tags { display:flex; flex-wrap:wrap; gap:9px; margin:22px 0 20px; }
.tb-ab-tag {
  background: #fff; border-radius: 30px; padding: 9px 16px;
  font-size: .875rem; font-weight: 600; color: #03375f;
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
  display: flex; align-items: center; gap: 7px;
  border: 1px solid rgba(13,110,253,.1);
  transition: transform .25s, box-shadow .25s, border-color .25s, color .25s;
  animation: tb-ab-fadeInUp .55s ease both;
}
.tb-ab-tag:nth-child(1){animation-delay:.08s}
.tb-ab-tag:nth-child(2){animation-delay:.16s}
.tb-ab-tag:nth-child(3){animation-delay:.24s}
.tb-ab-tag:nth-child(4){animation-delay:.32s}
.tb-ab-tag:nth-child(5){animation-delay:.40s}
.tb-ab-tag i { color:#0d6efd; }
.tb-ab-tag:hover { transform:translateY(-3px); box-shadow:0 12px 24px rgba(13,110,253,.13); border-color:#0d6efd; color:#0d6efd; }

/* Divider */
.tb-ab-divider {
  width:100%; height:1px; margin:18px 0;
  background: linear-gradient(90deg, transparent, rgba(13,110,253,.2), transparent);
}

/* CTAs */
.tb-ab-cta-group { display:flex; flex-wrap:wrap; gap:12px; margin-top:10px; align-items:center; }

.tb-ab-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #03375f, #0d6efd);
  color: #fff; font-weight: 700; padding: 13px 28px; border-radius: 50px;
  text-decoration: none; font-size: .92rem; letter-spacing: .3px;
  border: none; cursor: pointer;
  box-shadow: 0 12px 26px rgba(13,110,253,.28);
  transition: transform .3s, box-shadow .3s, background .3s;
  position: relative; overflow: hidden;
  will-change: transform;
}
/* Shimmer using transform (GPU) not background-position shift */
.tb-ab-cta::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-20deg);
  animation: tb-ab-shimmer 2.8s linear infinite;
  will-change: transform;
}
.tb-ab-cta i { transition: transform .25s; }
.tb-ab-cta:hover { background: linear-gradient(135deg,#0d6efd,#4d8eff); box-shadow: 0 18px 34px rgba(13,110,253,.45); transform: translateY(-3px); }
.tb-ab-cta:hover i { transform: translateX(5px); }

.tb-ab-cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px;
  border: 2px solid rgba(13,110,253,.32);
  color: #0d6efd; font-weight: 700; font-size: .92rem;
  text-decoration: none; background: transparent; cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s;
}
.tb-ab-cta-ghost:hover { background:rgba(13,110,253,.06); border-color:#0d6efd; transform:translateY(-2px); }

/* ── Stats ── */
.tb-ab-stats-row { display:flex; flex-wrap:wrap; gap:14px; margin-top:24px; }

.tb-ab-stat-card {
  background: rgba(255,255,255,.95);
  border-radius: 22px; padding: 22px 14px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.05), 0 0 0 1px rgba(13,110,253,.06);
  border: 1px solid rgba(255,255,255,.85);
  flex: 1 1 110px; min-width: 100px;
  position: relative; overflow: hidden;
  /* Use transform for hover — no layout/paint */
  transition: transform .35s cubic-bezier(.2,.9,.4,1.1), box-shadow .35s;
  will-change: transform;
}
.tb-ab-stat-card::before {
  content: "";
  position: absolute; top: 0; left: 20%; width: 60%; height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #0d6efd, #4d8eff);
  /* transition opacity only — cheap */
  opacity: 0; transition: opacity .35s;
}
.tb-ab-stat-card:nth-child(2)::before { background: linear-gradient(90deg,#ff6b9d,#ff9900); }
.tb-ab-stat-card:nth-child(3)::before { background: linear-gradient(90deg,#25d366,#0d6efd); }
.tb-ab-stat-card:nth-child(4)::before { background: linear-gradient(90deg,#6f42c1,#e60023); }
.tb-ab-stat-card:hover::before { opacity: 1; }
.tb-ab-stat-card:hover { transform: translateY(-10px); box-shadow: 0 28px 44px rgba(13,110,253,.18); }

.tb-ab-stat-icon  { font-size:1rem; color:#03375f; opacity:.7; display:block; margin-bottom:6px; }
.tb-ab-stat-number {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700; margin-bottom: 5px; line-height: 1;
  background: #03375f;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}
.tb-ab-stat-label { color:#4a5568; font-weight:600; font-size:.8rem; text-transform:uppercase; letter-spacing:.5px; }

/* ── Scroll reveal ── */
.tb-ab-reveal {
  opacity: 0;
  transform: translateY(24px);
  /* transition on transform + opacity only — compositor thread, zero repaint */
  transition: opacity .65s ease, transform .65s ease;
  will-change: opacity, transform;
}
.tb-ab-reveal.tb-ab-visible { opacity:1; transform:translateY(0); }
.tb-ab-reveal-delay-1 { transition-delay:.10s; }
.tb-ab-reveal-delay-2 { transition-delay:.20s; }
.tb-ab-reveal-delay-3 { transition-delay:.32s; }
.tb-ab-reveal-delay-4 { transition-delay:.44s; }

/* ── Keyframes — only transform + opacity (compositor-only) ── */
@keyframes tb-ab-rotateOrbit {
  to { transform: rotate(360deg) translateZ(0); }
}
@keyframes tb-ab-counterRotate {
  to { transform: rotate(-360deg) translateZ(0); }
}
@keyframes tb-ab-floatPerson {
  0%,100% { transform: translateY(0) translateZ(0); }
  50%      { transform: translateY(-18px) translateZ(0); }
}
/* pulseGlow: only opacity+scale — no filter change mid-animation */
@keyframes tb-ab-pulseGlow {
  0%   { opacity:.15; transform: scale(.88) translateZ(0); }
  100% { opacity:.45; transform: scale(1.15) translateZ(0); }
}
@keyframes tb-ab-fadeInUp {
  from { opacity:0; transform:translateY(12px); }
  to   { opacity:1; transform:translateY(0);    }
}
@keyframes tb-ab-badgePop {
  0%   { transform:scale(.82); opacity:0; }
  60%  { transform:scale(1.05); }
  100% { transform:scale(1);   opacity:1; }
}
/* Shimmer using translateX (GPU) */
@keyframes tb-ab-shimmer {
  0%   { transform: translateX(-100%) skewX(-20deg); }
  100% { transform: translateX(400%)  skewX(-20deg); }
}
@keyframes tb-ab-livePulse {
  0%   { box-shadow: 0 0 0 0   rgba(231,76,60,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(231,76,60,0);   }
  100% { box-shadow: 0 0 0 0   rgba(231,76,60,0);   }
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .tb-ab-row        { flex-wrap: wrap; }
  .tb-ab-col-left,
  .tb-ab-col-right  { width: 100%; padding: 0; }
  .tb-ab-col-left   { margin-bottom: 60px; }
  .tb-ab-content    { padding-left: 0; text-align: center; }
  .tb-ab-description { border-left: none; padding-left: 0; text-align: left; }
  .tb-ab-badge-group,
  .tb-ab-tags,
  .tb-ab-stats-row,
  .tb-ab-cta-group  { justify-content: center; }
}
@media (max-width: 768px) {
  body             { padding: 1.5rem 1rem; }
  .tb-ab-section   { padding: 55px 0; }
  .tb-ab-container { padding: 0 16px; }
}

/* Pause ALL animations while user scrolls — JS adds/removes this class */
.tb-ab-scroll-pause .tb-ab-orbit,
.tb-ab-scroll-pause .tb-ab-orbit-inner,
.tb-ab-scroll-pause .tb-ab-icon,
.tb-ab-scroll-pause .tb-ab-person-img,
.tb-ab-scroll-pause .tb-ab-glow,
.tb-ab-scroll-pause .tb-ab-glow-pink,
.tb-ab-scroll-pause .tb-ab-glow-orange {
  animation-play-state: paused;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .tb-ab-orbit, .tb-ab-orbit-inner, .tb-ab-icon,
  .tb-ab-glow, .tb-ab-glow-pink, .tb-ab-glow-orange,
  .tb-ab-person-img, .tb-ab-chip, .tb-ab-tag, .tb-ab-reveal {
    animation: none !important; opacity: 1; transform: none; transition: none;
  }
}


/* Outer rotating ring */
.tb-ab-orbit {
    width: 450px;
    height: 450px;
    animation: tb-ab-rotateOrbit 25s linear infinite;
}

/* Inner rotating ring */
.tb-ab-orbit-inner {
    width: 320px;
    height: 320px;
    animation: tb-ab-rotateOrbit 18s linear infinite reverse;
}

/* Social Icons */
.tb-ab-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    position: absolute;
}

/* Keep icons upright while orbit rotates */
.tb-ab-icon i {
    animation: tb-ab-counterRotate 25s linear infinite;
}

/* Orbit Rotation */
@keyframes tb-ab-rotateOrbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Counter Rotation */
@keyframes tb-ab-counterRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}


@media (max-width: 576px) {
   .page-title {
 
  padding: 109px 0 30px;
}
}




/* ========== FOOTER WRAPPER ========== */
.tb-footer {
    /* Modern dark gradient for a premium look */
    background: linear-gradient(to right, #000000, #232526);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    padding-top: 20px;
    width: 100%;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

/* Subtle glowing top border/effect */
.tb-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #60a5fa, #a78bfa, transparent);
    opacity: 0.3;
}

.tb-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ========== LOGO ========== */
.tb-footer-logo {
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.tb-footer-logo:hover {
    transform: scale(1.02);
}

.tb-footer-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== NAVIGATION ========== */
.tb-footer-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 500;
    flex-wrap: wrap;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.05);
    padding: 12px 25px; */
    border-radius: 50px;
    /* backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05); */
}

.tb-footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;

    font-size: 17px !important;
}

.tb-footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.tb-footer-nav a:hover {
    color: #ffffff;
}

.tb-footer-nav a:hover::after {
    width: 100%;
}

.tb-separator {
    color: #fff;
}

/* ========== CONTACT DETAILS ========== */
.tb-footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    margin-bottom: 25px;
}

.tb-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.tb-contact-row i {
    font-size: 16px;
    color: #fff; /* Soft blue accent for icons */
    width: 20px;
    text-align: center;
}

.tb-contact-row span,
.tb-contact-row a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.tb-contact-row a:hover {
    color: #ffffff;
}

.tb-phone-sep {
    color: #475569;
    font-size: 14px;
}

/* ========== SOCIAL MEDIA ICONS ========== */
.tb-footer-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.tb-footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy effect */
}

.tb-footer-socials a:hover {
    background: #ffffff;
    color: #0b121f;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

/* ========== BOTTOM BAR ========== */
.tb-footer-bottom {
    border-top: 1px dotted rgba(255, 255, 255, 0.6);
    padding: 20px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.tb-footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.3px;
}

.tb-footer-bottom a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.tb-footer-bottom a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .tb-footer-nav {
        border-radius: 20px;
        padding: 12px 20px;
        gap: 10px;
        font-size: 14px;
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
    
    .tb-contact-row {
        flex-direction: column;
        gap: 6px;
    }

    .tb-contact-row i {
        margin-bottom: 4px;
    }

    .tb-phone-sep {
        display: none; /* Hide separator on mobile */
    }

    .tb-footer-bottom p {
        font-size: 12px;
        padding: 0 10px;
        line-height: 1.6;
    }
    
    .tb-footer-socials {
        gap: 12px;
    }
}

.professional-section {
  background: transparent;
  padding: 1rem 0;
  position: relative;
}

/* Static background decorations - NO ANIMATION */
.bg-accent-left,
.bg-accent-right {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.bg-accent-left {
  left: 0;
  top: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle at 30% 30%, rgba(3, 55, 95, 0.04) 0%, transparent 70%);
}

.bg-accent-right {
  right: 0;
  bottom: 10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 70% 70%, rgba(3, 55, 95, 0.04) 0%, transparent 70%);
}

.content-card {
  background: var(--white);
  border-radius: 2.5rem;
  box-shadow: 0 20px 40px rgba(3, 55, 95, 0.08);
  padding: 3rem 2.8rem;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(3, 55, 95, 0.06);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}

.content-card:hover {
  box-shadow: 0 25px 50px rgba(3, 55, 95, 0.12);
}

/* Left content styles */
.left-panel {
  padding-right: 1.5rem;
}

.section-badge {
  display: inline-block;
  background: rgba(3, 55, 95, 0.08);
  color: var(--deep-blue);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  border: 1px solid rgba(3, 55, 95, 0.2);
}

.main-headline {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  letter-spacing: -0.8px;
}

.headline-highlight {
  color: var(--deep-blue);
  position: relative;
  display: inline-block;
}

.headline-highlight::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(3, 55, 95, 0.15);
  z-index: -1;
  border-radius: 4px;
}

.description-text {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 95%;
  font-weight: 400;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid rgba(3, 55, 95, 0.2);
}

/* Chips styling */
.chip-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.service-chip {
  background: white;
  border: 2px solid #e2e8f0;
  color: var(--deep-blue);
  padding: 0.7rem 1.5rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  background: #ffffff;
  letter-spacing: 0.3px;
  cursor: default;
}

.service-chip i {
  font-size: 1.3rem;
  color: var(--deep-blue);
  transition: transform 0.3s ease;
}

.service-chip:hover {
  border-color: var(--deep-blue);
  box-shadow: 0 12px 24px rgba(3, 55, 95, 0.12);
  transform: translateY(-2px);
}

.service-chip:hover i {
  transform: scale(1.1);
}

/* Counters */
.counters-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 0.5rem;
  border-top: 2px solid #edf2f7;
  padding-top: 2rem;
  position: relative;
}

.counters-grid::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--deep-blue);
  border-radius: 2px;
}

.counter-box {
  display: flex;
  flex-direction: column;
  position: relative;
}

.counter-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: #000;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  letter-spacing: -0.5px;
}

.counter-suffix {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--deep-blue);
}

.counter-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 0.3rem;
}

/* Right side image */
.right-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 1.5rem;
}

.image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.8rem;
}

/* Glow effect - NO ANIMATION, static only */
.image-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3, 55, 95, 0.1) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.manager-portrait {
  width: 330px;
  height: 330px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 20px 40px rgba(3, 55, 95, 0.2);
  background: #f1f5f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 3;
  position: relative;
}

.manager-portrait:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(3, 55, 95, 0.3);
}

/* Floating badges - ONLY 3 have subtle animation */
.floating-badge {
  position: absolute;
  background: white;
  color: #03375f;
  border-radius: 50px;
  padding: 0.55rem 1.4rem;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  background: #ffffff;
  border: 2px solid rgba(3, 55, 95, 0.2);
  z-index: 5;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.floating-badge i {
  font-size: 1.1rem;
  color: #03375f;
}

.badge-exp {
  top: -5%;
  right: -8%;
}

.badge-strategy {
top: 16%;
  left: -36%;
}

.badge-analytics {
top: -12%;
  left: -9%;
}

.badge-seo {
 top: 27%;
  right: -40%;
}

.badge-growth {
 bottom: 20%;
  right: -27%;
}

.badge-digital {
 bottom: 12%;
  left: -46%;
}

.badge-leadership {
bottom: -12%;
  right: 14%;
}
.badge-exp {
  animation: floatSubtle 4s ease-in-out infinite;
}

.badge-strategy {
  animation: floatSubtle 5s ease-in-out infinite;
}

.badge-analytics {
  animation: floatSubtle 6s ease-in-out infinite;
}

.badge-seo {
  animation: floatSubtle 4.5s ease-in-out infinite;
}

.badge-growth {
  animation: floatSubtle 5.5s ease-in-out infinite;
}

.badge-digital {
  animation: floatSubtle 4.8s ease-in-out infinite;
}

.badge-leadership {
  animation: floatSubtle 6.2s ease-in-out infinite;
}

/* Hover effect on all badges */
.floating-badge:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 15px 30px rgba(3, 55, 95, 0.2);
  border-color: #03375f;
  animation-play-state: paused;
}

/* Manager info */
.manager-details {
  text-align: center;
  margin-top: 0.8rem;
}

.manager-name {
  font-size: 2rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 0.3rem;
  letter-spacing: -0.5px;
}

.manager-designation {
  font-size: 1rem;
  font-weight: 700;
  color: #03375f;
  background: rgba(3, 55, 95, 0.08);
  display: inline-block;
  padding: 0.4rem 1.8rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(3, 55, 95, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
  .manager-portrait { width: 280px; height: 280px; }
  .image-glow { width: 290px; height: 290px; }
}

@media (max-width: 992px) {
  .content-card { padding: 2.5rem 2rem; border-radius: 2rem; }
  .left-panel { padding-right: 0; margin-bottom: 2.5rem; text-align: center; }
  .description-text { max-width: 100%; margin-left: auto; margin-right: auto; border-left: none; padding-left: 0; text-align: center; }
  .chip-wrapper { justify-content: center; }
  .counters-grid { justify-content: center; }
  .counters-grid::before { left: 50%; transform: translateX(-50%); }
  .main-headline { font-size: 2.4rem; }
  .right-panel { padding-left: 0; }
  .manager-portrait { width: 260px; height: 260px; }
  .image-glow { width: 270px; height: 270px; }
}

@media (max-width: 576px) {
  .content-card { padding: 2rem 1.2rem; border-radius: 1.5rem; }
  .main-headline { font-size: 24px;margin-bottom: 8px; letter-spacing: 0px; }
  .counter-value { font-size: 1.4rem; }
  .manager-portrait { width: 220px; height: 220px; }
  .image-glow { width: 230px; height: 230px; }
  .floating-badge { padding: 0.4rem 1rem; font-size: 0.75rem; gap: 0.4rem; }
  .counter-suffix {
  font-size: 1.4rem;
  }
  .counter-label {
  font-size: 12px;
  }
}

@media (max-width: 400px) {
  .manager-portrait { width: 180px; height: 180px; }
  .image-glow { width: 190px; height: 190px; }
  .floating-badge { padding: 0.3rem 0.8rem; font-size: 0.7rem; }
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .badge-exp,
  .badge-digital,
  .badge-seo {
    animation: none !important;
  }
}



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 576px) {

.section-badge {
 
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 0.3rem 1.4rem;

  margin-bottom: 0.5rem;

}
.left-panel {
   
    margin-top: 10px;
    margin-bottom: 1.5rem;
  }
  .description-text {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1rem;
  }
  .service-chip {
  background: white;
  border: 2px solid #e2e8f0;
  color: var(--deep-blue);
  padding: 0.5rem 0.5rem 0.5rem 0rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  }
  .chip-wrapper {

  margin-bottom: 1rem;
  }
  .counters-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid #edf2f7;
  padding-top: 1rem;
  padding-bottom: 1rem;
  }
  .badge-leadership {
    bottom: -16%;
    right: -7%;
  }
  .badge-digital {
bottom: -10%;
    left: -23%;
  }
   .floating-badge {
    padding: 0.3rem 0.3rem;
    font-size: 0.5rem;
  }
  .manager-name {
  font-size: 1.3rem;
  }
  .badge-exp {
  top: -20%;
  right: -20%;
  }
  .badge-analytics {
  top: -20%;
  left: 6%;
}
.badge-strategy {
  top: 16%;
  left: -26%;
}
.badge-seo {
  top: 20%;
  right: -33%;
}
.badge-growth {
  bottom: 20%;
  right: -26%;
}
.manager-designation {
  margin-top: 10px;
}
  

}

/* ===============================
   DARK MODE (Default Styles)
================================ */

/* Section */
/*.professional-section {*/
/*  background: #0d1117;*/
/*}*/

/* Main card */
.content-card {
  background: #161616;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.content-card:hover {
  box-shadow: 0 25px 50px rgba(0,0,0,0.45);
}

/* Badge */
.section-badge {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Heading */
.main-headline {
  color: #ffffff;
}

.headline-highlight {
  color: #fff;
}

.headline-highlight::after {
  background: rgba(96,165,250,0.15);
}

/* Description */
.description-text {
  color: #cbd5e1;
  border-left: 3px solid  #000;;
}

/* Service Chips */
.service-chip {
  background: #fff;
  border: 2px solid rgba(255,255,255,0.06);
  color: #1d1f21;
}

.service-chip i {
  color: #1d1f21;
}

.service-chip:hover {
  border-color: #60a5fa;
  box-shadow: 0 12px 24px rgba(96,165,250,0.12);
}

/* Counters */
.counters-grid {
  border-top: 2px solid rgba(255,255,255,0.08);
}

.counter-value {
  color: #ffffff;
}

.counter-suffix {
  color: #fff;
}

.counter-label {
  color: #94a3b8;
}

/* Image */
.manager-portrait {
  border: 5px solid #1d1f21;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

/* Floating badges */
.floating-badge {
  background: #fff;
  color: #1d1f21;
  border: 2px solid rgba(255,255,255,0.08);
}

.floating-badge i {
  color: #1d1f21;
}

.floating-badge:hover {
  border-color: #1d1f21;
}

/* Manager details */
.manager-name {
  color: #ffffff;
}

.manager-designation {
  background: rgba(96,165,250,0.08);
  color: #fff;
  border: 1px solid rgba(96,165,250,0.15);
}

/* Background glow */
.image-glow {
  background: radial-gradient(circle, rgba(96,165,250,0.12) 0%, transparent 70%);
}
body.light .professional-section {
  background: transparent;
}

body.light .content-card {
  background: #ffffff;
}

body.light .main-headline {
  color: #000;
}

body.light .description-text {
  color: #4a5568;
}

body.light .service-chip {
  background: #ffffff;
  color: #000;
  border : 1px solid #000;
}

body.light .counter-value {
  color: #000;
}

body.light .manager-name {
  color: #000;
}

body.light .floating-badge {
  background: #ffffff;
  color: #000;
  border : 1px solid #000;
}

body.light .counter-suffix {
  color: #000;

}
body.light .headline-highlight {
  color: #000;
}


body.light .manager-designation {
  background: rgba(96,165,250,0.08);
  color: #000;
  border: 1px solid rgba(96,165,250,0.15);
}



body.light .section-badge {
   background: rgba(96,165,250,0.08);
  color: #000;
  border: 1px solid rgba(96,165,250,0.15);
}
@media only screen and (min-width: 1200px) and (max-width: 1319px) {
.section-badge{
  font-size: 12px;
}
.description-text {
  font-size: 15px;
}
.service-chip {

  padding: 0.5rem 1.5rem 0.5rem 1rem;
}
.counters-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.manager-name {
  font-size: 1.8rem;
}

}