/* Munimax IT Consulting Services Website */

:root {
  --bg: #f8fafc;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --primary: #1d4ed8;
  --primary-dark: #0f2c59;
  --border: #e2e8f0;
  --dark: #020617;
  --soft-blue: #eff6ff;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-wrapper {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-brand {
  display: flex;
  align-items: center;
}

.site-logo {
  width: 170px;
  height: auto;
  display: block;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a {
  color: #475569;
  font-weight: 700;
  font-size: 16px;
}

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

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 10px 16px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: white;
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 22px;
}

.section { padding: 84px 0; }
.light { background: var(--white); }
.dark { background: var(--dark); color: white; }

.hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(29,78,216,.18), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

h1, h2, h3 { line-height: 1.15; margin-top: 0; }
h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  letter-spacing: -.05em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -.04em;
  margin-bottom: 18px;
}
h3 { font-size: 24px; }

.hero-text, .section-title p, .page-hero p {
  font-size: 19px;
  color: var(--muted);
  max-width: 780px;
}

.hero-actions, .cta-actions, .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: .2s ease;
  font-size: 15px;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { background: white; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-light { background: white; color: var(--dark); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  color: #334155;
  font-weight: 800;
}

.hero-card, .contact-card, .detail-card, .service-card, .capability-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(239,246,255,.96));
}

.feature-list, .detail-card ul {
  padding-left: 20px;
  color: #475569;
}

.feature-list li, .detail-card li { margin-bottom: 12px; }

.section-title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 46px;
}

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

.two-col { grid-template-columns: repeat(2, 1fr); }
.three-col { grid-template-columns: repeat(3, 1fr); }

.service-card {
  box-shadow: none;
  transition: .2s ease;
}

.service-card:hover, .detail-card:hover, .capability-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--soft-blue);
  font-size: 28px;
  margin-bottom: 20px;
}

.service-card p, .detail-card p, .capability-card p { color: var(--muted); }
.service-card a { color: var(--primary); font-weight: 900; }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.steps, .support-list { display: grid; gap: 16px; }

.step, .support-list div {
  background: white;
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step strong, .support-list strong {
  color: var(--primary);
  min-width: 56px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.capability-card {
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15,23,42,.06);
}

.capability-card h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.tech-tags span {
  border: 1px solid var(--border);
  background: white;
  color: #334155;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: center;
}

.dark .eyebrow { color: #93c5fd; }
.dark p { color: #cbd5e1; }

.page-hero {
  padding: 90px 0;
  background:
    radial-gradient(circle at top right, rgba(29,78,216,.18), transparent 28%),
    white;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  max-width: 980px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: start;
}

.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

label {
  display: block;
  font-weight: 900;
  margin-bottom: 18px;
}

input, select, textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #f8fafc;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(29,78,216,.28);
  border-color: var(--primary);
  background: white;
}

.form-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  background: white;
  color: var(--muted);
}

.footer-grid, .inner-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer-logo {
  width: 176px;
  height: auto;
  display: block;
  margin-bottom: 14px;
}

.footer-logo.small {
  width: 150px;
  margin-bottom: 0;
}

.site-footer a { color: var(--primary); font-weight: 800; }

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 86px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px; }
  .nav-cta { border-radius: 16px; text-align: center; }
  .site-logo { width: 138px; }
  .hero { min-height: auto; }
  .hero-grid, .split, .contact-grid, .cards-grid, .two-col, .three-col, .capability-grid {
    grid-template-columns: 1fr;
  }
  .cta-box, .footer-grid, .inner-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .section { padding: 64px 0; }
}


/* Floating enquiry actions */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  min-width: 154px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  color: white;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.28);
}

.floating-icon {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.chatbot-btn {
  background: linear-gradient(135deg, #0f2c59, #2563eb);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #128c7e, #25d366);
}

.enquire-btn {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
}

.chatbot-panel {
  position: fixed;
  right: 22px;
  bottom: 210px;
  width: min(380px, calc(100vw - 32px));
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.25);
  z-index: 320;
  overflow: hidden;
  display: none;
}

.chatbot-panel.open {
  display: block;
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #0f2c59, #2563eb);
  color: white;
}

.chatbot-header small {
  display: block;
  margin-top: 3px;
  color: #dbeafe;
  font-size: 12px;
  font-weight: 600;
}

.chatbot-header button {
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.chatbot-body {
  padding: 18px;
  max-height: 330px;
  overflow-y: auto;
  background: #f8fafc;
}

.bot-message,
.user-message {
  padding: 12px 14px;
  border-radius: 16px;
  margin-bottom: 12px;
  font-size: 14px;
}

.bot-message {
  background: white;
  color: #334155;
  border: 1px solid var(--border);
}

.user-message {
  background: #dbeafe;
  color: #0f172a;
  margin-left: 42px;
}

.chatbot-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.chatbot-quick-actions button {
  border: 1px solid #bfdbfe;
  background: white;
  color: var(--primary);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}

.chatbot-footer {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--border);
  background: white;
}

.chatbot-footer input {
  margin: 0;
  border-radius: 999px;
  padding: 12px 14px;
}

.chatbot-footer button {
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 640px) {
  .floating-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
  }

  .floating-btn {
    min-width: auto;
    flex: 1;
    justify-content: center;
    padding: 11px 10px;
    font-size: 12px;
  }

  .floating-label {
    display: none;
  }

  .floating-icon {
    width: 28px;
    height: 28px;
  }

  .chatbot-panel {
    left: 12px;
    right: 12px;
    bottom: 76px;
    width: auto;
  }
}


