/* ===== IT EVANGELISTS — REDESIGNED GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:        #FFFFFF;
  --bg2:       #F6F5F2;
  --bg3:       #EFEEE9;
  --bg-card:   #FFFFFF;
  --bg-card2:  #FAFAF8;
  --blue:      #1F5F8B;
  --blue2:     #16486B;
  --blue-glow: rgba(31,95,139,0.15);
  --cyan:      #1F5F8B;
  --teal:      #1F5F8B;
  --orange:    #1F5F8B;
  --orange-lt: rgba(31,95,139,0.10);
  --purple:    #1F5F8B;
  --text:      #1A1F2B;
  --text2:     #5B6470;
  --muted:     #8A9099;
  --white:     #FFFFFF;
  --border:    #E6E6E3;
  --border2:   rgba(31,95,139,0.30);
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 1px 3px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.10);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: var(--font-heading); line-height: 1.15; color: var(--text); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 28px; height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 800; font-size: 18px;
  color: var(--text); height: 100%;
}
.nav-logo img { height: 64px; width: auto; object-fit: contain; filter: brightness(1.1); }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  padding: 8px 16px; border-radius: 8px; font-weight: 500; font-size: 14px;
  color: var(--text2); transition: all 0.18s; letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text); background: rgba(0,0,0,0.04); }
.nav-links a.active { color: var(--blue); background: rgba(59,130,246,0.1); font-weight: 600; }
.nav-cta {
  background: var(--blue) !important; color: var(--white) !important;
  font-weight: 700 !important; padding: 9px 20px !important;
  border-radius: 8px !important; box-shadow: 0 0 20px var(--blue-glow) !important;
}
.nav-cta:hover {
  background: var(--blue2) !important;
  box-shadow: 0 0 30px rgba(59,130,246,0.4) !important;
  transform: translateY(-1px);
}
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--text2); border-radius: 2px; transition: all 0.3s; }

/* SECTION LABELS */
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px; display: block;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 700; line-height: 1.2; color: var(--text); letter-spacing: -0.02em;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-title .teal { color: var(--teal); -webkit-text-fill-color: var(--teal); }
.section-title .orange { color: var(--orange); -webkit-text-fill-color: var(--orange); }
.section-sub { font-size: 17px; color: var(--text2); margin-top: 14px; max-width: 580px; line-height: 1.7; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 9px;
  font-family: var(--font-heading); font-weight: 700; font-size: 15px;
  cursor: pointer; transition: all 0.22s; border: none; text-decoration: none;
}
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 4px 20px var(--blue-glow); }
.btn-primary:hover { background: #2563EB; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59,130,246,0.4); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { background: rgba(0,0,0,0.03); border-color: #D4D4CF; transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: var(--white); box-shadow: 0 4px 14px rgba(20,184,166,0.3); }
.btn-teal:hover { filter: brightness(1.1); transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 4px 14px rgba(249,115,22,0.3); }
.btn-orange:hover { filter: brightness(1.1); transform: translateY(-2px); }
.btn-amber { background: var(--orange); color: var(--white); }
.btn-amber:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* CARDS */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.28s; position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; transition: opacity 0.28s;
}
.card:hover {
  border-color: var(--border2); transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  background: var(--bg-card2);
}
.card:hover::before { opacity: 1; }

/* SERVICE ICON */
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px; flex-shrink: 0;
}
.icon-cyan, .icon-blue    { background: rgba(31,95,139,0.08); color: var(--blue); }
.icon-amber, .icon-orange { background: rgba(31,95,139,0.08); color: var(--blue); }
.icon-emerald, .icon-teal { background: rgba(31,95,139,0.08); color: var(--blue); }
.icon-purple { background: rgba(31,95,139,0.08); color: var(--blue); }

/* GRIDS */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* DIVIDER */
.divider { width: 48px; height: 3px; background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: 2px; margin: 20px 0; }

/* TAGS */
.tag { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.tag-cyan, .tag-blue    { background: rgba(31,95,139,0.07); color: var(--blue); border: 1px solid rgba(31,95,139,0.18); }
.tag-amber, .tag-orange { background: rgba(31,95,139,0.07); color: var(--blue); border: 1px solid rgba(31,95,139,0.18); }
.tag-emerald, .tag-teal { background: rgba(31,95,139,0.07); color: var(--blue); border: 1px solid rgba(31,95,139,0.18); }
.tag-purple { background: rgba(31,95,139,0.07); color: var(--blue); border: 1px solid rgba(31,95,139,0.18); }

/* FOOTER */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { color: var(--muted); margin-top: 16px; font-size: 14px; max-width: 260px; line-height: 1.7; }
.footer-brand .nav-logo { color: var(--text); }
.footer-col h4 { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text2); font-size: 14px; transition: color 0.18s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 13px; }

/* PAGE HERO */
.page-hero { padding: 130px 0 80px; position: relative; overflow: hidden; background: var(--bg2); border-bottom: 1px solid var(--border); }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 50px 50px; pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; width: 600px; height: 300px; top: -100px; right: -100px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.1), transparent 70%); pointer-events: none;
}

/* BREADCRUMB */
.breadcrumb { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; margin-bottom: 24px; position: relative; z-index: 1; }
.breadcrumb a { color: var(--blue); transition: opacity 0.18s; }
.breadcrumb a:hover { opacity: 0.7; }

.alt-bg { background: var(--bg2); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

.blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.15; pointer-events: none; }
.blob-cyan, .blob-blue { background: var(--blue); }
.blob-amber { background: var(--orange); }
.blob-emerald { background: var(--teal); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.98); padding: 16px 28px; border-bottom: 1px solid var(--border); gap: 2px; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
