/* ═══════════════════════════════════════════════════
   CybSecWatch — Global Stylesheet
   ═══════════════════════════════════════════════════ */

:root {
  --navy:    #0a1628;
  --dark:    #0d1f3c;
  --blue:    #0e3a6e;
  --teal:    #00b4d8;
  --teal2:   #0077a8;
  --accent:  #00e5ff;
  --light:   #e8f4f8;
  --white:   #ffffff;
  --gray:    #464f5d;
  --card-bg: #f4f8fb;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--navy);
  background: #e4e8ec;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  letter-spacing: 0.04em; color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--teal); }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal); color: var(--navy) !important;
  padding: 8px 20px; border-radius: 3px;
  font-weight: 700 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent) !important; }

/* Nav dropdown */
.nav-item { position: relative; }
.nav-item.has-dropdown > a::after {
  content: ''; display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px; vertical-align: middle;
}
.dropdown-menu {
  position: absolute; top: calc(100% + 15px); left: 50%;
  transform: translateX(-50%);
  background: var(--navy); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 8px 0; min-width: 280px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.nav-item.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; }
.dropdown-menu a {
  display: block !important; padding: 10px 20px !important;
  font-size: 0.82rem !important; text-transform: none !important;
  letter-spacing: 0.02em !important; white-space: nowrap;
}
.dropdown-menu a:hover { background: rgba(0,180,216,0.1); }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a {
  color: var(--white); text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 0; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu .nav-cta {
  margin-top: 20px; padding: 12px 32px;
  background: var(--teal); color: var(--navy) !important;
  border-radius: 3px; font-size: 1.1rem;
}
.mobile-dropdown { text-align: center; }
.mobile-dropdown-toggle { cursor: pointer; }
.mobile-dropdown-items {
  display: none; flex-direction: column; gap: 0;
  padding: 0 0 8px;
}
.mobile-dropdown.open .mobile-dropdown-items { display: flex; }
.mobile-dropdown-items a {
  font-size: 1rem !important; font-weight: 400 !important;
  color: rgba(255,255,255,0.6) !important; padding: 8px 0 !important;
}
.mobile-dropdown-items a:hover { color: var(--teal) !important; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 50%, var(--blue) 100%);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 120px 48px 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(0,180,216,0.12) 0%, transparent 70%),
    repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(0,180,216,0.03) 60px, rgba(0,180,216,0.03) 61px);
}
.hero-badge {
  display: inline-block; background: rgba(0,180,216,0.15);
  border: 1px solid rgba(0,180,216,0.4); color: var(--teal);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 6px 18px; border-radius: 20px;
  margin-bottom: 28px; position: relative; animation: fadeUp 0.8s ease both;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 800;
  color: var(--white); line-height: 1.1; max-width: 820px;
  margin-bottom: 24px; position: relative;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 span { color: var(--teal); }
.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.72);
  max-width: 620px; line-height: 1.7; margin-bottom: 40px;
  position: relative; animation: fadeUp 0.8s 0.2s ease both;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  position: relative; animation: fadeUp 0.8s 0.3s ease both;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  animation: fadeUp 1s 0.5s ease both;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(0,180,216,0.6), transparent);
  animation: scrollLine 2s infinite;
}

/* ─── PAGE HEADER (inner pages) ─── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 50%, var(--blue) 100%);
  padding: 140px 48px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(0,180,216,0.1) 0%, transparent 70%);
}
.page-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800;
  color: var(--white); position: relative; margin-bottom: 12px;
}
.page-header h1 span { color: var(--teal); }
.page-header p {
  color: rgba(255,255,255,0.65); font-size: 1rem;
  max-width: 600px; margin: 0 auto;
  position: relative; line-height: 1.7;
}
.breadcrumb {
  position: relative; margin-bottom: 20px;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; }

/* ─── SECTION SHARED ─── */
section { padding: 90px 48px; }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--teal2); margin-bottom: 10px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800;
  color: var(--navy); line-height: 1.15; margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem; color: var(--gray); line-height: 1.7; max-width: 620px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--teal); color: var(--navy);
  padding: 14px 34px; border-radius: 3px;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 14px 34px; border-radius: 3px;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* ─── SERVICES ─── */
