@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Fraunces:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  /* ── Logo-matched palette ── */
  --blue:        #1847a0;   /* deep logo blue  */
  --blue-mid:    #2268c8;   /* mid logo blue   */
  --blue-light:  #4a9fe8;   /* bright blue     */
  --green:       #3a8c1e;   /* deep logo green */
  --green-mid:   #52b02a;   /* mid green       */
  --green-light: #7bc842;   /* bright lime-green from logo */

  /* accent = green (the "PRISES" half of the logo) */
  --accent:       var(--green-mid);
  --accent-light: #edf8e6;

  --white:    #ffffff;
  --off-white: #f3f7f0;       /* very faint green tint */
  --text:     #12200a;
  --muted:    #4d6640;
  --border:   #c8dfc0;

  --font-display: 'Fraunces', serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --shadow:    0 4px 24px rgba(24,71,160,0.10);
  --shadow-lg: 0 8px 40px rgba(24,71,160,0.16);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--text); overflow-x: hidden; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--blue-light); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 60px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow 0.3s ease;
}
nav.scrolled { box-shadow: var(--shadow); }

.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-name { font-size: 16px; font-weight: 800; color: var(--blue); letter-spacing: -0.3px; }
.nav-tagline { font-size: 9px; color: var(--muted); letter-spacing: 1.2px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 13px; font-weight: 600; color: var(--muted);
  text-decoration: none; padding: 7px 14px; border-radius: 7px;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: #e8f0fc; }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: var(--white) !important;
  padding: 8px 18px; margin-left: 6px; border-radius: 7px;
}
.nav-links .nav-cta:hover { background: linear-gradient(135deg, var(--blue-mid) 0%, var(--green) 100%) !important; }

.nav-msme {
  display: inline-flex; align-items: center; gap: 6px;
  background: #e8f5e0; border: 1px solid #b0d89a;
  color: var(--green); font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 20px; margin-right: 6px;
  letter-spacing: 0.3px;
}
.nav-msme::before { content: '✓'; font-size: 10px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: var(--blue); border-radius: 2px; display: block; transition: all 0.3s; }

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: var(--white);
  padding: 12px 26px; border-radius: 8px; font-size: 13px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s; font-family: var(--font-body); letter-spacing: 0.2px;
}
.btn-primary:hover { 
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--green-mid) 100%);
  transform: translateY(-1px); box-shadow: var(--shadow); 
}
.btn-outline {
  background: transparent; color: var(--blue);
  padding: 12px 26px; border-radius: 8px; font-size: 13px; font-weight: 700;
  text-decoration: none; border: 2px solid var(--blue); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s; font-family: var(--font-body);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 45%, var(--green) 100%);
  padding: 130px 60px 70px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.025) 40px, rgba(255,255,255,0.025) 41px);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9); font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 20px; margin-bottom: 18px;
  letter-spacing: 0.8px; text-transform: uppercase;
}
.page-hero h1 { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.1; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.8; max-width: 560px; }

/* ── SECTION ── */
.section-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 60px; }
.section-label { font-size: 11px; font-weight: 700; color: var(--green-mid); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: var(--font-display); font-size: clamp(28px,3.5vw,42px); font-weight: 700; color: var(--blue); line-height: 1.15; margin-bottom: 14px; }
.section-sub { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 540px; }

/* ── CTA BAND ── */
.cta-band { 
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 50%, var(--green) 100%); 
  padding: 60px; 
}
.cta-band-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--font-display); font-size: 32px; color: var(--white); font-weight: 700; }
.cta-band h2 em { color: #a8e87a; font-style: italic; }
.cta-band p { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 6px; }
.btn-cta-white { background: var(--white); color: var(--blue); padding: 12px 26px; border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all 0.25s; font-family: var(--font-body); }
.btn-cta-white:hover { background: var(--accent-light); color: var(--green); }
.btn-cta-outline { background: transparent; color: var(--white); padding: 12px 26px; border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; border: 2px solid rgba(255,255,255,0.35); cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all 0.25s; font-family: var(--font-body); }
.btn-cta-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ── FOOTER ── */
footer { 
  background: #0b1d0a; 
  padding: 50px 60px 28px; 
  border-top: 3px solid var(--green-mid); 
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-desc { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.8; margin-top: 12px; }
.footer-col h4 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.7); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: #a8e87a; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.22); }
.footer-regs { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-regs span { font-size: 10px; color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); padding: 3px 8px; border-radius: 4px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up   { animation: fadeUp 0.55s ease both; }
.fade-up-2 { animation: fadeUp 0.55s 0.12s ease both; }
.fade-up-3 { animation: fadeUp 0.55s 0.24s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); padding: 16px 20px; border-bottom: 1px solid var(--border); gap: 4px; }
  .hamburger { display: flex; }
  .page-hero { padding: 110px 20px 50px; }
  .page-hero h1 { font-size: 34px; }
  .section-wrap { padding: 60px 20px; }
  .cta-band { padding: 50px 20px; }
  .cta-band-inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 40px 20px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-msme { display: none; }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader-content {
  width: 250px; /* Slimmer width */
  text-align: center;
}

.loader-title {
  font-family: 'Segoe UI', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: #1d55b0;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.progress-container {
  width: 100%;
  height: 2px; /* Super thin bar */
  background-color: #eee;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-bar {
  width: 0%; 
  height: 100%;
  background: #1d55b0; /* Solid professional blue */
  transition: width 0.3s ease-out; /* Smooth movement */
}

.status-text {
  font-size: 10px;
  color: #999;
  font-family: sans-serif;
  letter-spacing: 1px;
}

/* Smooth Fade Out */
.loader-hidden {
  opacity: 0;
  pointer-events: none;
}




.clients-section {
  padding: 60px 20px;
  background: #f9fafc;
}

.section-wrap {
  max-width: 1100px;
  margin: auto;
}

.section-label {
  font-size: 14px;
  color: #888;
  margin-bottom: 5px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
}

.section-sub {
  margin-bottom: 30px;
  color: #555;
}

/* Grid */
.clients-grid {
  display: grid;
  gap: 20px;
}

/* Block */
.clients-block {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Label */
.clients-block-label {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Client Item */
.client-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

/* Logo Box */
.client-logo-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background colors */
.client-logo-box.blue {
  background: #e6f0ff;
}

.client-logo-box.green {
  background: #e6fff2;
}

/* LOGO IMAGE FIX (MOST IMPORTANT 🔥) */
.client-logo-box img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* Text */
.client-name {
  font-weight: 600;
}

.client-sub {
  font-size: 14px;
  color: #666;
}

.clients-grid {
  grid-template-columns: 1fr 1fr;
}