@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* ============================================================
   ZENTROPY — Premium Light Mode
   ============================================================ */

:root {
  --primary:        #1a8ff5;
  --primary-dark:   #0f6ac2;
  --primary-glow:   rgba(26, 143, 245, 0.20);
  --gradient:       linear-gradient(135deg, #1a8ff5 0%, #5b6af9 100%);

  --bg-white:       #ffffff;
  --bg-light:       #f4f8fd;
  --bg-subtle:      #eef3fa;

  --text-main:      #0f1929;
  --text-muted:     #5a6a82;
  --border-light:   #dde6f0;

  --shadow-sm:  0 1px 4px rgba(15,25,41,0.06);
  --shadow-md:  0 6px 24px rgba(15,25,41,0.09);
  --shadow-lg:  0 20px 60px rgba(15,25,41,0.12);
  --shadow-blue: 0 16px 48px rgba(26,143,245,0.25);
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 65px !important;
}

a, a:hover, a:focus { text-decoration: none; transition: all 0.25s ease; outline: none; }
img { display: block; max-width: 100%; height: auto; }


/* ── Navigation ─────────────────────────────── */
#menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
}

.menubar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease;
}

.menubar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-default {
  border: none;
  background: transparent;
  margin-bottom: 0;
  padding: 6px 0;
  min-height: 64px;
}

.navbar-brand { padding: 10px 15px; }
.navbar-brand img { height: 40px; width: auto; }

.navbar-nav > li > a {
  color: var(--text-muted) !important;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  border-radius: 8px;
  margin: 0 2px;
}

.navbar-nav > li > a:hover,
.navbar-nav > li.active > a {
  color: var(--primary) !important;
  background: var(--primary-glow);
}

.navbar-toggle {
  border-color: var(--border-light);
}

.navbar-toggle .icon-bar { background: var(--text-muted); }


/* ── Hero ───────────────────────────────────── */
.zen_landing_bg {
  position: relative;
  background: var(--bg-white);
  padding: 100px 0 120px;
  overflow: hidden;
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
}

/* subtle gradient orbs */
.zen_landing_bg::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,143,245,0.10) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.zen_landing_bg::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(91,106,249,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.zen_landing_bg canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.5;
}

.zen_hero_row {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.zen_landing_sec {
  position: relative;
  z-index: 1;
  padding-right: 30px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-glow);
  border: 1px solid rgba(26,143,245,0.25);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.5); }
}

.zen_landing_sec h1 {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #0f1929 50%, #1a8ff5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zen_landing_sec h3 {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 44px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary-hero {
  background: var(--gradient);
  color: #ffffff !important;
  padding: 14px 34px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  box-shadow: var(--shadow-blue);
}

.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(26,143,245,0.35);
  color: #fff !important;
}

.btn-ghost-hero {
  color: var(--text-muted) !important;
  padding: 14px 34px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  border: 1.5px solid var(--border-light);
}

.btn-ghost-hero:hover {
  color: var(--primary) !important;
  border-color: var(--primary);
  background: var(--primary-glow);
}

.hero-img-wrap { position: relative; z-index: 1; }

.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(26,143,245,0.12) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
}

.hero-img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 0 !important;
}


/* ── Sections Shared ────────────────────────── */
section {
  padding: 110px 0;
  scroll-margin-top: 65px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid rgba(26,143,245,0.22);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-heading {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 60px;
  line-height: 1.75;
  font-weight: 300;
}

/* hide old liner decorators */
.brd1, .brd2 { display: none !important; }

section h1 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.8px;
  text-align: center;
  color: var(--text-main);
  margin-bottom: 12px;
}

section h1 span { display: inline-block; }


/* ── About Us ───────────────────────────────── */
.about-us { background: var(--bg-light); }

.about-section-header { text-align: center; margin-bottom: 70px; }

.zen_spc { display: flex; align-items: center; flex-wrap: wrap; }

.about-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.about-text-col { padding-left: 60px; }

.about-lead {
  font-size: 17px !important;
  color: var(--text-main) !important;
  font-weight: 500 !important;
  margin-bottom: 16px;
  line-height: 1.8 !important;
}

.about-text-col p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 10px;
}

.zen_abt_ul { margin-top: 28px; list-style: none; padding-left: 0; }

.zen_abt_ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
}

.zen_abt_ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 18px; height: 18px;
  background: var(--primary-glow);
  border: 1.5px solid var(--primary);
  border-radius: 50%;
}

.zen_abt_ul li::after {
  content: '✓';
  position: absolute;
  left: 3px; top: 5px;
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
}

