/* ============================================================
   SOFTCROUD TECHNOLOGY — style.css
   Version: 3.0 | Author: Softcroud Technology
============================================================ */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary:        #0047FF;
  --primary-dark:   #0035CC;
  --primary-light:  #EEF2FF;
  --accent:         #00D4FF;
  --accent2:        #FF6B35;
  --green:          #22C55E;
  --dark:           #0A0F1E;
  --dark2:          #111827;
  --mid:            #1E2740;
  --text:           #374151;
  --text-light:     #6B7280;
  --white:          #FFFFFF;
  --off-white:      #F8FAFF;
  --border:         #E5E9F5;
  --radius:         16px;
  --radius-sm:      10px;
  --shadow:         0 8px 32px rgba(0,71,255,0.10);
  --shadow-lg:      0 20px 60px rgba(0,71,255,0.15);
  --font-head:      'Syne', sans-serif;
  --font-body:      'DM Sans', sans-serif;
  --nav-h:          72px;
  --transition:     all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  padding-top: var(--nav-h);
  user-select: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  user-select: none;
  pointer-events: none;
}

a { text-decoration: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.2; }
section { padding: 90px 0; }

/* ===== UTILITY CLASSES ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title span { color: var(--primary); }

.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== BUTTONS ===== */
.btn-sc-primary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--primary);
  color: var(--white) !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 25px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,71,255,0.35);
  text-decoration: none;
  white-space: nowrap;
}
.btn-sc-primary:hover {
  background: var(--primary-dark);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,71,255,0.45);
}

.btn-sc-outline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 25px;
  border-radius: 100px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-sc-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sc-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-sc-white:hover {
  background: var(--off-white);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
============================================================ */
.sc-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229,233,245,0.9);
  transition: var(--transition);
}
.sc-navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0,71,255,0.09);
  height: 62px;
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand */
.sc-brand { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.sc-brand img { height: 40px; width: auto; object-fit: contain; }
.sc-brand-text { font-family: var(--font-head); font-weight: 800; font-size: 21px; color: var(--dark); }
.sc-brand-text span { color: var(--primary); }

/* Desktop links */
.sc-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
  gap: 2px;
}
.sc-nav-links > li { position: relative; }
.sc-nav-links > li > a,
.sc-nav-links > li > button {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 13px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}
.sc-nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 13px; right: 13px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.sc-nav-links > li > a:hover,
.sc-nav-links > li > button:hover {
  color: var(--primary);
  background: rgba(0,71,255,0.06);
}
.sc-nav-links > li > a:hover::after { transform: scaleX(1); }

.sc-arrow {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.sc-nav-links > li.open .sc-arrow { transform: rotate(180deg); }

/* CTA pill in nav */
.sc-nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 100px !important;
  padding: 9px 22px !important;
  box-shadow: 0 4px 14px rgba(0,71,255,0.3);
  font-size: 13.5px !important;
}
.sc-nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,71,255,0.4) !important;
}
.sc-nav-cta::after { display: none !important; }

/* Dropdown */
.sc-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,71,255,0.12);
  padding: 8px;
  min-width: 230px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 100;
}
.sc-nav-links > li.open .sc-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.sc-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.sc-dropdown a:hover {
  background: rgba(0,71,255,0.07);
  color: var(--primary);
  padding-left: 18px;
}
.sc-dropdown a i { font-size: 14px; color: var(--primary); flex-shrink: 0; width: 18px; text-align: center; }
.drop-divider { height: 1px; background: var(--border); margin: 6px 8px; }

/* Hamburger */
.sc-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: rgba(0,71,255,0.06);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 9px;
  flex-shrink: 0;
  transition: var(--transition);
}
.sc-hamburger:hover { background: rgba(0,71,255,0.12); }
.sc-hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.sc-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sc-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.sc-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.sc-mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  z-index: 9998;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}
.sc-mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sc-mobile-menu.scrolled-top { top: 62px; max-height: calc(100vh - 62px); }

.sc-mob-inner { padding: 16px 18px 24px; }

.sc-mob-item { border-radius: 12px; margin-bottom: 3px; }

.sc-mob-link,
.sc-mob-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  padding: 13px 16px;
  border-radius: 12px;
  transition: var(--transition);
  text-decoration: none;
}
.sc-mob-link:hover, .sc-mob-toggle:hover { background: rgba(0,71,255,0.06); color: var(--primary); }

.sc-mob-arrow {
  display: inline-flex;
  width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(0,71,255,0.08);
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  font-size: 11px;
  color: var(--primary);
}
.sc-mob-toggle.open .sc-mob-arrow { transform: rotate(180deg); }

