/* ============================================================
   SpedMic — Main Stylesheet
   Design: Boostly CRM Theme Inspired
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary:       #2563eb;
  --primary-dark:  #1d4ed8;
  --primary-light: #3b82f6;
  --secondary:     #0f172a;
  --accent:        #7c3aed;
  --success:       #10b981;
  --white:         #ffffff;
  --off-white:     #f8fafc;
  --light-gray:    #f1f5f9;
  --border:        #e2e8f0;
  --text:          #1e293b;
  --text-muted:    #64748b;
  --text-light:    #94a3b8;
  --topbar-bg:     #0f172a;
  --header-bg:     #ffffff;
  --footer-bg:     #5b21b6;
  --footer-bottom: #4c1d95;
  --radius-sm:     6px;
  --radius:        10px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --radius-pill:   100px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --shadow:        0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.15);
  --shadow-xl:     0 24px 60px rgba(0,0,0,.18);
  --transition:    .28s ease;
  --header-h:      70px;
  --ff-head:       'Manrope', sans-serif;
  --ff-body:       'Inter', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--ff-head); line-height: 1.25; color: var(--text); font-weight: 700; }
h1 { font-size: clamp(2.2rem,4.5vw,3.6rem); }
h2 { font-size: clamp(1.7rem,3vw,2.6rem); }
h3 { font-size: clamp(1.2rem,2vw,1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-muted); line-height: 1.75; }

/* ---- Utilities ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-fluid { width: 100%; padding: 0 40px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.row > [class*="col-"] { padding: 0 12px; }

/* Grid cols */
.col-12 { width: 100%; }
.col-6  { width: 50%; }
.col-4  { width: 33.333%; }
.col-3  { width: 25%; }

@media(min-width:576px)  { .col-sm-6{width:50%;} .col-sm-4{width:33.333%;} }
@media(min-width:768px)  { .col-md-6{width:50%;} .col-md-4{width:33.333%;} .col-md-3{width:25%;} }
@media(min-width:992px)  { .col-lg-6{width:50%;} .col-lg-4{width:33.333%;} .col-lg-3{width:25%;} .col-lg-5{width:41.666%;} .col-lg-7{width:58.333%;} .col-lg-8{width:66.666%;} .col-lg-10{width:83.333%;} }
@media(min-width:1200px) { .col-xl-3{width:25%;} .col-xl-4{width:33.333%;} .col-xl-6{width:50%;} .col-xl-7{width:58.333%;} .col-xl-5{width:41.666%;} .col-xl-8{width:66.666%;} .col-xl-9{width:75%;} .col-xl-10{width:83.333%;} }