#services { background: var(--card-bg); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-sub { margin: 0 auto; }
.services-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
  align-items: stretch;
}
.pillar-card {
  background: var(--white); border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,22,40,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
  height: 100%;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(10,22,40,0.13); }
.pillar-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 32px 20px 28px; position: relative; overflow: hidden;
}
.pillar-header::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px; background: var(--teal);
}
.pillar-header::before {
  content: ''; position: absolute;
  top: -30px; right: -30px; width: 100px; height: 100px;
  border-radius: 50%; background: rgba(0,180,216,0.08);
}
.pillar-icon {
  width: 52px; height: 52px; background: rgba(0,180,216,0.15);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px;
  border: 1px solid rgba(0,180,216,0.3);
}
.pillar-icon svg {
  width: 26px; height: 26px; fill: none; stroke: var(--teal);
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.pillar-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 900; color: var(--white);
  letter-spacing: 0.03em; line-height: 1.1; position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
    width: 100%;
    display: block;
    font-stretch: semi-condensed;
    font-variation-settings: 'wdth' 75;
  }

@media (max-width: 1200px) {
  .pillar-header h3 {
    font-size: 1.05rem;
    font-variation-settings: 'wdth' 70;
  }
}
.pillar-body {
  padding: 26px 28px 30px; flex: 1;
  display: flex; flex-direction: column;
}
.pillar-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; margin-bottom: 20px; }
.pillar-sub-list { list-style: none; margin-bottom: 24px; flex: 1; }
.pillar-sub-list li {
  font-size: 0.82rem; color: var(--navy); padding: 7px 0;
  border-bottom: 1px solid rgba(10,22,40,0.07);
  display: flex; align-items: center; gap: 8px; font-weight: 600;
}
.pillar-sub-list li:last-child { border-bottom: none; }
.pillar-sub-list li::before {
  content: ''; flex-shrink: 0; width: 6px; height: 6px;
  border-radius: 50%; background: var(--teal);
}
.service-link {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--teal2); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.service-link:hover { color: var(--teal); gap: 10px; }
.service-link::after { content: '\2192'; }

/* ─── ABOUT ─── */
#about { background: var(--white); }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-visual-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 8px; padding: 60px 48px;
  color: white; position: relative; overflow: hidden;
}
.about-visual-box::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(0,180,216,0.12);
}
.about-visual-box::after {
  content: ''; position: absolute; bottom: -60px; left: -30px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(0,180,216,0.08);
}
.about-stat { margin-bottom: 32px; position: relative; }
.about-stat:last-child { margin-bottom: 0; }
.about-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem; font-weight: 800; color: var(--teal); line-height: 1;
}
.about-stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
.about-content .section-sub { max-width: 100%; margin-bottom: 20px; }
.about-list { list-style: none; margin: 28px 0 36px; }
.about-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; color: var(--gray); margin-bottom: 14px; line-height: 1.5;
}
.about-list li::before {
  content: ''; flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px;
  background: var(--teal); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%230a1628' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
}

/* ─── WHY US ─── */
#why { background: var(--navy); color: white; }
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-header { margin-bottom: 56px; }
.why-header .section-title { color: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.why-card { border-left: 3px solid var(--teal); padding-left: 24px; }
.why-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 700; color: var(--white);
  margin-bottom: 10px; letter-spacing: 0.02em;
}
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ─── NEWS/BLOG ─── */
#news { background: var(--card-bg); }
.news-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  max-width: 1200px; margin: 0 auto 48px;
}
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; max-width: 1200px; margin: 0 auto;
}
.news-card {
  background: var(--white); border-radius: 6px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,22,40,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(10,22,40,0.12); }
