/* ============================================================
   ENHANCEMENTS.CSS — Mpanwi Tech Website
   Professional animations, gallery, stats, testimonials & more
   ============================================================ */

/* ────────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.reveal-left  { transform: translateX(-50px); opacity: 0; }
.reveal.reveal-right { transform: translateX(50px);  opacity: 0; }
.reveal.reveal-scale { transform: scale(0.85);        opacity: 0; }
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ────────────────────────────────────────────
   HERO SECTION ENHANCEMENTS
──────────────────────────────────────────── */
.hero-animated-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(6, 106, 183, 0.82) 0%,
    rgba(37, 170, 225, 0.72) 50%,
    rgba(0, 20, 60, 0.88) 100%);
  z-index: 0;
}
header.home {
  position: relative;
  overflow: hidden;
}
header.home .overlay-fluid-block {
  position: relative;
  z-index: 1;
  background: transparent;
}

/* Floating particles */
.particles-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  animation: floatUp linear infinite;
}
.particle:nth-child(1)  { width:8px;  height:8px;  left:10%; animation-duration:9s;  animation-delay:0s; }
.particle:nth-child(2)  { width:14px; height:14px; left:20%; animation-duration:12s; animation-delay:2s; }
.particle:nth-child(3)  { width:6px;  height:6px;  left:30%; animation-duration:8s;  animation-delay:4s; }
.particle:nth-child(4)  { width:10px; height:10px; left:42%; animation-duration:11s; animation-delay:1s; }
.particle:nth-child(5)  { width:18px; height:18px; left:55%; animation-duration:14s; animation-delay:3s; }
.particle:nth-child(6)  { width:8px;  height:8px;  left:68%; animation-duration:9s;  animation-delay:5s; }
.particle:nth-child(7)  { width:12px; height:12px; left:76%; animation-duration:13s; animation-delay:0s; }
.particle:nth-child(8)  { width:6px;  height:6px;  left:85%; animation-duration:7s;  animation-delay:2s; }
.particle:nth-child(9)  { width:20px; height:20px; left:93%; animation-duration:16s; animation-delay:6s; }
.particle:nth-child(10) { width:9px;  height:9px;  left:5%;  animation-duration:10s; animation-delay:1s; }

@keyframes floatUp {
  0%   { bottom: -20px; opacity: 0;   transform: translateX(0) rotate(0deg); }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { bottom: 110%;  opacity: 0;   transform: translateX(30px) rotate(360deg); }
}

/* Hero content animation */
.home-content {
  animation: heroFadeIn 1.2s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Gradient text badge */
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

/* Hero CTA buttons */
.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn-hero-primary {
  background: linear-gradient(90deg, #066AB7, #25AAE1);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(6,106,183,0.5);
  color: #fff;
}
.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-indicator span {
  display: block;
  width: 22px;
  height: 35px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { top: 5px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ────────────────────────────────────────────
   STATS / COUNTER SECTION
──────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, #066AB7 0%, #25AAE1 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.stats-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.stat-card {
  text-align: center;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
}
.stat-card .stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: #fff;
  transition: transform 0.3s ease;
  line-height: 70px;
}
.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}
.stat-card .stat-number {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .stat-number .plus {
  font-size: 2rem;
}
.stat-card .stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  margin: 20px 0;
}
@media (min-width: 768px) {
  .stat-card + .stat-card {
    border-left: 1px solid rgba(255,255,255,0.2);
  }
}

/* ────────────────────────────────────────────
   ABOUT / INTRO STRIP
──────────────────────────────────────────── */
.about-strip {
  padding: 80px 0;
  background: #fff;
}
.about-strip .about-icon-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.about-strip .about-icon-box:hover {
  background: #f4faff;
  box-shadow: 0 8px 30px rgba(6,106,183,0.1);
}
.about-strip .about-icon-box .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #066AB7, #25AAE1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #fff;
  line-height: 80px;
  box-shadow: 0 8px 25px rgba(6,106,183,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-strip .about-icon-box:hover .icon-circle {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(6,106,183,0.4);
}
.about-strip .about-icon-box h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.4;
}
.about-strip .about-icon-box p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ────────────────────────────────────────────
   SECTION HEAD TITLE (enhanced)
──────────────────────────────────────────── */
.head_title {
  margin-bottom: 60px;
}
.head_title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}
.head_title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #066AB7, #25AAE1);
  border-radius: 2px;
}
.head_title p {
  color: #777;
  font-size: 1.1rem;
  margin-top: 14px;
}