.text-center { text-align: center; }
.text-white  { color: #fff !important; }
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-25 { margin-top: 25px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.pt-60  { padding-top: 60px; }
.pt-80  { padding-top: 80px; }
.pt-100 { padding-top: 100px; }
.pt-120 { padding-top: 120px; }
.pb-60  { padding-bottom: 60px; }
.pb-80  { padding-bottom: 80px; }
.pb-100 { padding-bottom: 100px; }
.pb-120 { padding-bottom: 120px; }
.d-none { display: none !important; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-end { justify-content: flex-end; }
.gap-3  { gap: 12px; }
.gap-4  { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }
.img-fluid { max-width: 100%; height: auto; }
.rounded-3 { border-radius: var(--radius-lg); }
.ms-2 { margin-left: 8px; }
.fs-5 { font-size: 1.1rem; }
.fw-bold { font-weight: 700; }
.mx-auto { margin-left: auto; margin-right: auto; }
.small { font-size: .85rem; }

@media(min-width:768px) { .d-md-inline-flex { display: inline-flex !important; } }
@media(min-width:992px) { .d-lg-none { display: none !important; } .d-lg-block { display: block !important; } .d-lg-flex { display: flex !important; } }
@media(min-width:1200px) { .d-xl-block { display: block !important; } }

/* ---- Buttons ---- */
.theme-btn, .theme-btn-outline, .theme-btn-outline-white, .theme-btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 600; font-size: .9rem;
  padding: 13px 26px; border-radius: var(--radius-pill);
  transition: all var(--transition); white-space: nowrap; cursor: pointer; letter-spacing: .01em;
}
.theme-btn {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
}
.theme-btn:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,.45); }
.theme-btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.theme-btn-outline:hover { background: var(--primary); color: #fff; }
.theme-btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.theme-btn-outline-white:hover { background: rgba(255,255,255,.15); color: #fff; border-color: #fff; }
.theme-btn-white {
  background: #fff; color: var(--primary); font-weight: 700;
}
.theme-btn-white:hover { background: var(--off-white); color: var(--primary-dark); }
.theme-btn i, .theme-btn-outline i, .theme-btn-outline-white i, .theme-btn-white i {
  font-size: .8rem; transition: transform var(--transition);
}
.theme-btn:hover i, .theme-btn-outline:hover i,
.theme-btn-outline-white:hover i, .theme-btn-white:hover i { transform: translateX(4px); }

/* ---- Section Title ---- */
.section-title { margin-bottom: 16px; }
.section-subtitle {
  display: inline-block; font-family: var(--ff-head); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--primary);
  margin-bottom: 14px;
}
.section-title h2 span { color: var(--primary); }
.section-title.text-center { text-align: center; }

/* ---- Checklist ---- */
.check-list { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: .95rem; }
.check-list li i { color: var(--success); font-size: 1.1rem; }

/* ================================================================
   PRELOADER
   ================================================================ */
.preloader {
  position: fixed; inset: 0; background: var(--secondary); z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s, visibility .5s;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo { height: 42px; margin: 0 auto 20px; }
.preloader-spinner {
  width: 44px; height: 44px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.15);
  border-top-color: var(--primary); margin: 0 auto;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ================================================================
   TOP BAR
   ================================================================ */
.topbar {
  background: var(--topbar-bg); color: rgba(255,255,255,.75);
  font-size: .8rem; padding: 9px 0;
}
.topbar a { color: rgba(255,255,255,.75); }
.topbar a:hover { color: #fff; }
.topbar-left ul { display: flex; align-items: center; gap: 20px; }
.topbar-left ul li { display: flex; align-items: center; gap: 6px; }
.topbar-left ul li i { color: var(--primary-light); font-size: .85rem; }
.topbar-right ul { display: flex; align-items: center; gap: 10px; }
.topbar-right ul li a {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  font-size: .75rem; transition: all var(--transition);
}
.topbar-right ul li a:hover { background: var(--primary); color: #fff; }

/* ================================================================
   HEADER
   ================================================================ */
.header-area { position: sticky; top: 0; z-index: 999; }
.header-bottom {
  background: var(--header-bg);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  transition: all var(--transition);
}
.header-bottom .container-fluid {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 24px;
}
.logo img { height: 36px; }
.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav ul li a {
  padding: 8px 16px; border-radius: var(--radius);
  font-size: .9rem; font-weight: 600; color: var(--text);
  font-family: var(--ff-head); transition: all var(--transition);
  display: block;
}
.main-nav ul li a:hover,
.main-nav ul li.active a {
  color: var(--primary); background: rgba(37,99,235,.07);
}
.header-right-btn { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger-btn {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--light-gray); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px; padding: 8px;
}
.hamburger-btn span {
  display: block; width: 20px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
  background: #fff; z-index: 9998; padding: 0 24px 40px;
  box-shadow: var(--shadow-xl); overflow-y: auto; transition: right var(--transition);
  display: flex; flex-direction: column;
}
.mobile-nav.open { right: 0; }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-bottom: 1px solid var(--border); margin-bottom: 24px;
}
.mobile-nav-header img { height: 32px; }
#closeNav {
  width: 36px; height: 36px; border-radius: 50%; background: var(--light-gray);
  display: flex; align-items: center; justify-content: center; color: var(--text); font-size: .9rem;
}
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-list li a {
  display: block; padding: 10px 14px; border-radius: var(--radius);
  font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border);
  font-family: var(--ff-head);
}
.mobile-nav-list li.active a, .mobile-nav-list li a:hover { color: var(--primary); background: rgba(37,99,235,.06); }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 9997; opacity: 0; visibility: hidden; transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.mobile-overlay.show { opacity: 1; visibility: visible; }

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb-area {
  background: linear-gradient(135deg, #1e1b4b 0%, #1d4ed8 60%, #0ea5e9 100%);
  padding: 90px 0 80px; position: relative; overflow: hidden;
}
.breadcrumb-area::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.breadcrumb-content { position: relative; z-index: 1; }
.breadcrumb-content h1 { color: #fff; margin-bottom: 14px; font-size: clamp(1.8rem,3.5vw,2.8rem); }
.breadcrumb-list { display: flex; align-items: center; justify-content: center; gap: 10px; }
.breadcrumb-list li { color: rgba(255,255,255,.7); font-size: .9rem; }
.breadcrumb-list li a { color: rgba(255,255,255,.85); }
.breadcrumb-list li a:hover { color: #fff; }
.breadcrumb-list li span { color: rgba(255,255,255,.5); }

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #1d4ed8 100%);
  padding: 120px 0 100px; position: relative; overflow: hidden; min-height: 100vh;
  display: flex; align-items: center;
}
.hero-bg-shape-1, .hero-bg-shape-2, .hero-bg-shape-3 {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-bg-shape-1 {
  width: 600px; height: 600px; top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(37,99,235,.25) 0%, transparent 70%);
}
.hero-bg-shape-2 {
  width: 400px; height: 400px; bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(124,58,237,.2) 0%, transparent 70%);
}
.hero-bg-shape-3 {
  width: 200px; height: 200px; top: 40%; left: 30%;
  background: radial-gradient(circle, rgba(14,165,233,.15) 0%, transparent 70%);
}
.hero-section .container { position: relative; z-index: 2; }
.hero-content { padding-right: 40px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9); font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: 7px 16px; border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-badge i { color: var(--primary-light); }
.hero-title { color: #fff; margin-bottom: 22px; font-weight: 800; line-height: 1.15; }
.hero-title span {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-text { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 36px; max-width: 520px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-trust { display: flex; align-items: center; gap: 14px; }
.hero-trust-imgs { display: flex; }
.hero-trust-imgs span {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.4); margin-right: -10px;
  overflow: hidden; background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: .8rem; font-weight: 700;
}
.hero-trust-text { padding-left: 16px; }
.hero-trust-text strong { display: block; color: #fff; font-size: .9rem; }
.hero-trust-text span { color: rgba(255,255,255,.6); font-size: .8rem; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-visual-card {
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-xl);
  padding: 28px; margin-bottom: 16px; transition: transform var(--transition);
}
.hero-visual-card:hover { transform: translateY(-4px); }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-stat {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 20px; text-align: center;
}
.hero-stat-num {
  font-family: var(--ff-head); font-size: 2rem; font-weight: 800; color: #fff; display: block; line-height: 1;
}
.hero-stat-lbl { color: rgba(255,255,255,.6); font-size: .78rem; margin-top: 4px; display: block; }
.hero-rating { text-align: center; padding: 20px; }
.hero-rating-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 8px; }
.hero-rating-num { display: block; font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.hero-rating-lbl { color: rgba(255,255,255,.6); font-size: .82rem; }

/* ================================================================
   BRAND / CLIENTS
   ================================================================ */
.brand-section { background: var(--off-white); padding: 50px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brand-label { text-align: center; margin-bottom: 28px; color: var(--text-light); font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.brand-track-wrap { overflow: hidden; }
.brand-track {
  display: flex; gap: 60px; align-items: center;
  animation: brandScroll 18s linear infinite;
  width: max-content;
}
.brand-track:hover { animation-play-state: paused; }
.brand-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-muted); font-family: var(--ff-head); font-weight: 700; font-size: 1rem;
  opacity: .6; transition: opacity var(--transition); white-space: nowrap;
}
.brand-item:hover { opacity: 1; }
.brand-item i { color: var(--primary); font-size: 1.3rem; }
@keyframes brandScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ================================================================
   SERVICE SECTION
   ================================================================ */
.service-section { padding: 100px 0; background: var(--white); }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; height: 100%; transition: all var(--transition); position: relative; overflow: hidden;
}
.service-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: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(135deg, #1e1b4b, #1d4ed8);
  border-color: transparent; color: #fff;
}
.service-card.featured .service-card-title { color: #fff; }
.service-card.featured p { color: rgba(255,255,255,.75); }
.service-card.featured .service-link { color: rgba(255,255,255,.9); }
.service-card.featured .service-icon-wrap { background: rgba(255,255,255,.1); }
.service-icon-wrap {
  width: 58px; height: 58px; border-radius: var(--radius-lg);
  background: rgba(37,99,235,.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 1.4rem; color: var(--primary);
}
.service-card-title { font-size: 1.1rem; margin-bottom: 12px; }
.service-card p { font-size: .9rem; line-height: 1.65; margin-bottom: 20px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .05em;
  font-family: var(--ff-head);
}
.service-link i { font-size: .7rem; transition: transform var(--transition); }
.service-link:hover i { transform: translateX(4px); }
.service-feature-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.service-feature-list li { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--text-muted); }
.service-feature-list li i { color: var(--success); font-size: .9rem; }

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section { padding: 100px 0; background: var(--off-white); }
.about-img-wrap { position: relative; display: inline-block; width: 100%; }
.about-img-wrap img { border-radius: var(--radius-xl); width: 100%; object-fit: cover; max-height: 520px; box-shadow: var(--shadow-lg); }
.about-exp-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; padding: 22px 26px; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow-lg); min-width: 120px;
}
.about-exp-badge .exp-num { display: block; font-size: 2.4rem; font-weight: 800; line-height: 1; }
.about-exp-badge .exp-label { font-size: .78rem; opacity: .85; line-height: 1.3; margin-top: 4px; display: block; }
.about-content { padding-left: 20px; }
.about-content h2 { margin-bottom: 22px; }
.about-content h2 span { color: var(--primary); }
.about-content p { margin-bottom: 16px; }
.about-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--text); }
.about-list li i { color: var(--success); font-size: 1.1rem; }

/* ================================================================
   COUNTER / STATS SECTION
   ================================================================ */
.counter-section {
  padding: 90px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1d4ed8 100%);
}
.counter-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.counter-section > .container { position: relative; z-index: 1; }
.counter-content .section-subtitle { color: rgba(255,255,255,.7); }
.counter-content h2 { color: #fff; }
.counter-content h2 span { color: #60a5fa; }
.counter-content p { color: rgba(255,255,255,.7); max-width: 440px; margin-top: 16px; }
.counter-card {
  text-align: center; padding: 40px 20px;
  border-left: 1px solid rgba(255,255,255,.1);
}
.counter-card:first-child { border-left: none; }
.counter-card h2 {
  font-size: 3.2rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,.8));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.counter-card p { color: rgba(255,255,255,.6); font-size: .88rem; }

/* ================================================================
   CHOOSE / FEATURES SECTION
   ================================================================ */
.choose-section { padding: 100px 0; }
.choose-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 24px;
  transition: all var(--transition); text-align: center; height: 100%;
}
.choose-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,.2); }
.choose-icon {
  width: 64px; height: 64px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(124,58,237,.1));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.5rem; color: var(--primary);
}
.choose-card h4 { margin-bottom: 10px; font-size: 1rem; }
.choose-card p { font-size: .88rem; line-height: 1.65; }