.sc-mob-submenu { display: none; padding: 4px 8px 8px; }
.sc-mob-submenu.open { display: block; }
.sc-mob-submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 11px 14px;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
}
.sc-mob-submenu a:hover { background: rgba(0,71,255,0.08); color: var(--primary); }
.sc-mob-submenu a i { font-size: 14px; color: var(--primary); flex-shrink: 0; width: 18px; text-align: center; }

.sc-mob-divider { height: 1px; background: var(--border); margin: 12px 0; }

.sc-mob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--primary);
  color: #fff !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 15px;
  border-radius: 14px;
  text-decoration: none;
  margin-top: 10px;
  box-shadow: 0 4px 20px rgba(0,71,255,0.3);
  transition: var(--transition);
}
.sc-mob-cta:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,71,255,0.4); }

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #F0F4FF 0%, #EEF2FF 45%, #F0F8FF 100%);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(0,71,255,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 22px;
  box-shadow: 0 2px 12px rgba(0,71,255,0.08);
  animation: fadeInDown 0.7s ease both;
}
.hero-badge .live-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-titles {
  font-size: clamp(32px, 5.5vw, 38px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-titles .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.hero-titles .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineReveal 0.8s ease 0.9s forwards;
}
@keyframes lineReveal { to { transform: scaleX(1); } }

.hero-sub {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 500px;
  line-height: 1.75;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-checklist {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
}
.hero-check {
  width: 20px; height: 20px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: white; font-size: 10px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.8s ease 0.5s both;
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 3px;
}
.stat-num span { color: var(--primary); }
.stat-lbl { font-size: 12.5px; color: var(--text-light); font-weight: 500; }

/* Hero image */
.hero-img-wrap {
  position: relative;
  animation: fadeInRight 0.9s ease 0.2s both;
}
.hero-img-wrap img { border-radius: 24px; width: 100%; }

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
}
.float-card.c1 { top: 24px; left: -18px; animation: floatCard 3s ease-in-out infinite; }
.float-card.c2 { bottom: 50px; right: -18px; animation: floatCard 3s ease-in-out 1.5s infinite; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.fc-icon.blue { background: var(--primary-light); }
.fc-icon.green { background: #DCFCE7; }
.fc-text strong { display: block; font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--dark); }
.fc-text span { font-size: 11px; color: var(--text-light); }

/* ============================================================
   TRUSTED TECH BAR
============================================================ */
.trust-bar {
  padding: 32px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  justify-self: center;
}
.trust-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
  justify-self: center;
}
.tech-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}
.tech-pill:hover { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }
.tech-pill i { font-size: 15px; }

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section { background: var(--off-white); }

.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 20px; box-shadow: var(--shadow); width: 100%; object-fit: cover; }

.about-badge {
  position: absolute;
  bottom: -20px; right: -16px;
  background: var(--primary);
  color: var(--white);
  border-radius: 16px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0,71,255,0.35);
}
.about-badge strong { display: block; font-family: var(--font-head); font-size: 34px; font-weight: 800; line-height: 1; }
.about-badge span { font-size: 12px; opacity: 0.85; font-weight: 500; }

.about-check-list {
  list-style: none;
  padding: 0; margin: 22px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}
.about-check-list li {
  display: flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 500; color: var(--text);
}
.about-check-list li i { color: var(--primary); font-size: 15px; flex-shrink: 0; }

.founder-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 4px 16px rgba(0,71,255,0.06);
  margin-top: 22px;
}
.founder-strip img.founder-pic { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary-light); flex-shrink: 0; }
.founder-strip .finfo strong { display: block; font-family: var(--font-head); font-weight: 700; color: var(--dark); font-size: 15px; }
.founder-strip .finfo span { font-size: 12px; color: var(--text-light); }
.founder-strip img.sig { max-height: 32px; margin-left: auto; opacity: 0.65; }

/* ============================================================
   SERVICES SECTION
============================================================ */
.services-section { background: var(--white); }

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 26px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.svc-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 56px; height: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
  transition: var(--transition);
}
.svc-card:hover .svc-icon { background: var(--primary); transform: scale(1.08); }

.svc-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.svc-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; margin: 0; }

.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-size: 13.5px; font-weight: 700;
  color: var(--primary); text-decoration: none;
  font-family: var(--font-head);
  transition: var(--transition);
}
.svc-link:hover { gap: 10px; }

