/* ================================================================
   DURGESH TECH SOLUTIONS — style.css  v3.0
   Theme: Premium Light | Royal Blue + Teal + Coral Orange (NO PURPLE)
   ================================================================

   🎨 DESIGN TOKENS — Change karo bas yahan
   ================================================================ */

:root {
  /* Core Brand Colors — Royal Navy Blue + Golden Amber Accent (NO RED) */
  --blue:         #002d62;   /* Primary — Royal Navy Blue (trust, professional) */
  --blue-mid:     #0c3b70;   /* Slightly lighter blue */
  --blue-light:   #f0f5fa;   /* Soft blue bg tint */
  --teal:         #f59e0b;   /* Replaced with Warm Golden Amber */
  --teal-mid:     #d97706;   
  --teal-light:   #fffbeb;   
  --coral:        #f59e0b;   /* Replaced with Warm Golden Amber */
  --coral-dark:   #d97706;
  --coral-light:  #fffbeb;

  /* Backgrounds */
  --bg:           #ffffff;
  --bg-soft:      #f4f7fa;   /* Premium Ice Blue/Grey tint */
  --bg-alt:       #f8fafc;   /* Very soft slate tint */
  --bg-dark:      #071527;   /* Footer / dark sections — deepest navy */

  /* Aliases (used in existing CSS) */
  --indigo:       #002d62;
  --indigo-dark:  #071527;
  --indigo-light: #f4f7fa;
  --orange:       #f59e0b;
  --orange-dark:  #d97706;
  --orange-light: #fffbeb;
  --cyan:         #f59e0b;
  --cyan-light:   #fffbeb;

  /* Text */
  --text-dark:    #071527;   /* Deepest Navy */
  --text-body:    #334155;   /* Slate-700 */
  --text-muted:   #64748b;   /* Slate-500 */
  --text-white:   #ffffff;

  /* UI */
  --border:       #e2e8f0;
  --border-soft:  #f1f5f9;
  --radius:       16px;
  --radius-sm:    10px;
  --radius-pill:  100px;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:       0 4px 20px rgba(0,45,98,0.08);
  --shadow-md:    0 8px 30px rgba(0,45,98,0.1);
  --shadow-lg:    0 20px 60px rgba(0,45,98,0.12);
  --shadow-coral: 0 8px 30px rgba(245,158,11,0.25);
  --shadow-orange:0 8px 30px rgba(245,158,11,0.25);

  /* Gradients — Navy Blue + Golden Amber (NO RED) */
  --grad-primary:  linear-gradient(135deg, #002d62 0%, #0c3b70 100%); /* Clean Navy-to-Blue, NO RED! */
  --grad-hero:     linear-gradient(135deg, #002d62 0%, #0c3b70 100%);
  --grad-orange:   linear-gradient(135deg, #f59e0b 0%, #d97706 100%); /* Warm Golden Amber gradient */
  --grad-teal:     linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --grad-soft-bg:  linear-gradient(180deg, #f4f7fa 0%, #ffffff 100%);
  --grad-text:     linear-gradient(135deg, #002d62 0%, #d97706 100%);
  --grad-footer:   linear-gradient(150deg, #071527 0%, #0c2d53 50%, #071527 100%);

  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================
   RESET & BASE
================================================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}


img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ================================================================
   TYPOGRAPHY
================================================================ */
h1,h2,h3,h4,h5,h6 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { color: var(--text-body); line-height: 1.85; }

/* Gradient Text Utility */
.grad-text {
  color: var(--orange-dark) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
}

/* ================================================================
   SECTION UTILITIES
================================================================ */
.section-pad    { padding: 50px 0; }
.section-pad-sm { padding: 30px 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background:var(--teal);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  border: 1px solid rgba(29,78,216,0.15);
}
.section-eyebrow i { font-size: 0.7rem; }

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

/* ================================================================
   BUTTONS
================================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,45,98,0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,45,98,0.35);
  color: #fff;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(245,158,11,0.25);
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(245,158,11,0.45);
  color: #fff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--indigo);
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(0,45,98,0.25);
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover {
  background: var(--indigo-light);
  border-color: var(--indigo);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--indigo);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

/* ================================================================
   TOP BAR
================================================================ */
.top-bar {
  background: var(--indigo);
  padding: 9px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
}
.top-bar a {
  color: rgba(255,255,255,0.9);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
.top-bar a:hover { color: #fbbf24; }
.top-bar-divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.25);
  display: inline-block; vertical-align: middle;
  margin: 0 4px;
}
.top-social {
  display: flex; align-items: center; gap: 8px;
}
.top-social a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
}
.top-social a:hover { background: var(--orange); color: #fff; }

/* ================================================================
   HEADER
================================================================ */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  transition: var(--transition);
}
.main-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,45,98,0.10);
  background: rgba(255,255,255,0.97);
}

/* Logo */
.navbar-brand-wrap {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--grad-primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(79,70,229,0.4);
}
.logo-text-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  display: block; line-height: 1.1;
}
.logo-text-tag {
  font-size: 0.62rem;
  color: var(--indigo);
  font-weight: 600;
  display: block;
}

/* Nav Links */
.nav-link-c {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link-c:hover { color: var(--blue) !important; background: var(--blue-light); }
.nav-link-c.active { color: var(--blue) !important; }

/* Dropdown */
.dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  min-width: 230px;
  box-shadow: var(--shadow-lg);
  margin-top: 10px !important;
  border-top: 3px solid var(--blue);
}
.dropdown-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.dropdown-item i { color: var(--blue); width: 16px; font-size: 0.8rem; }
.dropdown-item:hover { background: var(--blue-light); color: var(--blue); }
/* Nav Links */
.nav-link-c {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link-c:hover {
  color: var(--blue) !important;
  background: var(--blue-light);
}

.nav-link-c.active {
  color: var(--blue) !important;
  background: transparent !important;
}


/* ================================================================
   HERO SECTION  — Split layout, no fullscreen overlay
================================================================ */
.hero-section {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Decorative blobs — pure CSS, no images needed */
.hero-blob-1 {
  position: absolute;
  top: -100px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,45,98,0.08) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-2 {
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
.hero-blob-3 {
  position: absolute;
  top: 40%; left: 38%;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,45,98,0.05) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: blobFloat 12s ease-in-out infinite 2s;
}

@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(20px,-20px) scale(1.05); }
  66%      { transform: translate(-15px,15px) scale(0.97); }
}

/* Dot grid background */
.hero-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(0,45,98,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-content { position: relative; z-index: 2; padding: 40px 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid rgba(29,78,216,0.2);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.5px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}

.hero-heading {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero-heading .line-highlight {
  color: var(--orange-dark) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-trust {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-trust p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.hero-trust-logos { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.trust-chip {
  display: flex; align-items: center; gap: 7px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}
.trust-chip i { font-size: 0.85rem; }

/* Hero Right — Stats Cards */
.hero-visual { position: relative; z-index: 2; }

.hero-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
  border: 1px solid var(--border);
  animation: cardFloat 4s ease-in-out infinite;
}
.hero-card:nth-child(2) { animation-delay: 1.5s; animation-duration: 5s; }
.hero-card:nth-child(3) { animation-delay: 0.8s; animation-duration: 4.5s; }

@keyframes cardFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-10px); }
}

.hero-card .card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.hero-card .card-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-card .card-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; margin-top: 3px; }

.hero-main-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid #fff;
  position: relative;
}

/* ================================================================
   STATS STRIP
================================================================ */
.stats-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ================================================================
   ABOUT SECTION
================================================================ */
.about-section { background: var(--bg); }

.about-img-wrap { position: relative; }
.about-img-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  position: relative;
}