.about-stats {
  display: flex;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.stat-item { flex: 1; text-align: center; padding: 0 12px; }
.stat-item + .stat-item { border-left: 1px solid var(--border-light); }

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}


/* ── Services ───────────────────────────────── */
#services { background: var(--bg-white); padding: 110px 0 80px; }

.services-header { text-align: center; margin-bottom: 56px; }

.controls { margin-bottom: 48px; }

.controls .nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.controls li { list-style: none; }

.controls li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 18px;
  background: var(--bg-light);
  border-radius: 18px;
  width: 175px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  gap: 10px;
}

.controls li a:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  background: var(--bg-white);
}

.controls li.active a {
  border-color: var(--primary);
  background: var(--bg-white);
  box-shadow: 0 8px 30px rgba(26,143,245,0.15);
}

.controls li img { width: 52px; height: 52px; object-fit: contain; }

.controls li small {
  font-size: 11.5px;
  text-align: center;
  color: var(--text-main);
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.4;
}

.controls li.active small { color: var(--primary); }

.carousel-inner .row { display: flex; align-items: center; flex-wrap: wrap; }

.carousel-inner .item { padding: 0 60px 60px; }

.carousel-inner .item .col-md-5 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-inner .item img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.carousel-inner .item .col-md-7 { padding-left: 60px; }

.carousel-inner h3 {
  font-size: 27px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.5px;
  margin-bottom: 0;
}

.service-content-inner {
  padding: 40px 44px;
  background: var(--bg-light);
  border-radius: 24px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.service-divider {
  width: 40px; height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  margin: 14px 0 26px;
}


/* ── Our Focus ──────────────────────────────── */
#industry { background: var(--bg-light); padding: 110px 0; }

.focus-header { text-align: center; margin-bottom: 0; }
.focus-cards-row { padding-top: 60px; }

.post-module {
  background: var(--bg-white);
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-module:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(26,143,245,0.15);
}

.post-module .thumbnail { height: 220px; overflow: hidden; }

.post-module .thumbnail img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.post-module:hover .thumbnail img { transform: scale(1.07); }

.post-module .post-content { padding: 28px 30px 32px; }

.post-module .title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-main);
  text-align: left;
}

.post-module .description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  display: block !important;
  opacity: 1 !important;
  height: auto !important;
  text-align: left;
}


/* ── Contact ────────────────────────────────── */
#aa_particles {
  background: var(--bg-subtle);
  padding: 0;
  position: relative;
  border-top: 1px solid var(--border-light);
}

#aa_particles canvas {
  position: absolute;
  top: 0; left: 0;
  pointer-events: none;
  opacity: 0.25;
}

.zen_contact {
  padding: 110px 0;
  position: relative;
  z-index: 2;
}

.zen_contact h1 { color: var(--text-main); }

.contact-header { text-align: center; margin-bottom: 60px; }

.zen_address {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
}

.contact-item {
  text-align: center;
  flex: 0 1 200px;
  padding: 28px 20px;
  background: var(--bg-white);
  border-radius: 20px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(26,143,245,0.12);
}

.contact-icon {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}

.zen_address h4 {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}


/* ── Footer ─────────────────────────────────── */
footer {
  background: var(--bg-white);
  padding: 36px 0;
  text-align: center;
  border-top: 1px solid var(--border-light);
}

footer p {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
}


/* ── Responsive ─────────────────────────────── */
@media (max-width: 991px) {
  .zen_landing_bg { padding: 130px 0 80px; min-height: auto; }
  .zen_landing_sec h1 { font-size: 44px; }
  .zen_landing_sec { text-align: center; padding-right: 0; padding-bottom: 50px; }
  .zen_landing_sec h3 { margin: 0 auto 44px; }
  .hero-ctas { justify-content: center; }
  .about-text-col { padding-left: 15px; padding-top: 40px; }
  .carousel-inner .item { padding: 0 20px 40px; }
  .carousel-inner .item .col-md-7 { padding-left: 20px; padding-top: 30px; }
  .service-content-inner { padding: 28px 24px; }
}

@media (max-width: 767px) {
  section { padding: 70px 0; }
  .zen_landing_sec h1 { font-size: 36px; letter-spacing: -0.5px; }
  .zen_landing_sec h3 { font-size: 16px; }
  .section-heading { font-size: 28px; }
  .about-text-col { padding-left: 15px; padding-top: 30px; }
  .about-stats { flex-direction: column; gap: 20px; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--border-light); padding-top: 20px; }
  .controls li a { width: 140px; padding: 16px 12px; }
  .hero-img-wrap { display: none; }
  .navbar-nav {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    margin-top: 8px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
  }
}