/* ================================================================
   PROCESS SECTION
   ================================================================ */
.process-section { padding: 100px 0; background: var(--off-white); }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.process-step:last-child { border-bottom: none; }
.process-step:hover .step-number { color: var(--primary); }
.step-number {
  font-family: var(--ff-head); font-size: 2rem; font-weight: 800;
  color: var(--border); min-width: 56px; line-height: 1;
  transition: color var(--transition);
}
.step-content h4 { margin-bottom: 6px; }
.step-content p { font-size: .9rem; }
.process-highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-xl); padding: 48px 36px; color: #fff; text-align: center;
}
.process-highlight .highlight-label { display: block; font-size: .82rem; opacity: .8; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .1em; }
.process-highlight .highlight-num { display: block; font-size: 5rem; font-weight: 800; line-height: 1; margin-bottom: 10px; }
.process-highlight .highlight-sub { display: block; font-size: .88rem; opacity: .8; }

/* ================================================================
   CASE STUDIES
   ================================================================ */
.case-section { padding: 100px 0; }
.case-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: all var(--transition); height: 100%;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.case-img { position: relative; overflow: hidden; }
.case-img img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s ease; }
.case-card:hover .case-img img { transform: scale(1.05); }
.case-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--primary); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill);
}
.case-content { padding: 24px; }
.case-content h4 { margin-bottom: 10px; font-size: 1rem; }
.case-content p { font-size: .88rem; color: var(--text-muted); margin-bottom: 16px; }
.case-tags-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill {
  font-size: .75rem; font-weight: 600; color: var(--primary);
  background: rgba(37,99,235,.08); border: 1px solid rgba(37,99,235,.2);
  padding: 4px 12px; border-radius: var(--radius-pill);
}