/* Training page refinements */
.training-highlight {
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
}


/* Case studies */
.case-study-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.case-study-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.case-badge {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: var(--primary);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
}

.case-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
}

.case-grid h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.case-grid p,
.case-grid li {
  color: #475569;
}

.case-stack {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
}

@media (max-width: 860px) {
  .case-study-header {
    flex-direction: column;
  }

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

  .case-badge {
    white-space: normal;
  }
}


/* Expertise brand icons */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.brand-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.brand-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.03em;
  flex: 0 0 auto;
}

.brand-icon.langchain { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.brand-icon.langgraph { background: linear-gradient(135deg, #4c1d95, #7c3aed); }
.brand-icon.llamaindex { background: linear-gradient(135deg, #92400e, #f59e0b); }
.brand-icon.elevenlabs { background: linear-gradient(135deg, #111827, #6b7280); }
.brand-icon.twilio { background: linear-gradient(135deg, #dc2626, #ef4444); }
.brand-icon.powerbi { background: linear-gradient(135deg, #ca8a04, #facc15); color: #111827; }
.brand-icon.python { background: linear-gradient(135deg, #1d4ed8, #facc15); color: white; }
.brand-icon.cloud { background: linear-gradient(135deg, #0369a1, #38bdf8); }
.brand-icon.openai { background: linear-gradient(135deg, #111827, #10b981); }
.brand-icon.azure { background: linear-gradient(135deg, #075985, #2563eb); }
.brand-icon.aws { background: linear-gradient(135deg, #111827, #f59e0b); }
.brand-icon.vector { background: linear-gradient(135deg, #be123c, #f43f5e); }
.brand-icon.api { background: linear-gradient(135deg, #0f172a, #2563eb); }
.brand-icon.data { background: linear-gradient(135deg, #065f46, #22c55e); }
.brand-icon.agent { background: linear-gradient(135deg, #581c87, #db2777); }
.brand-icon.voice { background: linear-gradient(135deg, #4338ca, #06b6d4); }

.brand-card h3 {
  margin: 0;
  font-size: 20px;
}

.brand-card p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

.brand-card .tech-tags {
  margin-top: 16px;
}

.expertise-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.expertise-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  color: #334155;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

@media (max-width: 980px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .brand-grid {
    grid-template-columns: 1fr;
  }
}


/* Address and Google Maps */
.address-card {
  margin-top: 22px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
}

.footer-address {
  margin-top: 4px;
  font-size: 13px;
  color: #64748b;
}

.footer-address a {
  color: var(--primary);
  font-weight: 800;
}

.map-embed-wrapper {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: white;
}

.map-embed-wrapper iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* LangChain ecosystem icons */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.ecosystem-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ecosystem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.ecosystem-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: white;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.03em;
}

.ecosystem-card h3 {
  margin-bottom: 10px;
}

.ecosystem-card p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

.lc-core { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.lc-graph { background: linear-gradient(135deg, #4c1d95, #7c3aed); }
.lc-smith { background: linear-gradient(135deg, #111827, #64748b); }
.lc-serve { background: linear-gradient(135deg, #1d4ed8, #06b6d4); }
.lc-rag { background: linear-gradient(135deg, #92400e, #f59e0b); color: #111827; }
.lc-tools { background: linear-gradient(135deg, #be123c, #f43f5e); }
.lc-memory { background: linear-gradient(135deg, #065f46, #22c55e); }
.lc-prod { background: linear-gradient(135deg, #0f172a, #2563eb); }

@media (max-width: 980px) {
  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .map-embed-wrapper iframe {
    min-height: 320px;
  }
}


/* Blogs */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--soft-blue);
  font-size: 28px;
  margin-bottom: 16px;
}

.blog-category {
  color: var(--primary) !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px !important;
  margin-bottom: 10px !important;
}

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.blog-card p {
  color: var(--muted);
}

.blog-card a {
  color: var(--primary);
  font-weight: 900;
}

.blog-story {
  background: white;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.blog-story-header {
  max-width: 920px;
  margin-bottom: 28px;
}

.story-meta {
  color: var(--primary);
  font-weight: 900;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
}

.story-grid h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.story-grid p,
.story-grid li {
  color: #475569;
}

.story-panel {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
}

@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