.about-img-frame img { width: 100%; height: 420px; object-fit: cover; }

/* Coloured border corner accents */
.about-img-frame::before {
  content: '';
  position: absolute;
  top: -3px; left: -3px;
  right: -3px; bottom: -3px;
  border-radius: 30px;
  background: var(--grad-primary);
  z-index: -1;
  opacity: 0.5;
}

.about-badge-exp {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--grad-primary);
  color: #fff;
  padding: 20px 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge-exp .num { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.about-badge-exp .txt { font-size: 0.78rem; font-weight: 600; opacity: 0.85; margin-top: 2px; }

.about-badge-rating {
  position: absolute;
  top: -16px; right: -16px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
}
.about-badge-rating .stars { color: #f59e0b; font-size: 0.8rem; }
.about-badge-rating .rat-num { font-size: 1.3rem; font-weight: 900; color: var(--text-dark); }
.about-badge-rating .rat-label { font-size: 0.7rem; color: var(--text-muted); }

.about-checklist { margin: 24px 0 32px; }
.about-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; color: var(--text-dark);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
}
.about-checklist li:last-child { border-bottom: none; }
.check-icon {
  width: 22px; height: 22px;
  background: var(--indigo-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon i { color: var(--indigo); font-size: 0.65rem; }

/* ================================================================
   SERVICES SECTION
================================================================ */
.services-section { background: var(--bg-soft); }

.service-card {
  background: #f3f9ff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
/* ================================
   Premium Service Cards
================================ */

.service-card{
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
    border: 1px solid #dbeafe;
    border-radius: 18px;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}

/* Blue glow layer */
.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(59,130,246,.12),
        transparent
    );
    transition:.7s;
}

/* Hover */
.service-card:hover{
    background: linear-gradient(135deg,#eef6ff 0%,#dbeafe 100%);
    border-color:#60a5fa;
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(37,99,235,.15);
}

/* Moving shine effect */
.service-card:hover::before{
    left:120%;
}

.svc-icon-wrap {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.svc-1 { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1d4ed8; }
.svc-2 { background: linear-gradient(135deg, #ccfbf1, #99f6e4); color: #0d9488; }
.svc-3 { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #b45309; }
.svc-4 { background: linear-gradient(135deg, #fce7f3, #fbcfe8); color: #be185d; }
.svc-5 { background: linear-gradient(135deg, #ede9fe, #ddd6fe); color: #6d28d9; }
.svc-6 { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #047857; }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  transition: var(--transition);
}
.svc-link:hover { gap: 10px; }

.svc-arrow-icon {
  width: 28px; height: 28px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  transition: var(--transition);
}
.service-card:hover .svc-arrow-icon {
  background: var(--blue);
  color: #fff;
}

/* ================================================================
   WHY CHOOSE US — Indigo gradient background (the vibrant section)
================================================================ */
/* ================================================================
   INDUSTRIES WE SERVE
================================================================ */
.industries-section { background: var(--bg-soft); }

.industry-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 22px;
  border: 1.5px solid var(--border);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: var(--grad-primary);
  transition: height 0.35s ease;
  z-index: 0;
}
.industry-card:hover::after { height: 4px; }
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.industry-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
  position: relative; z-index: 1;
}
.industry-card:hover .industry-icon { transform: scale(1.1) rotate(-5deg); }
.industry-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  position: relative; z-index: 1;
}
.industry-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  position: relative; z-index: 1;
}
/* Industry icon colours */
.ind-1  { background: linear-gradient(135deg,#dbeafe,#bfdbfe); }
.ind-2  { background: linear-gradient(135deg,#d1fae5,#a7f3d0); }
.ind-3  { background: linear-gradient(135deg,#ccfbf1,#99f6e4); }
.ind-4  { background: linear-gradient(135deg,#fce7f3,#fbcfe8); }
.ind-5  { background: linear-gradient(135deg,#fef3c7,#fde68a); }
.ind-6  { background: linear-gradient(135deg,#ede9fe,#ddd6fe); }
.ind-7  { background: linear-gradient(135deg,#fee2e2,#fecaca); }
.ind-8  { background: linear-gradient(135deg,#e0f2fe,#bae6fd); }
.ind-9  { background: linear-gradient(135deg,#dcfce7,#bbf7d0); }
.ind-10 { background: linear-gradient(135deg,#f3e8ff,#e9d5ff); }
.ind-11 { background: linear-gradient(135deg,#fef9c3,#fef08a); }
.ind-12 { background: linear-gradient(135deg,#ffe4e6,#fecdd3); }
.ind-13 { background: linear-gradient(135deg,#ecfdf5,#a7f3d0); }
.ind-14 { background: linear-gradient(135deg,#f0f9ff,#bae6fd); }
.ind-15 { background: linear-gradient(135deg,#fdf2f8,#fce7f3); }
.ind-16 { background: linear-gradient(135deg,#f7fee7,#d9f99d); }

/* ================================================================
   WHY CHOOSE US
================================================================ */
.why-section {
  background: linear-gradient(135deg, #071527 0%, #002d62 50%, #071527 100%);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}
.why-section::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(220,38,38,0.08);
  pointer-events: none;
}

.why-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.35);
}
.why-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: rgba(255,255,255,0.25); }
.why-card h4 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.why-card p  { color: rgba(255,255,255,0.7); font-size: 0.87rem; line-height: 1.7; margin: 0; }

/* ================================================================
   WORKING PROCESS
================================================================ */
.process-section { background: var(--bg-alt); }

.process-step {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.process-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}

.process-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(79,70,229,0.35);
}
.process-emoji {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.process-step h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.process-step p  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

.process-connector {
  position: absolute;
  top: 52px; right: -18px;
  width: 36px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  z-index: 1;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -4px; top: -4px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

/* ================================================================
   PORTFOLIO
================================================================ */
.portfolio-section { background: var(--bg-soft); }

.filter-wrap { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.filter-btn {
  padding: 9px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 15px rgba(29,78,216,0.3);
}

.port-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.port-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.port-thumb {
  height: 210px;
  position: relative;
  overflow: hidden;
}
.port-thumb-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.port-card:hover .port-thumb-bg { transform: scale(1.06); }

.port-overlay {
  position: absolute; inset: 0;
  background: rgba(29,78,216,0.9);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.port-card:hover .port-overlay { opacity: 1; }
.port-overlay h5 { color: #fff; font-size: 1rem; font-weight: 700; }
.port-tag { color: rgba(255,255,255,0.8); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; }
.port-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 4px;
}

.port-info { padding: 18px 20px; }
.port-info h5 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.port-cat {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--indigo);
  display: inline-flex; align-items: center; gap: 6px;
}
.port-cat::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--indigo);
}

/* ================================================================
   CLIENT MARQUEE
================================================================ */
.clients-section {
  background: #fff;
  padding: 44px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.clients-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.marquee-wrap { overflow: hidden; }
.marquee-track {
  display: flex; gap: 20px;
  width: max-content;
  animation: marquee 25s linear infinite;
  align-items: center;
}
.marquee-track:hover { animation-play-state: paused; }

.client-chip {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 22px;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  transition: var(--transition);
  cursor: default;
}
.client-chip:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.client-chip i { color: var(--blue); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   TESTIMONIALS
================================================================ */
.testi-section { background: var(--bg-alt); }

.testi-swiper { padding-bottom: 52px !important; }

.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: auto;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.testi-quote {
  font-size: 3rem;
  color: var(--indigo-light);
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.testi-stars { margin-bottom: 14px; }
.testi-stars i { color: #f59e0b; font-size: 0.85rem; }
.testi-card p {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 22px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.testi-author h6 { font-size: 0.92rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); }

.testi-swiper .swiper-pagination-bullet { background: var(--border); opacity: 1; width: 8px; height: 8px; }
.testi-swiper .swiper-pagination-bullet-active { background: var(--blue); width: 24px; border-radius: 4px; }

/* ================================================================
   BLOG
================================================================ */
.blog-section { background: var(--bg); }

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.blog-thumb {
  height: 190px; overflow: hidden; position: relative;
}
.blog-thumb-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-thumb-bg { transform: scale(1.07); }
.blog-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: var(--radius-pill);
  text-transform: uppercase; letter-spacing: 0.8px;
  color: #fff;
}
.blog-body { padding: 22px; }
.blog-meta { display: flex; gap: 14px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-meta i { color: var(--blue); }
.blog-body h4 { font-size: 0.97rem; font-weight: 700; color: var(--text-dark); line-height: 1.45; margin-bottom: 10px; }
.blog-body p  { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.blog-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 700;
  color: var(--blue);
  transition: var(--transition);
}
.blog-link:hover { gap: 10px; }

/* ================================================================
   CTA BANNER
================================================================ */
.cta-section {
  background: var(--grad-orange);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60%; right: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80%; left: -3%;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.cta-section h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-section p  { color: rgba(255,255,255,0.85); font-size: 1rem; }

/* ================================================================
   CONTACT SECTION
================================================================ */
.contact-section { background: var(--bg-soft); }

.contact-info {
  background: linear-gradient(145deg, #1d4ed8 0%, #0d9488 100%);
  border-radius: var(--radius);
  padding: 40px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.contact-info h3  { color: #fff; margin-bottom: 8px; position: relative; }
.contact-info > p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 32px; position: relative; }

.ci-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 22px; position: relative;
}
.ci-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; flex-shrink: 0;
  transition: var(--transition);
}
.ci-item:hover .ci-icon { background: var(--orange); }
.ci-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; display: block; margin-bottom: 2px; }
.ci-val { color: #fff; font-weight: 600; font-size: 0.95rem; display: block; }
.ci-val a { color: #fff; }
.ci-val a:hover { color: #fbbf24; }

.ci-socials { display: flex; gap: 10px; margin-top: 28px; position: relative; }
.ci-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  transition: var(--transition);
}
.ci-socials a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  height: 100%;
}
.contact-form h3  { color: var(--text-dark); margin-bottom: 6px; }
.contact-form > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }

.form-lbl {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}
.form-inp {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--bg-soft);
  transition: var(--transition);
  outline: none;
}
.form-inp:focus {
  border-color: var(--indigo);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(79,70,229,0.08);
}
.form-inp::placeholder { color: var(--text-muted); }
select.form-inp { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 40px; }

/* ================================================================
   FOOTER — with particle animation
================================================================ */
.site-footer {
  background: var(--grad-footer);
  position: relative;
  overflow: hidden;
}

/* Animated floating particles in footer */
.footer-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.fp {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: fpFloat linear infinite;
}
.fp:nth-child(1)  { width:6px;  height:6px;  background:#3b82f6; left:10%; animation-duration:12s; animation-delay:0s; }
.fp:nth-child(2)  { width:4px;  height:4px;  background:#0d9488; left:20%; animation-duration:9s;  animation-delay:2s; }
.fp:nth-child(3)  { width:8px;  height:8px;  background:#f97316; left:35%; animation-duration:15s; animation-delay:1s; }
.fp:nth-child(4)  { width:3px;  height:3px;  background:#60a5fa; left:50%; animation-duration:10s; animation-delay:4s; }
.fp:nth-child(5)  { width:5px;  height:5px;  background:#2dd4bf; left:65%; animation-duration:13s; animation-delay:0.5s; }
.fp:nth-child(6)  { width:7px;  height:7px;  background:#f97316; left:75%; animation-duration:11s; animation-delay:3s; }
.fp:nth-child(7)  { width:4px;  height:4px;  background:#93c5fd; left:85%; animation-duration:8s;  animation-delay:1.5s; }
.fp:nth-child(8)  { width:6px;  height:6px;  background:#5eead4; left:90%; animation-duration:14s; animation-delay:2.5s; }
.fp:nth-child(9)  { width:3px;  height:3px;  background:#fbbf24; left:5%;  animation-duration:16s; animation-delay:0.8s; }
.fp:nth-child(10) { width:5px;  height:5px;  background:#60a5fa; left:45%; animation-duration:9s;  animation-delay:6s; }
.fp:nth-child(11) { width:4px;  height:4px;  background:#34d399; left:55%; animation-duration:11s; animation-delay:3.5s; }
.fp:nth-child(12) { width:6px;  height:6px;  background:#f472b6; left:28%; animation-duration:13s; animation-delay:5s; }

@keyframes fpFloat {
  0%   { transform: translateY(100vh) rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-50px) rotate(360deg); opacity: 0; }
}

/* Animated gradient wave top border */
.footer-wave {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1d4ed8, #0d9488, #f97316, #7c3aed, #1d4ed8);
  background-size: 300% 100%;
  animation: waveGrad 4s ease infinite;
}
@keyframes waveGrad {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.footer-top { padding: 72px 0 40px; position: relative; z-index: 1; }
.footer-bottom { position: relative; z-index: 1; }

.footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, #2563eb, #0d9488);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1rem;
}
.footer-logo-name { font-size: 0.95rem; font-weight: 800; color: #fff; line-height: 1.1; }
.footer-logo-tag  { font-size: 0.62rem; color: #5eead4; font-weight: 600; letter-spacing: 0.3px; }

/* ================================================================
   FOOTER — Updated color: Deep ocean navy (premium Stripe-style)
================================================================ */
.site-footer {
  background: linear-gradient(180deg, #071d2f 0%, #0a2540 60%, #071d2f 100%) !important;
}
.footer-desc { font-size: 0.875rem; color: #6b8ba4; line-height: 1.8; margin-bottom: 22px; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  color: #8ca0b8; display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; transition: var(--transition);
}
.footer-socials a:hover { background: var(--teal); border-color: var(--teal); color: #fff; transform: translateY(-3px); }
.footer-heading {
  font-size: 0.9rem; font-weight: 700; color: #e2e8f0; margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.86rem; color: #6b8ba4;
  display: flex; align-items: center; gap: 8px; transition: var(--transition);
}
.footer-links a:hover { color: #5eead4; padding-left: 4px; }
.footer-links a i { color: #0d9488; font-size: 0.6rem; }
.ftr-ci { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.86rem; }
.ftr-ci-icon { color: var(--coral); flex-shrink: 0; margin-top: 2px; font-size: 0.85rem; }
.ftr-ci a { color: #6b8ba4; }
.ftr-ci a:hover, .ftr-ci span { color: #8ca0b8; }
.footer-bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.04); font-size: 0.82rem; color: #3d5166; }
.footer-bottom a { color: #3d5166; }
.footer-bottom a:hover { color: #5eead4; }

/* ================================================================
   TECH STACK SECTION
================================================================ */
.tech-section { background: var(--bg); }
.tech-cat-row { margin-bottom: 32px; }
.tech-cat-row:last-child { margin-bottom: 0; }
.tech-cat-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.tech-cat-label::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.tech-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.tech-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.84rem; font-weight: 600; color: var(--text-dark);
  cursor: default; transition: var(--transition);
  box-shadow: var(--shadow-sm);
  user-select: none;
}
.tech-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue); color: var(--blue); }
.tech-badge .tb-icon { font-size: 1.15rem; line-height: 1; }

/* ================================================================
   MOBILE LEFT SIDEBAR
================================================================ */
.mobile-sidebar {
  position: fixed; top: 0; left: -310px; bottom: 0;
  width: 290px; height: 100vh;
  background: #fff; z-index: 10000;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto; overflow-x: hidden;
  display: flex; flex-direction: column;
  box-shadow: 6px 0 40px rgba(0,0,0,0.18);
}
.mobile-sidebar.is-open { left: 0; }

.sidebar-overlay {
  position: fixed; inset: 0;
  background: rgba(7,29,47,0.6);
  z-index: 9999; opacity: 0; visibility: hidden;
  transition: all 0.35s ease; backdrop-filter: blur(3px);
}
.sidebar-overlay.is-open { opacity: 1; visibility: visible; }

.sidebar-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 16px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: #fff; z-index: 2;
}
.sidebar-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-soft); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; color: var(--text-dark);
  transition: var(--transition); flex-shrink: 0;
}
.sidebar-close:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.sidebar-nav { padding: 10px 12px; flex: 1; overflow-y: auto; }
.sidebar-nav-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; font-size: 0.9rem; font-weight: 600;
  color: var(--text-dark); border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border-soft);
  transition: var(--transition); cursor: pointer;
}
.sidebar-nav-item:hover, .sidebar-nav-item.active { background: var(--blue-light); color: var(--blue); }
.sidebar-nav-item.sub-open { color: var(--blue); }
.sidebar-nav-item i.arrow { font-size: 0.65rem; color: var(--text-muted); transition: transform 0.3s; }
.sidebar-nav-item.sub-open i.arrow { transform: rotate(90deg); color: var(--blue); }
.sidebar-nav-item a { color: inherit; display: flex; align-items: center; gap: 10px; flex: 1; }
.sidebar-nav-item i.icon { color: var(--blue); font-size: 0.85rem; width: 18px; }

.sidebar-sub { display: none; padding: 4px 0 8px 14px; }
.sidebar-sub.open { display: block; }
.sidebar-sub a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px; font-size: 0.84rem; font-weight: 500;
  color: var(--text-body); border-radius: var(--radius-sm);
  transition: var(--transition);
}
.sidebar-sub a:hover { background: var(--blue-light); color: var(--blue); }
.sidebar-sub i { color: var(--teal); font-size: 0.7rem; }

/* Mobile sidebar bottom CTA */
.sidebar-cta {
  padding: 16px 12px; border-top: 1px solid var(--border);
  background: var(--bg-soft); position: sticky; bottom: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.sidebar-cta a {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 12px 8px; border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 700; transition: var(--transition);
}
.sidebar-wa { background: #25d366; color: #fff; }
.sidebar-wa:hover { background: #1eb857; color: #fff; }
.sidebar-call { background: var(--blue); color: #fff; }
.sidebar-call:hover { background: var(--indigo-dark); color: #fff; }

/* ================================================================
   BREADCRUMB
================================================================ */
.breadcrumb-section {
  background: linear-gradient(rgba(7, 21, 39, 0.9), rgba(7, 21, 39, 0.9)), url('../img/tech-bg.jpg') center/cover no-repeat;
  padding: 48px 0; position: relative; overflow: hidden;
}
.breadcrumb-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
}
.breadcrumb-section h1 { color: #fff; font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 10px; }
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 0.85rem; }
.breadcrumb-nav a { color: rgba(255,255,255,0.75); }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav .sep { color: rgba(255,255,255,0.4); }
.breadcrumb-nav .current { color: rgba(255,255,255,0.9); font-weight: 600; }

/* ================================================================
   BLOG LISTING PAGE
================================================================ */
.blog-grid-section { background: var(--bg); }
.blog-sidebar { position: sticky; top: 90px; }
.blog-widget {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 24px;
}
.blog-widget h5 {
  font-size: 0.95rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--blue-light);
}
.blog-widget h5 span { color: var(--blue); }

/* Category list */
.widget-cat a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; font-size: 0.88rem; color: var(--text-body);
  border-bottom: 1px solid var(--border-soft); transition: var(--transition);
}
.widget-cat a:hover { color: var(--blue); padding-left: 4px; }
.widget-cat a span { background: var(--blue-light); color: var(--blue); font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 10px; }

/* Recent post */
.widget-recent-post { display: flex; gap: 12px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border-soft); }
.widget-recent-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.wrp-thumb {
  width: 64px; height: 64px; border-radius: 10px; overflow: hidden;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.wrp-info h6 { font-size: 0.84rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin-bottom: 4px; }
.wrp-info h6 a { color: inherit; }
.wrp-info h6 a:hover { color: var(--blue); }
.wrp-date { font-size: 0.75rem; color: var(--text-muted); }

/* Newsletter widget */
.widget-newsletter p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; }
.widget-newsletter .nw-inp { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.88rem; font-family: inherit; outline: none; margin-bottom: 10px; }
.widget-newsletter .nw-inp:focus { border-color: var(--blue); }

/* Pagination */
.pagination-wrap { display: flex; gap: 6px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.pg-btn {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; font-weight: 600; color: var(--text-dark);
  cursor: pointer; transition: var(--transition);
}
.pg-btn:hover, .pg-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ================================================================
   BLOG DETAIL PAGE
================================================================ */
.blog-article { background: var(--bg); }
.article-header { margin-bottom: 32px; }
.article-cat {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-light); color: var(--blue);
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 5px 14px; border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.article-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: var(--text-dark); margin-bottom: 18px; line-height: 1.2; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; font-size: 0.84rem; color: var(--text-muted); margin-bottom: 24px; }
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-meta i { color: var(--blue); }
.article-featured { border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; height: 380px; display: flex; align-items: center; justify-content: center; font-size: 8rem; }
.article-body { font-size: 1rem; line-height: 1.9; color: var(--text-body); }
.article-body h2, .article-body h3 { color: var(--text-dark); font-weight: 800; margin: 32px 0 14px; }
.article-body h2 { font-size: 1.5rem; }
.article-body h3 { font-size: 1.2rem; }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 4px solid var(--blue); background: var(--bg-soft);
  padding: 20px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0; font-style: italic; color: var(--text-dark); font-size: 1.05rem;
}
.article-body strong { color: var(--text-dark); }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0 0; }
.article-tag {
  padding: 6px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--border); background: var(--bg-soft);
  font-size: 0.8rem; font-weight: 600; color: var(--text-body);
  transition: var(--transition);
}
.article-tag:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* Author box */
.author-box {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; margin-top: 40px;
  display: flex; gap: 20px; align-items: flex-start;
}
.author-av {
  width: 70px; height: 70px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 900; color: #fff;
  background: var(--grad-primary);
}
.author-info h5 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.author-info .author-role { font-size: 0.8rem; color: var(--blue); font-weight: 600; margin-bottom: 8px; }
.author-info p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* Social share */
.share-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.share-bar span { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }
.share-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 700; color: #fff; transition: var(--transition);
}
.share-btn:hover { transform: translateY(-2px); filter: brightness(1.1); color: #fff; }
.share-fb { background: #1877f2; }
.share-tw { background: #1da1f2; }
.share-wa { background: #25d366; }
.share-li { background: #0a66c2; }

/* Related posts in detail page */
.related-section { background: var(--bg-soft); }

/* Comment form */
.comment-section { background: var(--bg); }
.comment-form { background: var(--bg-soft); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); }

/* ================================================================
   FLOATING BUTTONS
================================================================ */
.float-wa {
  position: fixed; bottom: 86px; left: 22px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: var(--transition); animation: waPulse 2.5s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.1); color: #fff; }
.float-call {
  position: fixed; bottom: 22px; left: 22px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--grad-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: 0 6px 20px rgba(29,78,216,0.4);
  transition: var(--transition);
}
.float-call:hover { transform: scale(1.1); color: #fff; }
.scroll-top-btn {
  position: fixed; bottom: 22px; right: 22px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--text-dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; border: none; cursor: pointer;
  transition: var(--transition); opacity: 0; transform: translateY(16px);
  box-shadow: var(--shadow);
}
.scroll-top-btn.show { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--blue); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 6px 32px rgba(37,211,102,0.7); }
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  .hero-visual { margin-top: 40px; }
  .about-badge-exp { bottom: -16px; left: -12px; }
  .about-badge-rating { top: -12px; right: -12px; }
  .process-connector { display: none; }
  .blog-sidebar { position: static; }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .hero-section { min-height: auto; }
  .hero-content { padding: 60px 0 40px; }
  .hero-heading { font-size: 2rem; }
  .stats-strip .col-6 { border-bottom: 1px solid var(--border); }
  .contact-info, .contact-form { padding: 28px 24px; }
  .section-pad { padding: 55px 0; }
  .author-box { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 576px) {
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .hero-heading { font-size: 1.8rem; }
  .tech-badges { gap: 8px; }
  .tech-badge { padding: 8px 14px; font-size: 0.8rem; }
}


.footer-desc { font-size: 0.875rem;   color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 22px; max-width: 300px; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #94a3b8;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-3px); }

.footer-heading {
  font-size: 0.9rem; font-weight: 700;
  color: #fff; margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.86rem;
  color: #64748b;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.footer-links a:hover { color: #7dd3fc; padding-left: 4px; }
.footer-links a i { color: #3b82f6; font-size: 0.6rem; }

.ftr-ci { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.86rem; }
.ftr-ci-icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; font-size: 0.85rem; }
.ftr-ci a { color: #64748b; }
.ftr-ci a:hover, .ftr-ci span { color: #94a3b8; }

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.82rem;
  color: #475569;
}
.footer-bottom a { color: #475569; }
.footer-bottom a:hover { color: #a5b4fc; }

/* ================================================================
   FLOATING BUTTONS
================================================================ */
.float-wa {
  position: fixed;
  bottom: 86px; left: 22px;
  z-index: 999;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.1); color: #fff; }

.float-call {
  position: fixed;
  bottom: 22px; left: 22px;
  z-index: 999;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 20px rgba(79,70,229,0.4);
  transition: var(--transition);
}
.float-call:hover { transform: scale(1.1); color: #fff; }

.scroll-top-btn {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 999;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--text-dark);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  border: none; cursor: pointer;
  transition: var(--transition);
  opacity: 0; transform: translateY(16px);
  box-shadow: var(--shadow);
}
.scroll-top-btn.show { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--indigo); }

@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 6px 32px rgba(37,211,102,0.7); }
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  .hero-visual { margin-top: 40px; }
  .about-badge-exp { bottom: -16px; left: -12px; }
  .about-badge-rating { top: -12px; right: -12px; }
  .process-connector { display: none; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .hero-section { min-height: auto; }
  .hero-content { padding: 60px 0 40px; }
  .hero-heading { font-size: 2rem; }
  .stats-strip .col-6, .stats-strip .col-3 { border: none; border-bottom: 1px solid var(--border); }
  .contact-info, .contact-form { padding: 28px 24px; }
  .section-pad { padding: 55px 0; }
}

@media (max-width: 576px) {
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .hero-heading { font-size: 1.8rem; }
}

/* ================================================================
   ALTERNATING DARK/LIGHT THEME HELPER CLASSES
================================================================ */
.bg-theme-dark {
  background: linear-gradient(135deg, #071527 0%, #002d62 50%, #071527 100%) !important;
  color: #ffffff !important;
  position: relative;
}
.bg-theme-dark::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.bg-theme-dark .section-title {
  color: #ffffff !important;
}
.bg-theme-dark .section-subtitle {
  color: rgba(255,255,255,0.7) !important;
}
.bg-theme-dark .port-card {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.12) !important;
  box-shadow: none !important;
}
.bg-theme-dark .port-card:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.22) !important;
  transform: translateY(-6px);
}
.bg-theme-dark .port-info h5 {
  color: #ffffff !important;
}
.bg-theme-dark .port-info .port-cat {
  color: rgba(255,255,255,0.65) !important;
}
.bg-theme-dark .port-tag {
  color: #ffffff !important;
}

/* Footer Links - Soft White */

.footer-links a,
.ftr-ci a,
.ftr-ci span {
    color: rgba(255,255,255,0.75) !important;
    font-weight: 600;
}

.footer-links a:hover,
.ftr-ci a:hover {
    color: #5eead4 !important;
}

.about-img-frame{
    position: relative;
}

.about-main-img{
    width:100%;
    display:block;
    animation:floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

.floating-card{

    position:absolute;
    background:#fff;
    padding:12px 18px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    display:flex;
    align-items:center;
    gap:10px;
    font-size:.85rem;
    font-weight:600;
    animation:floatCard 3s ease-in-out infinite;

}

.card1{

    top:25px;
    right:20px;

}

.card2{

    bottom:25px;
    left:20px;
    animation-delay:1.5s;

}

.floating-card i{

    color:#2563eb;
    font-size:18px;

}

@keyframes floatCard{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }

}
/* ===== Footer Copyright ===== */

.footer-bottom,
.footer-bottom p,
.footer-bottom span,
.footer-bottom a {
    color: rgba(255,255,255,0.78) !important;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #5eead4 !important;
}
/* ===== Footer Social Icons ===== */

.footer-socials a{
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.95rem;
    font-weight: 700;
}

.footer-socials a:hover{
    background: #0d9488 !important;
    border-color: #0d9488 !important;
    color: #ffffff !important;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(13,148,136,0.35);
}
.about-service-img{
    width:100%;
    height:350px;
    object-fit:contain;
    border-radius:20px;
    transition:0.5s ease;
}


.about-img-frame{
    overflow:hidden;
}

.about-img-frame:hover .about-service-img{
    transform:scale(1.06);
}
.about-img-wrap{
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}
.section-pad[style*="var(--blue)"] h5{
    color:#ffffff !important;
}

.section-pad[style*="var(--blue)"] p{
    color:rgba(255,255,255,.78);
}
.why-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 22px;
    border-radius:50px;
    background:linear-gradient(135deg,#ff8c00,#ffb300);
    color:#fff !important;
    font-weight:700;
    border:none;
    box-shadow:0 10px 25px rgba(255,140,0,.35);
}

.why-badge i{
    width:32px;
    height:32px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}
.benefits-badge,
.why-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 22px;
    border-radius:50px;
    background:linear-gradient(135deg,#ff7a18,#ffb800);
    color:#fff !important;
    border:none;
    font-weight:700;
    box-shadow:0 10px 25px rgba(255,140,0,.35);
}

.benefits-badge i,
.why-badge i{
    width:32px;
    height:32px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}
/* =========================================
   DARK SECTION BADGES FIX
========================================= */

.partner-label,
.benefits-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;

    width: auto !important;
    padding: 9px 20px !important;
    margin-bottom: 18px !important;

    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    color: #ffffff !important;

    border: 1px solid rgba(255,255,255,0.30) !important;
    border-radius: 50px !important;

    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;

    box-shadow: 0 10px 25px rgba(245,158,11,0.30) !important;
}

.partner-label i,
.benefits-badge i {
    color: #ffffff !important;
    font-size: 13px !important;
}

/* Why Partner cards title fix */
.why-partner-section h5 {
    color: #ffffff !important;
}

/* Dark section paragraph fix */
.why-partner-section p {
    color: rgba(255,255,255,0.72) !important;
}
.partner-label,
.partner-label *,
.benefits-badge,
.benefits-badge *{
    color:#fff !important;
    -webkit-text-fill-color:#fff !important;
    opacity:1 !important;
}
.partner-label{
    background:#f59e0b !important;
    background-image:none !important;
    color:#071527 !important;
    border:2px solid #fbbf24 !important;
}

.partner-label span,
.partner-label i{
    color:#071527 !important;
    -webkit-text-fill-color:#071527 !important;
}



.hero-main-img,
.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide{
    height:500px;
}

.hero-main-img{
    border-radius:24px;
    overflow:hidden;
}


.port-thumb-bg{
    width:100%;
    height:240px;
    overflow:hidden;
    border-radius:16px;
    background:#f8f9fa;
}

.port-thumb-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.port-card:hover .port-thumb-bg img{
    transform:scale(1.08);
}