/* ================================================================
   TEAM SECTION
   ================================================================ */
.team-section {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
}
.team-card {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  transition: all var(--transition); background: rgba(255,255,255,.04);
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.4); border-color: rgba(255,255,255,.2); }
.team-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.team-info { padding: 20px; }
.team-info h5 { color: #fff; margin-bottom: 4px; }
.team-info span { color: rgba(255,255,255,.55); font-size: .82rem; }

/* ================================================================
   TESTIMONIAL SECTION
   ================================================================ */
.testimonial-section { padding: 100px 0; background: var(--off-white); }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px 30px;
  transition: all var(--transition); height: 100%;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-card.featured {
  background: linear-gradient(135deg, #1e1b4b, #1d4ed8);
  border-color: transparent;
}
.testimonial-card.featured p { color: rgba(255,255,255,.85); }
.testimonial-card.featured .t-author h6 { color: #fff; }
.testimonial-card.featured .t-author span { color: rgba(255,255,255,.6); }
.t-quote { font-size: 2rem; color: var(--primary); margin-bottom: 16px; line-height: 1; }
.testimonial-card.featured .t-quote { color: #60a5fa; }
.testimonial-card p { font-size: .95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.t-stars { color: #f59e0b; font-size: .85rem; margin-bottom: 20px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.t-author h6 { font-size: .92rem; margin-bottom: 2px; color: var(--text); }
.t-author span { font-size: .8rem; color: var(--text-light); }

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1e1b4b 0%, #1d4ed8 50%, #0ea5e9 100%);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section > .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section h2 span { color: #93c5fd; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 0; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact-home-section { padding: 100px 0; }
.contact-info-icon {
  width: 52px; height: 52px; border-radius: var(--radius-lg);
  background: rgba(37,99,235,.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 14px;
}
.contact-info-block h6 { font-size: .92rem; margin-bottom: 6px; }
.contact-info-block p, .contact-info-block a { font-size: .88rem; color: var(--text-muted); }
.contact-info-block a:hover { color: var(--primary); }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; margin-top: 30px; }
.contact-info-list .ci-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-list .ci-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: var(--radius);
  background: rgba(37,99,235,.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.contact-info-list h6 { font-size: .85rem; margin-bottom: 3px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.contact-info-list p, .contact-info-list a { font-size: .92rem; color: var(--text); }
.contact-info-list a:hover { color: var(--primary); }
.contact-form-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px 36px;
  box-shadow: var(--shadow);
}
.contact-form-box h3 { margin-bottom: 6px; }
.contact-form-box > p { font-size: .88rem; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; font-family: var(--ff-head); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: .9rem; color: var(--text);
  background: var(--off-white); transition: all var(--transition);
  font-family: var(--ff-body); outline: none; resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: .9rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.3); color: #065f46; }
.alert-danger  { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #991b1b; }
.map-box iframe { border-radius: var(--radius-xl); width: 100%; display: block; }

/* Contact page info cards */
.contact-info-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px 24px;
  transition: all var(--transition);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-info-card .card-icon {
  width: 60px; height: 60px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(124,58,237,.12));
  color: var(--primary); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto 16px;
}
.contact-info-card h5 { margin-bottom: 10px; }
.contact-info-card p, .contact-info-card a { font-size: .9rem; color: var(--text-muted); display: block; margin-bottom: 4px; }
.contact-info-card a:hover { color: var(--primary); }

/* ================================================================
   MISSION CARDS (About page)
   ================================================================ */
.mission-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; gap: 18px; align-items: flex-start;
  border-left: 4px solid var(--primary); transition: all var(--transition);
}
.mission-card:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.mission-icon { font-size: 1.5rem; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.mission-body h4 { margin-bottom: 8px; }
.mission-body p { font-size: .9rem; }

/* Service advantage boxes */
.service-advantage-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px 18px;
  transition: all var(--transition);
}
.service-advantage-box:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.adv-icon { font-size: 1.4rem; color: var(--primary); margin-bottom: 10px; }
.service-advantage-box h5 { font-size: .92rem; margin-bottom: 6px; }
.service-advantage-box p { font-size: .82rem; }

/* ================================================================
   LEGAL CONTENT (Privacy / Terms)
   ================================================================ */
.legal-area { padding: 80px 0 120px; }
.legal-content h2 { font-size: 1.4rem; margin: 36px 0 12px; color: var(--text); padding-bottom: 8px; border-bottom: 2px solid var(--light-gray); }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--text-muted); }
.legal-content p { margin-bottom: 14px; font-size: .95rem; line-height: 1.8; }
.legal-content ul { padding-left: 0; margin-bottom: 16px; }
.legal-content ul li { padding: 6px 0 6px 24px; position: relative; font-size: .92rem; color: var(--text-muted); border-bottom: 1px solid var(--light-gray); }
.legal-content ul li::before { content: '•'; position: absolute; left: 6px; color: var(--primary); font-size: 1.1rem; }
.legal-content a { color: var(--primary); }
.legal-content a:hover { text-decoration: underline; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer-area { background: var(--footer-bg); color: rgba(255,255,255,.7); }
.footer-main { padding: 80px 0 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo img { height: 36px; margin-bottom: 18px; }
.footer-about p { font-size: .88rem; line-height: 1.75; margin-bottom: 24px; }
.footer-newsletter { display: flex; border-radius: var(--radius-pill); overflow: hidden; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); }
.footer-newsletter input {
  flex: 1; padding: 12px 18px; background: none; border: none; outline: none;
  font-size: .88rem; color: #fff; font-family: var(--ff-body);
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter button {
  width: 46px; height: 46px; background: #fff; color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
  transition: background var(--transition);
}
.footer-newsletter button:hover { background: var(--primary-light); color: #fff; }
.footer-widget-title {
  color: #fff; font-family: var(--ff-head); font-size: .88rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: all var(--transition); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; }
.footer-contact-list li i { color: rgba(255,255,255,.5); font-size: .9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-list li a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-contact-list li a:hover { color: #fff; }
.footer-contact-list li span { color: rgba(255,255,255,.65); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.65); display: flex; align-items: center; justify-content: center;
  font-size: .82rem; transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-bottom { background: var(--footer-bottom); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .84rem; color: rgba(255,255,255,.5); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .84rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bottom-links a:hover { color: #fff; }

/* ================================================================
   WOW ANIMATION BASE
   ================================================================ */
.wow { visibility: hidden; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1199.98px) {
  .hero-content { padding-right: 20px; }
  .container-fluid { padding: 0 24px; }
}
@media (max-width: 991.98px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.9rem; }
  .hero-section { min-height: auto; padding: 80px 0; }
  .hero-content { padding-right: 0; margin-bottom: 40px; }
  .about-content { padding-left: 0; margin-top: 40px; }
  .about-exp-badge { right: 0; bottom: 0; }
  .counter-card { border-left: none; border-top: 1px solid rgba(255,255,255,.1); padding: 30px 20px; }
  .counter-card:first-child { border-top: none; }
  .contact-form-box { margin-top: 40px; }
  .topbar-left ul { gap: 12px; font-size: .75rem; }
}
@media (max-width: 767.98px) {
  .topbar { display: none; }
  .pt-120 { padding-top: 60px; }
  .pb-120 { padding-bottom: 60px; }
  .pt-100 { padding-top: 60px; }
  .pb-100 { padding-bottom: 60px; }
  .hero-stat-grid { grid-template-columns: 1fr 1fr; }
  .hero-badge { font-size: .72rem; }
  .process-highlight { padding: 36px 24px; }
  .process-highlight .highlight-num { font-size: 3.6rem; }
  .contact-form-box { padding: 28px 20px; }
  .breadcrumb-area { padding: 60px 0 50px; }
  .footer-main { padding: 50px 0 30px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .col-md-6, .col-md-3, .col-md-4 { width: 100%; }
  .row { margin: 0; }
  .row > [class*="col-"] { padding: 0; margin-bottom: 20px; }
}
@media (max-width: 575.98px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .theme-btn, .hero-btns .theme-btn-outline-white { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; }
  .cta-btns .theme-btn, .cta-btns .theme-btn-outline-white { width: 100%; justify-content: center; }
}
