/* assets/css/style.css - Landing Page Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Noto+Sans+Bengali:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --secondary: #7c3aed;
  --accent: #f97316;
  --success: #16a34a;
  --success-hover: #15803d;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray-bg: #f8fafc;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(37, 99, 235, 0.08);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Hind Siliguri', 'Noto Sans Bengali', 'SolaimanLipi', 'Kalpurush', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

input, button, select, textarea {
  font-family: 'Hind Siliguri', 'Noto Sans Bengali', 'SolaimanLipi', 'Kalpurush', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================
   TOP BAR
   ========================================================== */
.top-bar {
  background: #1e1b4b;
  color: #e0e7ff;
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
}

.top-contact-item i {
  color: #38bdf8;
}

.top-contact-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-btn.fb { background: #1877f2; }
.social-btn.yt { background: #ff0000; }
.social-btn.li { background: #0a66c2; }
.social-btn.wa { background: #25d366; }

.social-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

/* ==========================================================
   NAVBAR
   ========================================================== */
.main-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #0f172a;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #8b5cf6);
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links li a {
  font-size: 1.05rem;
  font-weight: 600;
  color: #334155;
  position: relative;
  padding: 6px 0;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

/* ==========================================================
   BUTTONS & BADGES
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.35);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #15803d, #166534);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(22, 163, 74, 0.45);
}

.btn-outline {
  background: #ffffff;
  color: #334155;
  border: 1px solid #cbd5e1;
}

.btn-outline:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: #0f172a;
}

.badge-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: #fff7ed;
  color: #c2410c;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid #ffedd5;
  margin-bottom: 20px;
}

.badge-trust i {
  color: #f97316;
}

/* ==========================================================
   SCROLL PROGRESS BAR
   ========================================================== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: linear-gradient(90deg, #2563eb, #7c3aed, #ec4899, #f97316);
  z-index: 99999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.7);
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero-section {
  padding: 70px 0 90px;
  background: radial-gradient(circle at 80% 20%, #f0f9ff 0%, #ffffff 70%);
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.shape-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(75px);
  opacity: 0.5;
  will-change: transform;
}

.shape-blob-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #bfdbfe, #3b82f6);
  top: -120px;
  right: -50px;
  animation: ambientFloat 10s ease-in-out infinite alternate;
}

.shape-blob-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #e9d5ff, #8b5cf6);
  bottom: -60px;
  left: -80px;
  animation: ambientFloat 12s ease-in-out infinite alternate-reverse;
}

.shape-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#cbd5e1 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.8), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.8), transparent 75%);
}

@keyframes ambientFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, 20px) scale(1.08); }
  100% { transform: translate(-15px, 35px) scale(0.95); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.3;
  color: #0f172a;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.06));
  position: relative;
  z-index: 1;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-badge:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

.floating-badge i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 1.15rem;
}

.floating-badge strong {
  display: block;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}

.floating-badge small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.floating-badge-1 {
  top: 8%;
  left: -20px;
  animation: floatAnim1 5s ease-in-out infinite;
}
.floating-badge-1 i {
  background: #eff6ff;
  color: #2563eb;
}

.floating-badge-2 {
  bottom: 8%;
  right: -20px;
  animation: floatAnim2 6s ease-in-out infinite;
}
.floating-badge-2 i {
  background: #f0fdf4;
  color: #16a34a;
}

@keyframes floatAnim1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatAnim2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

/* ==========================================================
   SECTION COMMON HEADERS
   ========================================================== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ==========================================================
   WHY CHOOSE US SECTION
   ========================================================== */
.why-us-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

.why-us-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0%;
  background: linear-gradient(180deg, #2563eb, #7c3aed);
  transition: height 0.35s ease;
}

.why-card.right-side::before {
  left: auto;
  right: 0;
  background: linear-gradient(180deg, #16a34a, #059669);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
}

.why-card:hover::before {
  height: 100%;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-card.right-side {
  flex-direction: row-reverse;
  text-align: right;
}

.why-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 14px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.12);
}

.why-card.right-side .why-icon {
  background: #f0fdf4;
  color: #16a34a;
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.12);
}

.why-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 5px;
}

.why-info p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-us-center-img {
  text-align: center;
  padding: 10px;
  position: relative;
}

.why-us-center-img .center-img-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14) 0%, rgba(139, 92, 246, 0.08) 50%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(28px);
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

.why-us-center-img img {
  position: relative;
  z-index: 1;
  max-height: 380px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.why-us-center-img:hover img {
  transform: scale(1.04);
}

@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* ==========================================================
   SERVICES SECTION
   ========================================================== */
.services-section {
  padding: 80px 0;
  background: #fafafa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  padding: 32px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.service-card:hover .service-icon-box {
  transform: scale(1.12) rotate(6deg);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 16px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  color: #475569;
}

/* Pastel Theme Variations for Service Cards */
.card-pink { background: #fdf2f4; border-color: #fbcfe8; }
.card-pink .service-icon-box { color: #db2777; }

.card-purple { background: #f3e8ff; border-color: #e9d5ff; }
.card-purple .service-icon-box { color: #9333ea; }

.card-mint { background: #ecfdf5; border-color: #a7f3d0; }
.card-mint .service-icon-box { color: #059669; }

.card-yellow { background: #fefce8; border-color: #fef08a; }
.card-yellow .service-icon-box { color: #ca8a04; }

.card-cyan { background: #ecfeff; border-color: #a5f3fc; }
.card-cyan .service-icon-box { color: #0891b2; }

.card-peach { background: #fff7ed; border-color: #fed7aa; }
.card-peach .service-icon-box { color: #ea580c; }

.card-blue { background: #eff6ff; border-color: #bfdbfe; }
.card-blue .service-icon-box { color: #2563eb; }

.card-lavender { background: #f5f3ff; border-color: #ddd6fe; }
.card-lavender .service-icon-box { color: #7c3aed; }

/* ==========================================================
   FEATURES SECTION
   ========================================================== */
.features-section {
  padding: 80px 0;
  background: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 38px 24px;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-box:hover .feature-badge-icon {
  transform: scale(1.15) rotate(6deg);
}

.feature-badge-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.badge-purple { background: #f3e8ff; color: #7c3aed; }
.badge-gold   { background: #fef3c7; color: #d97706; }
.badge-pink   { background: #ffe4e6; color: #e11d48; }
.badge-indigo { background: #e0e7ff; color: #4338ca; }
.badge-cyan   { background: #cffafe; color: #0891b2; }
.badge-blue   { background: #dbeafe; color: #2563eb; }

.feature-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================
   PROMO CTA SECTION
   ========================================================== */
.promo-section {
  padding: 60px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.promo-container-box {
  background: #ffffff;
  border: 2px solid #fdba74;
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.08);
  position: relative;
  overflow: hidden;
}

.promo-container-box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 70%);
  pointer-events: none;
}

.promo-content h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.35;
}

.promo-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.promo-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================
   COUNTERS SECTION
   ========================================================== */
.counters-section {
  padding: 60px 0;
  background: #ffffff;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: #ffffff;
}

.counter-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.counter-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #e2e8f0;
}

.counter-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 12px;
}

.counter-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 6px;
}

.counter-label {
  font-size: 1.15rem;
  font-weight: 600;
  color: #475569;
}

/* ==========================================================
   PAYMENT METHODS SECTION
   ========================================================== */
.payments-section {
  padding: 60px 0 80px;
  background: #f8fafc;
}

.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.payment-card {
  background: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 65px;
  transition: var(--transition);
}

.payment-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: var(--shadow-sm);
}

.payment-card img {
  max-width: 120px;
  max-height: 45px;
  object-fit: contain;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.main-footer {
  background: #090d16;
  color: #94a3b8;
  padding: 70px 0 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-col h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
}

.footer-col p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-contact-list i {
  color: #38bdf8;
  margin-top: 4px;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #1e293b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  background: #04060a;
  padding: 20px 0;
  border-top: 1px solid #1e293b;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
}

.back-to-top {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #1e293b;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.back-to-top:hover {
  background: var(--primary);
}

/* ==========================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content p {
    margin: 0 auto 28px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .why-us-layout {
    grid-template-columns: 1fr;
  }
  .why-card.right-side {
    flex-direction: row;
    text-align: left;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-container-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .promo-buttons {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    justify-content: center;
    text-align: center;
  }
  .nav-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    display: none;
    border-top: 1px solid #e2e8f0;
  }
  .nav-links.active {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .counters-grid {
    grid-template-columns: 1fr;
  }
  .counter-item:not(:last-child)::after {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .floating-badge-1 {
    top: 5px;
    left: 5px;
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  .floating-badge-2 {
    bottom: 5px;
    right: 5px;
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  .reveal-left {
    transform: translate3d(-35px, 0, 0);
  }
  .reveal-right {
    transform: translate3d(35px, 0, 0);
  }
}

/* ==========================================================
   HARDWARE-ACCELERATED SCROLL REVEAL ANIMATIONS
   ========================================================== */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up,
.reveal-scale {
  opacity: 0;
  will-change: transform, opacity, filter;
  transition: 
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}

/* Initial States */
.reveal-left {
  transform: translate3d(-70px, 0, 0);
  filter: blur(4px);
}

.reveal-right {
  transform: translate3d(70px, 0, 0);
  filter: blur(4px);
}

.reveal-up {
  transform: translate3d(0, 45px, 0);
  filter: blur(4px);
}

.reveal-scale {
  transform: scale(0.85);
  filter: blur(4px);
}

/* Active / Revealed States */
.reveal-left.is-revealed,
.reveal-right.is-revealed,
.reveal-up.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.reveal-scale.is-revealed {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Micro-interactions */
.counter-item {
  transition: transform 0.3s ease;
}
.counter-item:hover {
  transform: translateY(-4px);
}

.payment-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.payment-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  border-color: #cbd5e1;
}

/* Accessibility: Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-up,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .floating-badge-1,
  .floating-badge-2,
  .shape-blob-1,
  .shape-blob-2,
  .why-us-center-img .center-img-glow {
    animation: none !important;
  }
}

/* ==========================================================
   OUR SOFTWARE (আমাদের সফটওয়্যার) SHOWCASE STYLES
   ========================================================== */
.software-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 60%, #172554 100%);
  color: #ffffff;
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.software-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, rgba(124, 58, 237, 0.15) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.software-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 16px;
}

.software-breadcrumb a {
  color: #cbd5e1;
}

.software-breadcrumb a:hover {
  color: #38bdf8;
}

.software-breadcrumb span {
  color: #64748b;
}

.software-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.software-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #ffffff 40%, #bae6fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.software-hero p {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Category Filter Bar */
.software-filter-wrapper {
  padding: 30px 0 10px;
  display: flex;
  justify-content: center;
}

.software-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  background: #e2e8f0;
  color: var(--primary);
  border-color: #cbd5e1;
}

.filter-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

/* Software Listing Grid */
.software-section {
  padding: 40px 0 80px;
  background: #f8fafc;
  min-height: 60vh;
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
  margin-top: 25px;
}

.software-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.software-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}

.software-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
}

.software-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.software-card:hover .software-thumb img {
  transform: scale(1.06);
}

.software-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.software-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.software-title {
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.software-title a {
  color: inherit;
}

.software-title a:hover {
  color: var(--primary);
}

.software-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.software-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.tech-tag {
  background: #f1f5f9;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.software-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.btn-software-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: #f8fafc;
  color: var(--primary);
  border: 1.5px solid #dbeafe;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-software-details:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-software-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
}

.btn-software-demo:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
  transform: translateY(-2px);
}

/* ==========================================================
   SOFTWARE DETAILS PAGE STYLES
   ========================================================== */
.software-details-section {
  padding: 50px 0 80px;
  background: #f8fafc;
}

.details-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.details-main {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  padding: 36px;
}

.details-preview-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #0f172a;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}

.details-preview-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.details-headline-box {
  margin-bottom: 24px;
}

.details-headline-box .cat-tag {
  display: inline-block;
  background: #eff6ff;
  color: var(--primary);
  border: 1px solid #bfdbfe;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.details-headline-box h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 12px;
}

.details-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin: 30px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.details-section-title i {
  color: var(--primary);
}

.details-description-text {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.85;
}

.details-description-text p {
  margin-bottom: 16px;
}

/* Feature Checklist */
.features-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.feature-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8fafc;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.feature-check-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: #ecfdf5;
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: 2px;
}

.feature-check-text {
  font-size: 0.98rem;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.5;
}

/* Details Sidebar */
.details-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-box {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.sidebar-box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-box h3 i {
  color: var(--primary);
}

.demo-access-card {
  background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
  color: #ffffff;
  border-color: #312e81;
}

.demo-access-card h3 {
  color: #ffffff;
}

.demo-access-card h3 i {
  color: #38bdf8;
}

.demo-info-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.demo-info-label {
  font-size: 0.85rem;
  color: #94a3b8;
}

.demo-info-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: #38bdf8;
  font-family: monospace;
}

.btn-sidebar-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
  margin-top: 14px;
  transition: var(--transition);
}

.btn-sidebar-demo:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff;
  transform: translateY(-2px);
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 0.92rem;
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-name {
  color: #64748b;
}

.spec-value {
  font-weight: 600;
  color: #0f172a;
}

.btn-cta-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.btn-cta-whatsapp:hover {
  background: #1eb956;
  color: #ffffff;
}

.btn-cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  background: #f1f5f9;
  color: var(--dark);
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: var(--transition);
}

.btn-cta-call:hover {
  background: var(--dark);
  color: #ffffff;
  border-color: var(--dark);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .details-layout {
    grid-template-columns: 1fr;
  }
  .software-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 640px) {
  .software-grid {
    grid-template-columns: 1fr;
  }
  .details-main {
    padding: 20px;
  }
  .details-headline-box h1 {
    font-size: 1.5rem;
  }
  .software-card-actions {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   CONTACT US (যোগাযোগ) PAGE STYLES
   ========================================================== */
.contact-section {
  padding: 60px 0 80px;
  background: #f8fafc;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-intro-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.contact-intro-box h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.contact-intro-box p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-channels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-channel-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-channel-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.channel-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.channel-icon.phone { background: #eff6ff; color: #2563eb; }
.channel-icon.email { background: #fdf2f8; color: #db2777; }
.channel-icon.address { background: #f5f3ff; color: #7c3aed; }
.channel-icon.whatsapp { background: #ecfdf5; color: #10b981; }
.channel-icon.clock { background: #fff7ed; color: #ea580c; }

.channel-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.channel-content p,
.channel-content a {
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.6;
}

.channel-content a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Contact Form Card */
.contact-form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-form-card p.subtitle {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 28px;
}

.form-alert {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 500;
}

.form-alert.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-alert.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 8px;
}

.contact-form .form-label span.req {
  color: #ef4444;
}

.contact-form .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-size: 1rem;
  color: var(--dark);
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-contact-submit {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

/* Map Section */
.map-section {
  padding: 0 0 80px;
  background: #f8fafc;
}

.map-wrapper {
  background: #ffffff;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 14px;
  display: block;
}

@media (max-width: 991px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 20px;
  }
}

/* ==========================================================
   PROJECT TRACKING (প্রজেক্ট ট্র্যাকিং) STYLES
   ========================================================== */
.track-section {
  padding: 60px 0 90px;
  background: #f8fafc;
  min-height: 65vh;
}

.track-search-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.track-search-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.track-search-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 28px;
}

.track-search-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  text-align: left;
}

.track-search-form .form-control {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  font-size: 0.98rem;
  color: var(--dark);
}

.track-search-form .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.btn-track-submit {
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-track-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

/* Tracking Result Card */
.track-result-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.track-result-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-bottom: 30px;
}

.track-result-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 30px 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.track-result-title h3 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.track-client-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.track-code-badge {
  background: rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
}

.track-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-full);
}

.status-development { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.status-planning { background: #fdf4ff; color: #a21caf; border: 1px solid #f5d0fe; }
.status-testing { background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; }
.status-review { background: #fefce8; color: #a16207; border: 1px solid #fef08a; }
.status-completed { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.status-initiated { background: #f1f5f9; color: #334155; border: 1px solid #cbd5e1; }
.status-on_hold { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* Progress Stepper */
.track-progress-container {
  padding: 36px;
  border-bottom: 1px solid #f1f5f9;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.progress-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.progress-percentage {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.track-progress-track {
  width: 100%;
  height: 14px;
  background: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 36px;
}

.track-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb 0%, #10b981 100%);
  border-radius: var(--radius-full);
  transition: width 0.8s ease-in-out;
}

/* Stepper Timeline */
.stepper-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  gap: 10px;
}

.stepper-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: #e2e8f0;
  z-index: 1;
}

.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 10px;
  transition: var(--transition);
}

.step-node.done .step-circle {
  background: #10b981;
  border-color: #10b981;
  color: #ffffff;
}

.step-node.active .step-circle {
  background: var(--primary);
  border-color: #93c5fd;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.step-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.4;
}

.step-node.done .step-label,
.step-node.active .step-label {
  color: var(--dark);
  font-weight: 700;
}

/* Tracking Details Body */
.track-result-body {
  padding: 36px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

.track-info-section h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.track-info-section h4 i {
  color: var(--primary);
}

.track-notes-box {
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  color: #1e3a8a;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.track-dates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.track-date-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 18px;
}

.track-date-card span {
  font-size: 0.82rem;
  color: #64748b;
  display: block;
  margin-bottom: 4px;
}

.track-date-card strong {
  font-size: 1rem;
  color: #0f172a;
}

/* Agreement Doc Card */
.agreement-card {
  background: #fdf4ff;
  border: 1.5px dashed #d946ef;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.agreement-icon-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.agreement-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fae8ff;
  color: #c026d3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.btn-doc-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #c026d3;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
}

.btn-doc-download:hover {
  background: #a21caf;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(192, 38, 211, 0.35);
}

/* Financial Card */
.track-financial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.financial-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 0.95rem;
}

.financial-row:last-child {
  border-bottom: none;
}

.financial-row.due {
  color: #dc2626;
  font-weight: 700;
  font-size: 1.05rem;
}

@media (max-width: 860px) {
  .track-search-form {
    grid-template-columns: 1fr;
  }
  .track-result-body {
    grid-template-columns: 1fr;
  }
  .stepper-timeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stepper-timeline::before {
    display: none;
  }
  .step-node {
    flex-direction: row;
    gap: 16px;
    text-align: left;
  }
  .step-circle {
    margin-bottom: 0;
    min-width: 42px;
  }
}