.news-card-img {
  height: 190px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
  position: relative; overflow: hidden;
}
.news-card-img::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px; background: var(--teal);
}
.news-card-body { padding: 26px 28px 32px; }
.news-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal2); margin-bottom: 10px;
}
.news-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 700; color: var(--navy);
  line-height: 1.3; margin-bottom: 12px;
}
.news-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }

/* ─── CTA BANNER ─── */
#cta {
  background: linear-gradient(135deg, var(--teal2) 0%, var(--navy) 100%);
  text-align: center; padding: 80px 48px;
}
#cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--white); margin-bottom: 16px;
}
#cta p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem;
  max-width: 540px; margin: 0 auto 36px; line-height: 1.65;
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy); color: rgba(255,255,255,0.65);
  padding: 64px 48px 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 32px;
}
.footer-brand .nav-logo { display: block; font-size: 1.5rem; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; max-width: 280px; margin-bottom: 20px; }
.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 0.88rem; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--teal); }
.footer-contact p { font-size: 0.88rem; line-height: 1.8; }
.footer-contact a { color: var(--teal); text-decoration: none; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--teal); }

/* ─── SERVICE DETAIL ─── */
.service-detail {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 340px;
  gap: 60px; align-items: start;
}
.service-detail-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem; font-weight: 800; color: var(--navy);
  margin: 40px 0 16px;
}
.service-detail-content h2:first-child { margin-top: 0; }
.service-detail-content p {
  font-size: 0.95rem; color: var(--gray); line-height: 1.75; margin-bottom: 16px;
}
.service-detail-content ul { list-style: none; margin: 16px 0 24px; }
.service-detail-content ul li {
  padding: 8px 0 8px 20px; position: relative;
  font-size: 0.92rem; color: var(--navy); font-weight: 500; line-height: 1.5;
}
.service-detail-content ul li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
}
.service-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--card-bg); border-radius: 8px;
  padding: 28px; margin-bottom: 24px;
}
.sidebar-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; color: var(--navy);
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--teal);
}
.sidebar-card ul { list-style: none; }
.sidebar-card ul li { border-bottom: 1px solid rgba(10,22,40,0.08); }
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul a {
  display: block; padding: 10px 0; color: var(--gray);
  text-decoration: none; font-size: 0.88rem; font-weight: 500;
  transition: color 0.2s, padding-left 0.2s;
}
.sidebar-card ul a:hover { color: var(--teal); padding-left: 6px; }
.sidebar-card ul a.active { color: var(--teal); font-weight: 700; }
.sidebar-cta {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 8px; padding: 32px 28px; text-align: center; color: var(--white);
}
.sidebar-cta h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 700; margin-bottom: 12px;
}
.sidebar-cta p {
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
  line-height: 1.6; margin-bottom: 20px;
}

/* ─── CONTACT ─── */
.contact-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 60px; align-items: start;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--navy); margin-bottom: 8px; letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid rgba(10,22,40,0.15); border-radius: 4px;
  font-family: 'Barlow', sans-serif; font-size: 0.92rem;
  color: var(--navy); background: var(--card-bg);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit {
  background: var(--teal); color: var(--navy);
  padding: 14px 40px; border: none; border-radius: 3px;
  font-family: 'Barlow', sans-serif; font-size: 0.9rem;
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--accent); transform: translateY(-2px); }
.contact-info-card {
  background: var(--card-bg); border-radius: 8px;
  padding: 28px; margin-bottom: 20px;
  border-left: 3px solid var(--teal);
}
.contact-info-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px;
}
.contact-info-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }
.contact-info-card a { color: var(--teal2); text-decoration: none; }

/* ─── BLOG LISTING ─── */
.blog-listing-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.blog-listing-card {
  background: var(--white); border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,22,40,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none; color: inherit; display: block;
}
.blog-listing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(10,22,40,0.13); }
.blog-listing-card .news-card-img { height: 200px; }
.blog-listing-card .news-card-body { padding: 28px; }
.blog-listing-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem; font-weight: 700; color: var(--navy);
  line-height: 1.3; margin-bottom: 12px;
}
.blog-listing-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.blog-meta {
  font-size: 0.78rem; color: var(--gray);
  display: flex; align-items: center; gap: 16px;
}