/* ============================================================
   TECH STACK SECTION (dark bg)
============================================================ */
.tech-section {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.tech-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,71,255,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.tech-section .section-title { color: var(--white); }
.tech-section .section-subtitle { color: rgba(255,255,255,0.6); text-align: left; margin: 0 0 0; }
.tech-section .section-label { background: rgba(255,255,255,0.1); color: var(--accent); }
.tech-section .section-label::before { background: var(--accent); }

.tool-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 13.5px; font-weight: 600;
  transition: var(--transition);
  cursor: default;
}
.tool-pill:hover {
  background: var(--primary); border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,71,255,0.4);
}
.tools-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.tech-img-wrap img { border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.35); width: 100%; }

/* ============================================================
   PROGRESS / BUSINESS SUCCESS
============================================================ */
.progress-section { background: var(--off-white); }

.prog-item { margin-bottom: 28px; }
.prog-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.prog-name { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; color: var(--dark); }
.prog-pct { font-family: var(--font-head); font-weight: 800; font-size: 15.5px; color: var(--primary); }
.prog-desc { font-size: 13.5px; color: var(--text-light); margin-bottom: 9px; }
.prog-track { background: var(--border); border-radius: 100px; height: 8px; overflow: hidden; }
.prog-fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 0;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   TEAM SECTION
============================================================ */
.team-section { background: var(--white); overflow: hidden; }

.team-slider-wrap { overflow: hidden; position: relative; }
.team-track {
  display: flex; gap: 24px;
  width: max-content;
  animation: autoScroll 28s linear infinite;
}
.team-slider-wrap:hover .team-track { animation-play-state: paused; }
@keyframes autoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 22px;
  min-width: 200px;
  text-align: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.tm-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-6px); }
.tm-card img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; border: 3px solid var(--primary-light); transition: var(--transition); }
.tm-card:hover img { border-color: var(--primary); }
.tm-card h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.tm-card .role { font-size: 12.5px; color: var(--primary); font-weight: 600; }

/* ============================================================
   FAQ SECTION
============================================================ */
.faq-section { background: var(--off-white); }

.faq-accordion .accordion-item {
  background: var(--white);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-accordion .accordion-item:hover { border-color: var(--primary) !important; box-shadow: 0 4px 16px rgba(0,71,255,0.08); }
.faq-accordion .accordion-button {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--dark);
  background: var(--white);
  border: none;
  padding: 20px 22px;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--primary-light);
}
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230047FF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-body { font-size: 14.5px; color: var(--text-light); padding: 14px 22px 22px; line-height: 1.75; }

/* ============================================================
   BLOG SECTION
============================================================ */
.blog-section { background: var(--white); }

.blog-card {
  background: var(--white);
  border: 1px solid var(--border) !important;
  border-radius: 20px !important;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: transparent !important; box-shadow: var(--shadow-lg) !important; transform: translateY(-6px); }

.blog-thumb { overflow: hidden; height: 210px; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }

.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-tag { display: inline-block; background: var(--primary-light); color: var(--primary); font-size: 11.5px; font-weight: 700; padding: 4px 12px; border-radius: 100px; margin-bottom: 10px; letter-spacing: 0.5px; }
.blog-body h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.blog-body p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; flex: 1; margin-bottom: 18px; }
.blog-read {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 700; color: var(--primary);
  text-decoration: none; font-family: var(--font-head);
  transition: var(--transition);
}
.blog-read:hover { gap: 10px; }

/* ============================================================
   CTA STRIP
============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--primary) 0%, #0035CC 55%, #002299 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-strip h2 { font-size: clamp(26px, 3.8vw, 42px); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.cta-strip p { font-size: 16px; color: rgba(255,255,255,0.8); max-width: 520px; margin-bottom: 30px; }
.cta-contact { font-size: 14.5px; color: rgba(255,255,255,0.9); }
.cta-contact a { color: inherit; text-decoration: none; font-weight: 600; }
.cta-contact a:hover { color: var(--accent); }

/* ============================================================
   FOOTER
============================================================ */
.sc-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
}
.sc-footer::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(0,71,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-logo { max-height: 44px; width: auto; margin-bottom: 14px; }
.footer-brand-text { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-brand-text span { color: var(--accent); }
.footer-about { font-size: 13.5px; line-height: 1.7; }

.footer-heading { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }

.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.55); text-decoration: none; transition: var(--transition); display: inline-flex; align-items: center; gap: 7px; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13.5px; }
.footer-contact-item i { color: var(--accent); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.6); text-decoration: none; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.soc-btn {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.09);
}
.soc-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; transition: var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   FLOATING BUTTONS
============================================================ */
.wa-float {
  position: fixed;
  bottom: 86px; right: 24px;
  width: 48px; height: 48px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  text-decoration: none;
  z-index: 999;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.wa-float:hover { background: #1ebe5d; color: var(--white); transform: translateY(-3px) scale(1.08); }

.scroll-top-btn {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  cursor: pointer;
  z-index: 999;
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,71,255,0.4);
  transition: var(--transition);
  opacity: 0; transform: translateY(16px);
}
.scroll-top-btn.show { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-3px); }