/* ────────────────────────────────────────────
   GALLERY / PORTFOLIO SECTION
──────────────────────────────────────────── */
.gallery-section {
  background: #f5f8fc;
}

/* Filter Buttons */
.gallery-filter {
  margin-bottom: 40px;
}
.gallery-filter .filter-btn {
  display: inline-block;
  padding: 9px 24px;
  margin: 5px;
  border-radius: 30px;
  border: 2px solid #066AB7;
  color: #066AB7;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  text-transform: uppercase;
}
.gallery-filter .filter-btn:hover,
.gallery-filter .filter-btn.active {
  background: linear-gradient(135deg, #066AB7, #25AAE1);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(6,106,183,0.35);
}

/* Portfolio Grid */
.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.portfolio-col {
  width: 33.333%;
  padding: 0 12px;
  margin-bottom: 24px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.portfolio-col.hidden {
  display: none;
}
@media (max-width: 991px) { .portfolio-col { width: 50%;   } }
@media (max-width: 600px)  { .portfolio-col { width: 100%;  } }

/* Portfolio Card */
.portfolio-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  background: #fff;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.25,.46,.45,.94), box-shadow 0.35s ease;
}
.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Card Thumbnail (browser mockup) */
.portfolio-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.portfolio-thumb .browser-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 30px;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  z-index: 2;
}
.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-red   { background: #ff5f57; }
.dot-yellow{ background: #ffbd2e; }
.dot-green { background: #28c940; }
.browser-address {
  flex: 1;
  height: 18px;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  margin-left: 8px;
  font-size: 9px;
  color: rgba(255,255,255,0.75);
  line-height: 18px;
  padding: 0 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Gradient backgrounds for each portfolio item */
.portfolio-thumb .bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.portfolio-thumb .content-lines {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.portfolio-thumb .content-lines .line {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.25);
}
.portfolio-thumb .content-lines .line.short { width: 60%; }

/* Hover overlay */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,106,183,0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 10;
  padding: 20px;
  text-align: center;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .overlay-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.portfolio-overlay .overlay-cat {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.portfolio-overlay .btn-view {
  padding: 8px 24px;
  border-radius: 30px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
}
.portfolio-overlay .btn-view:hover {
  background: #fff;
  color: #066AB7;
}

/* Card footer */
.portfolio-card-body {
  padding: 18px 20px 20px;
}
.portfolio-card-body .card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
  line-height: 1.3;
}
.portfolio-card-body .card-category {
  font-size: 0.82rem;
  color: #066AB7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0;
}
.portfolio-card-body .card-tags {
  margin-top: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.portfolio-card-body .tag {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 20px;
  background: #eef5ff;
  color: #066AB7;
  font-weight: 500;
}

/* ── Gradient color sets for portfolio thumbnails ── */
.portf-gradient-1  { background: linear-gradient(135deg, #1e3c72, #2a69ac, #25AAE1); }
.portf-gradient-2  { background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); }
.portf-gradient-3  { background: linear-gradient(135deg, #c0392b, #e74c3c, #f39c12); }
.portf-gradient-4  { background: linear-gradient(135deg, #11998e, #38ef7d); }
.portf-gradient-5  { background: linear-gradient(135deg, #373b44, #4286f4); }
.portf-gradient-6  { background: linear-gradient(135deg, #8e2de2, #4a00e0, #0575e6); }
.portf-gradient-7  { background: linear-gradient(135deg, #134e5e, #71b280); }
.portf-gradient-8  { background: linear-gradient(135deg, #0052d4, #4364f7, #6fb1fc); }
.portf-gradient-9  { background: linear-gradient(135deg, #d76d77, #ffaf7b, #f8704a); }

/* Decorative icons on thumbnail */
.portfolio-thumb .thumb-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 45px;
  color: rgba(255,255,255,0.18);
  z-index: 1;
  margin-top: 15px;
}

/* Logo-based thumbnails (real client sites) */
.logo-thumb {
  background: #1a2a3a !important;
}
.logo-preview-wrap {
  position: absolute;
  inset: 36px 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 16px;
}
.logo-preview {
  max-width: 70%;
  max-height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
}

/* Lightbox preview logo overlay */
.lightbox-preview .lb-logo-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(2px);
}
.lightbox-preview .lb-logo {
  max-width: 45%;
  max-height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.35));
}

/* ────────────────────────────────────────────
   LIGHTBOX
──────────────────────────────────────────── */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 20px;
}
.lightbox-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-inner {
  background: #fff;
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  overflow: hidden;
  transform: scale(0.85);
  transition: transform 0.35s cubic-bezier(.25,.46,.45,.94);
  position: relative;
}
.lightbox-backdrop.open .lightbox-inner {
  transform: scale(1);
}
.lightbox-preview {
  height: 280px;
  position: relative;
  overflow: hidden;
}
.lightbox-body {
  padding: 28px 32px 32px;
}
.lightbox-body h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}
.lightbox-body .lb-meta {
  font-size: 0.85rem;
  color: #066AB7;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.lightbox-body p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
  z-index: 10;
  line-height: 36px;
  text-align: center;
}
.lightbox-close:hover { background: #c0392b; }
.lightbox-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.lightbox-tech-stack .tech-tag {
  padding: 5px 14px;
  border-radius: 20px;
  background: #eef5ff;
  color: #066AB7;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Visit Website button inside lightbox */
.lightbox-visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 11px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #066AB7, #25AAE1);
  color: #fff !important;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(6,106,183,0.28);
  letter-spacing: 0.3px;
}
.lightbox-visit-btn:hover {
  background: linear-gradient(135deg, #25AAE1, #066AB7);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(6,106,183,0.4);
  color: #fff !important;
  text-decoration: none !important;
}
.lightbox-visit-btn i { font-size: 0.8rem; }

/* ────────────────────────────────────────────
   TESTIMONIALS SECTION
──────────────────────────────────────────── */
.testimonials-section {
  background: #fff;
  padding: 100px 0;
  overflow: hidden;
}
.testimonials-section .row {
  display: flex;
  flex-wrap: wrap;
}
.testimonials-section .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
  margin-bottom: 4px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 24px;
  margin: 10px 8px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.06);
  border: 1px solid #eef0f8;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  height: calc(100% - 20px);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(6,106,183,0.12);
}
.testimonial-card .quote-icon {
  font-size: 50px;
  line-height: 1;
  color: #e8f3ff;
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: Georgia, serif;
  font-weight: 900;
}
.testimonial-card .stars {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card .review-text {
  font-size: 0.98rem;
  color: #555;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-card .reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card .reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-card .reviewer-info .reviewer-name {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 2px;
  line-height: 1.2;
}
.testimonial-card .reviewer-info .reviewer-role {
  font-size: 0.82rem;
  color: #999;
  margin: 0;
}
.avatar-blue   { background: linear-gradient(135deg, #066AB7, #25AAE1); }
.avatar-green  { background: linear-gradient(135deg, #11998e, #38ef7d); }
.avatar-purple { background: linear-gradient(135deg, #8e2de2, #4a00e0); }
.avatar-orange { background: linear-gradient(135deg, #f39c12, #c0392b); }
.avatar-teal   { background: linear-gradient(135deg, #134e5e, #71b280); }

/* ────────────────────────────────────────────
   CTA BANNER SECTION
──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0f2027, #203a43, #066AB7);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(37,170,225,0.08);
  top: -150px;
  left: -100px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: -120px;
  right: -80px;
}
.cta-banner .cta-inner {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta {
  background: #fff;
  color: #066AB7;
  padding: 15px 42px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 0 8px;
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255,255,255,0.25);
  color: #066AB7;
}
.btn-cta-outlined {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 14px 42px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 8px;
}
.btn-cta-outlined:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

/* ────────────────────────────────────────────
   TECH STACK LOGOS STRIP
──────────────────────────────────────────── */
.tech-strip {
  padding: 50px 0;
  background: #fff;
  border-top: 1px solid #eef0f8;
  border-bottom: 1px solid #eef0f8;
}
.tech-strip .head_title h2 { font-size: 1.4rem; }
.tech-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 30px;
}
.tech-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.tech-logo-item:hover {
  background: #f0f7ff;
  transform: translateY(-4px);
}
.tech-logo-item .tech-icon {
  font-size: 28px;
  line-height: 1;
}
.tech-logo-item span {
  font-size: 11px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ────────────────────────────────────────────
   SERVICES SECTION — CARD GRID
──────────────────────────────────────────── */
.srv-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -14px;
}

.srv-card {
  width: calc(33.333% - 28px);
  margin: 0 14px 28px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8eef8;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(.25,.46,.45,.94), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}
.srv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #066AB7, #25AAE1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.srv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(6,106,183,0.13);
  border-color: transparent;
}
.srv-card:hover::before {
  transform: scaleX(1);
}

.srv-card-icon {
  padding: 32px 32px 0;
}
.srv-card-icon i {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(6,106,183,0.1), rgba(37,170,225,0.15));
  color: #066AB7;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.srv-card:hover .srv-card-icon i {
  background: linear-gradient(135deg, #066AB7, #25AAE1);
  color: #fff;
  transform: rotate(-5deg) scale(1.1);
}

.srv-card-body {
  padding: 20px 32px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.srv-card-body h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.35;
}
.srv-card-body > p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
}

.srv-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.srv-list li {
  font-size: 0.88rem;
  color: #555;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid #f0f3fa;
}
.srv-list li:last-child { border-bottom: none; }
.srv-list li i {
  color: #25AAE1;
  font-size: 11px;
  flex-shrink: 0;
}

.srv-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #066AB7;
  text-decoration: none;
  padding: 10px 22px;
  border: 2px solid #066AB7;
  border-radius: 30px;
  width: fit-content;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.srv-cta i {
  font-size: 10px;
  transition: transform 0.3s ease;
}
.srv-cta:hover {
  background: linear-gradient(90deg, #066AB7, #25AAE1);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(6,106,183,0.3);
}
.srv-cta:hover i { transform: translateX(4px); }

@media (max-width: 991px) {
  .srv-card { width: calc(50% - 28px); }
}
@media (max-width: 600px) {
  .srv-card { width: calc(100% - 28px); }
}

/* Remove old service styles no longer needed */
.btn-read-more {
  color: #066AB7;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}
.btn-read-more::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #066AB7;
  transition: width 0.3s ease;
}
.btn-read-more:hover::after { width: 100%; }

/* ────────────────────────────────────────────
   CONTACT SECTION ENHANCEMENTS
──────────────────────────────────────────── */
.contact .form-control:focus {
  border-color: #066AB7;
  box-shadow: 0 0 0 3px rgba(6,106,183,0.12);
}
.contact .btn-default {
  background: linear-gradient(90deg, #066AB7, #25AAE1);
  border: none;
  border-radius: 30px;
  padding: 13px 40px;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: auto;
  max-width: none;
}
.contact .btn-default:hover {
  background: linear-gradient(90deg, #25AAE1, #066AB7);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6,106,183,0.35);
  color: #fff;
}

/* ────────────────────────────────────────────
   FOOTER — FULL REFACTOR
──────────────────────────────────────────── */
#footer-menu.footer-menu {
  background: #0b1829;
  padding: 80px 0 50px;
}

/* 4-column grid */
.footer-top-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
}
.ft-col {
  flex: 1 1 200px;
  min-width: 180px;
}
.ft-col.ft-brand {
  flex: 1.6 1 260px;
}

/* Logo */
.ft-logo {
  width: 200px;
  height: auto;
  margin-bottom: 18px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Tagline */
.ft-tagline {
  color: #8a9ab5;
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Social icons */
.ft-social {
  display: flex;
  gap: 10px;
}
.ft-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a9ab5;
  font-size: 14px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}
.ft-social a:hover {
  background: linear-gradient(135deg, #066AB7, #25AAE1);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
}

/* Column headings */
.ft-heading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 12px;
  position: relative;
}
.ft-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #066AB7, #25AAE1);
  border-radius: 2px;
}

/* Nav links */
.ft-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ft-links li {
  padding: 5px 0;
}
.ft-links li a {
  color: #8a9ab5;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease, gap 0.3s ease;
}
.ft-links li a i {
  font-size: 11px;
  color: #066AB7;
  transition: transform 0.3s ease;
}
.ft-links li a:hover {
  color: #fff;
  gap: 12px;
}
.ft-links li a:hover i {
  transform: translateX(3px);
}

/* Contact info list */
.ft-contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
}
.ft-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ft-contact-info li:last-child { border-bottom: none; }
.ft-contact-info li i {
  color: #25AAE1;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}
.ft-contact-info li span,
.ft-contact-info li a {
  color: #8a9ab5;
  font-size: 0.88rem;
  line-height: 1.55;
  text-decoration: none;
  transition: color 0.3s ease;
}
.ft-contact-info li a:hover { color: #25AAE1; }

/* Newsletter */
.ft-newsletter-text {
  color: #8a9ab5;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.ft-newsletter-form { margin: 0; }
.ft-newsletter-input {
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.3s ease;
}
.ft-newsletter-input:focus-within {
  border-color: #25AAE1;
}
.ft-newsletter-input input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 11px 18px;
  color: #fff;
  font-size: 0.88rem;
}
.ft-newsletter-input input[type="email"]::placeholder { color: #556; }
.ft-newsletter-input button {
  background: linear-gradient(135deg, #066AB7, #25AAE1);
  border: none;
  color: #fff;
  padding: 0 20px;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
.ft-newsletter-input button:hover { opacity: 0.85; }

/* ── Copyright bar ── */
.footer {
  background: #060f1c;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.ft-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.ft-bar-copy {
  color: #556;
  font-size: 0.84rem;
  margin: 0;
}
.ft-bar-copy strong { color: #25AAE1; font-weight: 600; }
.ft-bar-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 0.84rem;
  color: #445;
}
.ft-bar-legal a {
  color: #556;
  text-decoration: none;
  transition: color 0.3s ease;
}
.ft-bar-legal a:hover { color: #25AAE1; }
.ft-bar-legal span { color: #334; }

/* ── Responsive ── */
@media (max-width: 767px) {
  #footer-menu.footer-menu { padding: 50px 0 36px; }
  .ft-col { flex: 1 1 45%; }
  .ft-col.ft-brand { flex: 1 1 100%; }
  .ft-bar { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .ft-col { flex: 1 1 100%; }
}

/* ────────────────────────────────────────────
   NAVBAR STICKY ENHANCEMENT
──────────────────────────────────────────── */
.navbar-default.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding-top: 10px;
  transition: padding 0.35s ease, box-shadow 0.35s ease;
}

/* ────────────────────────────────────────────
   SCROLL UP BUTTON ENHANCEMENT
──────────────────────────────────────────── */
.scrollup {
  background: linear-gradient(135deg, #066AB7, #25AAE1) !important;
  border-radius: 50% !important;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(6,106,183,0.4);
  transition: transform 0.3s ease !important;
}
.scrollup:hover {
  transform: translateY(-4px) !important;
}
.scrollup a {
  color: #fff !important;
  font-size: 16px;
  line-height: 44px;
  width: 100%;
  text-align: center;
}

/* ────────────────────────────────────────────
   UTILITY
──────────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(90deg, #066AB7, #25AAE1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  background: rgba(6,106,183,0.1);
  color: #066AB7;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}

/* ────────────────────────────────────────────
   PULSE ANIMATION FOR CTA
──────────────────────────────────────────── */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(6,106,183,0.35); }
  70% { box-shadow: 0 0 0 14px rgba(6,106,183,0); }
  100% { box-shadow: 0 0 0 0 rgba(6,106,183,0); }
}
.pulse-animate {
  animation: pulse-ring 2.5s ease-in-out infinite;
}

/* ────────────────────────────────────────────
   RESPONSIVE ADJUSTMENTS
──────────────────────────────────────────── */
@media (max-width: 767px) {
  .stats-section .col-sm-3 + .col-sm-3 {
    border-top: 1px solid rgba(255,255,255,0.2);
    border-left: none;
  }
  .cta-banner h2 { font-size: 1.7rem; }
  .portfolio-col { width: 100%; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .lightbox-inner { margin: 10px; }
  .lightbox-preview { height: 180px; }
  .lightbox-body { padding: 20px; }
  .lightbox-body h3 { font-size: 1.3rem; }
  .testimonial-card { margin: 8px 0; }
  .stat-card .stat-number { font-size: 2.4rem; }
}