/* ─── SINGLE BLOG POST ─── */
.blog-post-layout {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 340px;
  gap: 60px; align-items: start;
}
.blog-post-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 800; color: var(--navy);
  margin: 32px 0 12px;
}
.blog-post-content p {
  font-size: 0.95rem; color: var(--gray); line-height: 1.8; margin-bottom: 16px;
}
.blog-post-content blockquote {
  border-left: 3px solid var(--teal); padding: 16px 24px;
  margin: 24px 0; background: var(--card-bg);
  border-radius: 0 6px 6px 0; font-size: 1rem;
  color: var(--navy); font-style: italic; line-height: 1.7;
}
.blog-post-content ul { list-style: none; margin: 16px 0; }
.blog-post-content ul li {
  padding: 6px 0 6px 20px; position: relative;
  font-size: 0.92rem; color: var(--gray); line-height: 1.6;
}
.blog-post-content ul li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
}
.blog-post-meta {
  display: flex; align-items: center; gap: 20px;
  padding-bottom: 24px; border-bottom: 1px solid rgba(10,22,40,0.1);
  margin-bottom: 32px; font-size: 0.85rem; color: var(--gray);
}
.blog-post-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(10,22,40,0.1);
}
.blog-post-tags a {
  background: var(--card-bg); color: var(--teal2);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 600;
  text-decoration: none; transition: background 0.2s;
}
.blog-post-tags a:hover { background: rgba(0,180,216,0.15); }

/* ─── MEDIA ─── */
.media-section { max-width: 1200px; margin: 0 auto; }
.media-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px; margin-top: 40px;
}
.media-card {
  background: var(--card-bg); border-radius: 8px; padding: 32px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.media-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(10,22,40,0.1); }
.media-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.media-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.media-type-label {
  display: inline-block; background: rgba(0,180,216,0.12);
  color: var(--teal2); padding: 4px 12px; border-radius: 12px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 14px;
}

/* ─── CAPABILITY STATEMENT ─── */
.cap-content { max-width: 900px; margin: 0 auto; text-align: center; }
.cap-content p { font-size: 1rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.cap-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; max-width: 1200px; margin: 40px auto 0; text-align: left;
}
.cap-card {
  background: var(--card-bg); border-radius: 8px;
  padding: 28px; border-top: 3px solid var(--teal);
}
.cap-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.cap-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }
.cap-card ul { list-style: none; margin-top: 12px; }
.cap-card ul li {
  padding: 5px 0; font-size: 0.85rem; color: var(--navy);
  font-weight: 500; display: flex; align-items: center; gap: 8px;
}
.cap-card ul li::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--teal); flex-shrink: 0;
}
.cap-download-section {
  text-align: center; margin-top: 48px; padding: 40px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 8px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.cap-download-section h3 {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--white); font-size: 1.4rem; font-weight: 700; margin-bottom: 12px;
}
.cap-download-section p {
  color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 24px;
}

/* ─── ABOUT PAGE (full) ─── */
.about-page-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-page-content p {
  font-size: 0.95rem; color: var(--gray); line-height: 1.75; margin-bottom: 16px;
}
.about-values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; max-width: 1200px; margin: 0 auto;
}
.value-card {
  background: var(--card-bg); border-radius: 8px;
  padding: 32px; border-top: 3px solid var(--teal);
  transition: transform 0.25s;
}
.value-card:hover { transform: translateY(-4px); }
.value-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.value-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none !important; }
  .hamburger { display: flex; }
  section { padding: 64px 24px; }
  .page-header { padding: 120px 24px 48px; }
  .about-inner, .about-page-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .news-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-listing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 580px) {
  .services-pillars { grid-template-columns: 1fr; }
}