/* ============================================================
   KEYFRAMES
============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .sc-nav-links { display: none; }
  .sc-hamburger { display: flex; }
  :root { --nav-h: 64px; }
}

@media (max-width: 991px) {
  section { padding: 70px 0; }
  .hero-checklist { grid-template-columns: 1fr; }
  .about-check-list { grid-template-columns: 1fr; }
  .float-card { display: none; }
  .about-badge { bottom: -10px; right: -10px; padding: 14px 16px; }
  .about-badge strong { font-size: 26px; }
}

@media (max-width: 767px) {
  section { padding: 56px 0; }
  .hero-section { padding: 30px 0 50px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 18px; flex-wrap: wrap; }
  .trust-bar .d-flex { flex-direction: column; gap: 14px; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
  .nav-inner { padding: 0 14px; }
  .sc-mob-inner { padding: 12px 14px 20px; }
  .hero-stats { flex-direction: column; gap: 14px; }
  .cta-strip { padding: 56px 0; }
  .sc-footer { padding: 52px 0 24px; }
}


/* =============PAGE HERO SECTION============= */
.page-hero{
background:url("asset/images/softcroud_background.png") center/cover no-repeat;
min-height:55vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
color:#fff;
}

.page-hero::before{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.75);
}

.page-hero .container{
position:relative;
z-index:2;
}

.hero-title{
font-size:3rem;
font-weight:700;
}

/* =============ABOUT SECTION============= */
.about-section{
background:#f8f9fa;
}

.about-img{
width:100%;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.features{
background:#fff;
}

.feature-box{
background:#f8f9fa;
padding:30px;
border-radius:15px;
height:100%;
}

.cta{
background:#0d6efd;
color:#fff;
text-align:center;
padding:70px 20px;
}

.cta a{
background:#fff;
color:#0d6efd;
padding:12px 35px;
border-radius:30px;
text-decoration:none;
font-weight:600;
}

/* crm-software-development */

.service-section{
background:#f8f9fa;
}

.service-img{
width:100%;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.features{
background:#fff;
}

.feature-box{
background:#f8f9fa;
padding:30px;
border-radius:15px;
height:100%;
}

.process{
background:#f8f9fa;
}

.process-box{
text-align:center;
padding:30px;
}

.process-number{
font-size:35px;
font-weight:700;
color:#0d6efd;
}

.cta{
background:#0d6efd;
color:#fff;
text-align:center;
padding:70px 20px;
}

.cta a{
background:#fff;
color:#0d6efd;
padding:12px 35px;
border-radius:30px;
text-decoration:none;
font-weight:600;
}
/* HERO */

.contact-hero{
/*background:url("/asset/images/softcroud_background.png") center/cover no-repeat;*/
height:1rem;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
color:#fff;
}

.contact-hero::before{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
}

.contact-hero .container{
position:relative;
z-index:2;
}

.hero-title{
font-size:2.8rem;
font-weight:700;
}

/* CONTACT SECTION */

.contact-section{
background:#f8f9fa;
}

.contact-card{
background:#fff;
padding:40px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* FORM */

.form-control{
border-radius:8px;
padding:12px;
}

.btn-primary{
padding:12px 30px;
font-weight:600;
}

/* CONTACT INFO */

.contact-info{
background:#0d6efd;
color:#fff;
padding:40px;
border-radius:15px;
height:100%;
}

.contact-info h4{
margin-bottom:20px;
}

.contact-item{
display:flex;
align-items:center;
margin-bottom:20px;
}

.contact-item i{
font-size:20px;
margin-right:12px;
}

/* SOCIAL */

.social-icons a{
display:inline-flex;
align-items:center;
justify-content:center;
width:40px;
height:40px;
border-radius:50%;
background:#fff;
color:#0d6efd;
margin-right:10px;
}

.social-icons a:hover{
background:#39c44a;
color:#fff;
}

/* MAP */

.map-section iframe{
width:100%;
height:350px;
border:0;
}
/*image eluction*/
.about-img,
.modern-img,
.tech-progress-img,
.business-img{
  max-width:100%;
  height:auto;
  animation:floaty 4s ease-in-out infinite;
  transition:0.4s ease;
  border-radius:20px;
  /*animation:floaty 4s ease-in-out infinite, glow 4s ease-in-out infinite;*/
}