/* Lightweight design system */
:root{
  --bg:#ffffff;
  --text:#020617;
  --muted:#64748b;
  --primary:#0f766e;
  --primary-600:#115e59;
  --ring:rgba(15,118,110,0.18);
  --card:#f8fafc;
  --border:#e2e8f0;
  --shadow:0 18px 45px rgba(15,23,42,0.08);
  --radius:20px;
  --container:1120px;
  --transition:220ms cubic-bezier(0.19,1,0.22,1);
}
*{box-sizing:border-box}
html,body{padding:0;margin:0}
body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
               Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a{color:var(--primary);text-decoration:none}
a:hover{color:var(--primary-600)}
.container{max-width:var(--container);margin:0 auto;padding:0 20px}
header.site-header{
  position:sticky; top:0; z-index:30; background:#fff; border-bottom:1px solid var(--border);
  backdrop-filter:saturate(180%) blur(8px);
}
.navbar{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 0}
.brand{display:flex;align-items:center;gap:10px;font-weight:700;font-size:18px;color:var(--text)}
.brand-logo{width:28px;height:28px;border-radius:8px;background:linear-gradient(135deg,#2dd4bf,#0f766e)}

.nav-links{display:flex;align-items:center;gap:6px}
.nav-links a, .nav-links button{
  display:inline-flex;align-items:center;gap:6px;
  padding:10px 14px;border-radius:12px;border:1px solid transparent;
  font-weight:600;color:#111827;background:transparent;cursor:pointer
}
.nav-links a.active{background:var(--card);border-color:var(--border)}
.nav-links a:hover, .nav-links button:hover{background:var(--card)}
/* Dropdown */
.dropdown{position:relative}
.dropdown-menu{
  position:absolute;top:110%;left:0;min-width:240px;background:#fff;border:1px solid var(--border);
  border-radius:14px;box-shadow:var(--shadow);padding:8px;display:none;
}
.dropdown.open .dropdown-menu{display:block}
.dropdown-menu a{display:block;padding:10px 12px;border-radius:10px;color:#111827}
.dropdown-menu a:hover{background:var(--card)}
/* Mobile */
.burger{display:none;flex-direction:column;gap:4px;border:0;background:transparent;cursor:pointer}
.burger span{width:22px;height:2px;background:#111827;border-radius:2px}
@media (max-width: 860px){
  .nav-links{display:none;position:absolute;left:0;right:0;top:64px;background:#fff;border-bottom:1px solid var(--border);padding:8px}
  .nav-links.open{display:flex;flex-direction:column;align-items:stretch;padding:12px}
  .dropdown-menu{position:relative;top:0;box-shadow:none;border:0;padding:0}
  .burger{display:flex}
}
/* Hero */
.hero{display:grid;grid-template-columns: 1.15fr 0.85fr;gap:36px;align-items:center;padding:48px 0}
.hero .eyebrow{display:inline-block;padding:6px 10px;border-radius:999px;background:var(--card);border:1px solid var(--border);font-weight:600;color:#374151}
.hero h1{font-size: clamp(28px,4.2vw,44px);line-height:1.1;margin:14px 0}
.hero p{color:var(--muted);font-size:18px}
.hero-actions{display:flex;gap:12px;margin-top:18px;flex-wrap:wrap}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:12px 18px;border-radius:12px;border:1px solid var(--border);font-weight:700;cursor:pointer;transition:transform var(--transition)}
.btn-primary{background:var(--primary);color:white;border-color:transparent}
.btn-primary:hover{background:var(--primary-600);transform:translateY(-1px)}
.btn-ghost:hover{background:var(--card)}
.hero-visual{border-radius:20px;overflow:hidden;border:1px solid var(--border);box-shadow:var(--shadow);background:#ffffff;}
/* Sections */
.section{padding:56px 0}
.section .section-title{font-size:28px;margin:0 0 8px}
.section .section-sub{color:var(--muted);margin:0 0 24px}
.grid{display:grid;gap:18px}
.grid.cols-3{grid-template-columns: repeat(3, 1fr)}
.grid.cols-4{grid-template-columns: repeat(4, 1fr)}
@media (max-width: 980px){.grid.cols-3{grid-template-columns:1fr 1fr} .grid.cols-4{grid-template-columns:1fr 1fr} }
@media (max-width: 640px){.hero{grid-template-columns:1fr} .grid.cols-3, .grid.cols-4{grid-template-columns:1fr} }
.card{background:#fff;border:1px solid var(--border);border-radius:16px;padding:18px;box-shadow:var(--shadow)}
.card h3{margin:0 0 6px;font-size:18px}
.card p{margin:0;color:var(--muted)}
.icon{width:36px;height:36px;border-radius:10px;background:linear-gradient(135deg,#a7f3d0,#10b981);display:inline-block}
.badge{display:inline-flex;align-items:center;gap:6px;border-radius:999px;background:#ecfeff;border:1px solid #bae6fd;color:#0f766e;padding:6px 10px;font-weight:700}
.stat{display:flex;flex-direction:column;gap:4px;align-items:flex-start}
.stat .num{font-size:32px;font-weight:800}
/* Footer */
footer{border-top:1px solid var(--border);padding:26px 0;color:#6b7280}
footer .links{display:flex;gap:12px;flex-wrap:wrap}
footer .brand{color:#6b7280}
/* Forms */
input, textarea, select{
  width:100%;padding:12px;border-radius:12px;border:1px solid var(--border);background:#fff;outline:none
}
input:focus, textarea:focus{box-shadow:0 0 0 4px var(--ring);border-color:var(--primary)}
label{font-weight:600}
.form-row{display:grid;gap:12px;grid-template-columns:1fr 1fr}
@media (max-width: 720px){.form-row{grid-template-columns:1fr}}
.form-card{padding:20px}
/* Breadcrumbs */
.breadcrumbs{display:flex;gap:8px;flex-wrap:wrap;font-size:14px;color:#6b7280;margin-bottom:16px}
.breadcrumbs a{color:#6b7280}
/* KB layout */
.kb-layout{display:grid;grid-template-columns: 1fr 280px;gap:24px}
@media (max-width: 980px){.kb-layout{grid-template-columns:1fr}}
.kb-sidebar .card{position:sticky;top:90px}
.search{display:flex;gap:8px;margin:8px 0 16px}
.search input{flex:1}
/* Tables (if needed) */
table{width:100%;border-collapse:collapse;border:1px solid var(--border);border-radius:12px;overflow:hidden}
th,td{padding:12px;border-bottom:1px solid var(--border);text-align:left}
thead th{background:var(--card)}
/* Extras: pricing, testimonials, logo strip, accordion */
.pricing{display:grid;grid-template-columns:1fr 1fr 1fr;gap:18px}
@media (max-width:980px){.pricing{grid-template-columns:1fr}}
.price-card .price{font-size:42px;font-weight:800;margin:8px 0}
.price-card ul{margin:0;padding-left:18px;color:var(--muted)}
.logos{display:grid;grid-template-columns:repeat(6,1fr);gap:14px;align-items:center}
@media (max-width:980px){.logos{grid-template-columns:repeat(3,1fr)}}
.logo{height:34px;border:1px dashed var(--border);border-radius:10px;display:flex;align-items:center;justify-content:center;color:#9ca3af}
.testimonials{display:grid;grid-template-columns:1fr 1fr 1fr;gap:18px}
@media (max-width:980px){.testimonials{grid-template-columns:1fr}}
.testimonial blockquote{margin:0;color:#374151}
.testimonial footer{margin-top:12px;color:#6b7280}
.blog-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:18px}
@media (max-width:980px){.blog-grid{grid-template-columns:1fr}}
.post-card img{width:100%;border-radius:12px;border:1px solid var(--border);margin-bottom:10px}
.kit{display:flex;gap:10px;flex-wrap:wrap}
.kit .chip{padding:6px 10px;border-radius:999px;background:var(--card);border:1px solid var(--border);font-weight:600;color:#374151}
.accordion .item{border:1px solid var(--border);border-radius:12px;padding:14px}
.accordion .item + .item{margin-top:10px}
.accordion .q{display:flex;justify-content:space-between;align-items:center;cursor:pointer;font-weight:700}
.accordion .a{display:none;margin-top:8px;color:#374151}
.accordion .item.open .a{display:block}
.job{border:1px solid var(--border);border-radius:12px;padding:16px;display:flex;justify-content:space-between;gap:12px;align-items:center}
.job .meta{color:#6b7280}
.badge.green{background:#ecfdf5;border-color:#a7f3d0;color:#065f46}
.badge.purple{background:#f5f3ff;border-color:#ddd6fe;color:#5b21b6}
.badge.orange{background:#fff7ed;border-color:#fed7aa;color:#9a3412}

/* Dark footer */
footer{background:#0f172a;color:#94a3b8;border-top:0}
footer a{color:#e5e7eb}
footer a:hover{color:#ffffff}

/* Filter controls */
.filters{display:flex;gap:8px;flex-wrap:wrap;align-items:center;margin-bottom:14px}
.filters .chip{padding:8px 12px;border-radius:999px;border:1px solid var(--border);background:var(--card);cursor:pointer;font-weight:700}
.filters .chip.active{background:var(--primary);border-color:transparent;color:#fff}
.filters input[type="search"]{max-width:280px}
.service-card .label{font-size:12px;border:1px solid var(--border);border-radius:8px;padding:4px 8px;color:#374151;background:#f9fafb}
.service-card .category{font-weight:700;color:#374151}


/* Blue CTA section helpers */
.section-blue{background:var(--primary);color:#ffffff}
.section-blue .section-title{color:#ffffff}
.section-blue .section-sub{color:#e0f2fe}
.section-blue .btn-primary{background:#ffffff;color:var(--primary);border-color:transparent}
.section-blue .btn-primary:hover{background:#f8fafc;transform:translateY(-1px)}
.section-blue .btn-ghost{color:#ffffff;border-color:rgba(255,255,255,0.45)}
.section-blue .btn-ghost:hover{background:rgba(255,255,255,0.12)}


/* Chips on blue sections */
.section-blue .chip{background:rgba(255,255,255,0.12);border-color:rgba(255,255,255,0.28);color:#fff}
.section-blue .section-sub{color:#e0f2fe}


/* Global blue hover effects for cards */
.card{transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease}
a.card{text-decoration:none}
.card:hover{transform:translateY(-2px);border-color:var(--primary);box-shadow:0 8px 24px rgba(59,130,246,0.20)}


/* Featured Services media variants */
.media-cover{width:100%;height:220px;object-fit:cover;border-radius:12px;margin-bottom:10px;border:1px solid var(--border)}
.media-cover.tall{height:300px}
.media-cover.short{height:180px}

/* Simple step visuals for the connection section */
.step-badge{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:999px;background:var(--primary);color:#fff;font-weight:800;margin-right:8px}


/* Hero banner */
.hero-banner{width:100%;height:auto;border-radius:16px;display:block}

/* Square media utility for uniform cards */
.media-square{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:12px;border:1px solid var(--border);display:block;margin-bottom:10px}

/* Enhanced Featured Services visuals */
.card.feature-card{position:relative;overflow:hidden}
.card.feature-card::after{content:"";position:absolute;inset:0;background:radial-gradient(1200px 300px at -10% -10%, rgba(59,130,246,.18), transparent), linear-gradient(180deg, rgba(59,130,246,.08), transparent 40%);pointer-events:none;opacity:.6;transition:opacity .15s ease}
.card.feature-card:hover::after{opacity:1}
.card.feature-card h3{display:flex;align-items:center;gap:10px}
.card.feature-card h3 .dot{width:10px;height:10px;border-radius:999px;background:var(--primary);box-shadow:0 0 0 4px rgba(59,130,246,.15)}
.card.feature-card .feature-kits{margin-top:10px;display:flex;gap:8px;flex-wrap:wrap}
.card.feature-card .feature-kits .badge{background:rgba(59,130,246,.10);border:1px solid rgba(59,130,246,.25);color:#1e3a8a}


/* Services hero banner */
.services-hero{position:relative;border-radius:16px;overflow:hidden;margin-bottom:18px}
.services-hero img{width:100%;height:340px;object-fit:cover;display:block}
.services-hero .overlay{position:absolute;inset:0;background:linear-gradient(0deg, rgba(2,6,23,.55), rgba(2,6,23,.25));display:flex;align-items:flex-end;padding:18px}
.services-hero .overlay h1{color:#fff;margin:0}
.services-hero .overlay p{color:#e5e7eb;margin:6px 0 0}

/* Category accent borders for service cards */
.service-card{border-top:3px solid transparent}
.service-card[data-category="strategy"]{border-top-color:#0f766e}
.service-card[data-category="design"]{border-top-color:#8b5cf6}
.service-card[data-category="build"]{border-top-color:#10b981}
.service-card[data-category="marketing"]{border-top-color:#f59e0b}
.service-card[data-category="care"]{border-top-color:#06b6d4}

/* Package cards */
.package{border-width:2px}
.package .price{font-size:36px;font-weight:800;margin:6px 0}


/* Blue section card + text defaults (for in-page blue blocks) */
.section-blue .card{background:rgba(255,255,255,0.06);border-color:rgba(255,255,255,0.22);color:#fff}
.section-blue h3{color:#fff}
.section-blue p{color:#e0f2fe}


/* === KB HERO & DROPDOWN SCROLL (v29) === */
.kb-hero{margin:18px auto 8px;max-width:1200px}
.kb-hero img{width:100%;height:380px;object-fit:cover;border-radius:16px;display:block;box-shadow:0 10px 24px rgba(15,23,42,.12)}
@media (max-width: 768px){.kb-hero img{height:240px}}
.dropdown .dropdown-menu{max-height:300px;overflow-y:auto}
.dropdown .dropdown-menu::-webkit-scrollbar{width:8px}
.dropdown .dropdown-menu::-webkit-scrollbar-thumb{background:#cbd5e1;border-radius:8px}
/* === END v29 === */


/* === About & Contact Enhancements v33 === */
.section{padding:64px 0}
.container{max-width:1200px;margin:0 auto;padding:0 16px}
.grid{display:grid;gap:24px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}
@media (max-width: 992px){.grid-4,.grid-3{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width: 640px){.grid-4,.grid-3,.grid-2{grid-template-columns:1fr}}

.card{background:#fff;border:1px solid #e5e7eb;border-radius:16px;box-shadow:0 6px 18px rgba(15,23,42,.06);padding:24px}
.card:hover{box-shadow:0 12px 28px rgba(15,23,42,.12);transform:translateY(-2px);transition:.2s ease}
.subtitle{color:#64748b;margin:8px 0 0}
.lead-xl{font-size:40px;line-height:1.1;margin:0}
.kicker{display:inline-block;font-weight:600;letter-spacing:.08em;color:#0f766e;text-transform:uppercase;font-size:12px;margin-bottom:8px}

.stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.stats .stat{background:#f8fafc;border-radius:14px;padding:20px;text-align:center}
.stats .stat .num{font-size:34px;font-weight:700;color:#0f172a}
.stats .stat .lbl{color:#475569;margin-top:4px}

.values .icon{width:44px;height:44px;border-radius:10px;background:#fdf2f8;display:inline-flex;align-items:center;justify-content:center;margin-bottom:10px}
.values h4{margin:6px 0 6px}
.values p{color:#475569;margin:0}

.timeline{position:relative;margin-left:6px;padding-left:24px}
.timeline::before{content:"";position:absolute;left:6px;top:0;bottom:0;width:2px;background:#e5e7eb}
.timeline .t-item{position:relative;margin:0 0 18px 0}
.timeline .t-item::before{content:"";position:absolute;left:-3px;top:6px;width:10px;height:10px;background:#0f766e;border-radius:999px}
.timeline .t-item h5{margin:0 0 4px 0}
.timeline .t-item p{margin:0;color:#475569}

.band{background:#1e40af;color:#fff;border-radius:16px;padding:28px}
.band .btn-light{background:#fff;color:#1e40af;border-radius:999px;padding:10px 16px;font-weight:600;display:inline-block}
.band .btn-outline{border:1px solid rgba(255,255,255,.65);color:#fff;border-radius:999px;padding:10px 16px;margin-left:8px;display:inline-block}

.hero-thin{padding:40px 0 16px;border-bottom:1px solid #e5e7eb;background:linear-gradient(180deg,#fefce8,transparent)}
.hero-thin h1{margin:0 0 8px}

.contact-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
@media (max-width: 768px){.contact-cards{grid-template-columns:1fr}}
.contact-card{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:22px}
.contact-card h4{margin:0 0 10px}
.contact-card p{margin:0;color:#475569}
.map-embed{border:0;width:100%;height:320px;border-radius:16px;box-shadow:0 6px 18px rgba(15,23,42,.08)}

.form-lite input,.form-lite textarea{width:100%;border:1px solid #e5e7eb;border-radius:12px;padding:12px 14px;margin-top:8px}
.form-lite label{font-weight:600;color:#0f172a}
.form-lite .row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
@media (max-width: 640px){.form-lite .row{grid-template-columns:1fr}}
.form-lite button{background:#0f766e;color:#fff;border:0;border-radius:12px;padding:12px 16px;font-weight:600}
.form-lite button:hover{filter:brightness(1.05)}
/* === End v33 === */


/* === v35: Taller header === */
.site-header .navbar{padding-top:22px;padding-bottom:22px}
@media (min-width:1024px){
  .site-header .navbar{padding-top:26px;padding-bottom:26px}
}
/* fine-tune dropdown alignment when header grows */
.site-header .dropdown .dropdown-menu{margin-top:8px}
/* === end v35 === */


/* v36: prevent hero pill from overlapping the taller sticky header */
.hero.container{padding-top:22px}
@media (min-width:1024px){.hero.container{padding-top:30px}}
.hero .eyebrow{margin-top:12px}


/* v37: Portfolio */
.pill{border:1px solid #dbe3f2;border-radius:9999px;padding:8px 14px;background:#fff;font-weight:600;cursor:pointer}
.pill.is-active{background:#0f766e;color:#fff;border-color:#0f766e}
.btn-link{font-weight:600;color:#0f766e;text-decoration:none}
.btn-link:hover{text-decoration:underline}
.card .thumb{width:100%;height:210px;object-fit:cover;border-radius:12px;margin-bottom:12px}



/* === TechWebMakers design polish v2 === */

/* Give the whole page a slightly more airy feel */
body{
  font-feature-settings:"liga","kern";
  text-rendering:optimizeLegibility;
}

/* Header refinements */
.site-header{
  border-bottom:1px solid rgba(148,163,184,0.35);
  box-shadow:0 14px 40px rgba(15,23,42,0.04);
}
.nav-links a,
.nav-links button{
  border-radius:999px;
}
.nav-links a:hover,
.nav-links button:hover{
  background:rgba(241,245,249,0.8);
}
.nav-links a.active{
  background:#0f172a;
  color:#e0f2fe;
}

/* Hero: add subtle spotlight background while keeping overall page white */
.hero{
  position:relative;
  padding-top:56px;
  padding-bottom:64px;
}
.hero::before{
  content:"";
  position:absolute;
  inset:-40px -160px auto auto;
  width:420px;
  height:420px;
  background:radial-gradient(circle at top, rgba(45,212,191,0.08), transparent 60%);
  pointer-events:none;
  z-index:-1;
}
.hero-visual{border-radius:20px;overflow:hidden;border:1px solid var(--border);box-shadow:var(--shadow);background:#ffffff;}

/* Buttons: make ghost variant a bit more defined */
.btn-ghost{
  background:transparent;
}
.btn-ghost:hover{
  background:#f1f5f9;
  border-color:#cbd5f5;
}

/* Cards: smoother hover and depth */
.card{
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}
.card:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 60px rgba(15,23,42,0.10);
  border-color:rgba(15,118,110,0.20);
  background:linear-gradient(180deg,#ffffff,rgba(248,250,252,0.96));
}

/* Feature cards: give the highlight wash a more teal tone */
.card.feature-card::after{
  background:
    radial-gradient(circle at top right, rgba(45,212,191,0.18), transparent 60%),
    linear-gradient(180deg, rgba(15,118,110,0.08), transparent 50%);
}

/* Section spacing tweaks */
.section{padding:64px 0}

/* Footer: calmer tone */
footer{
  background:#f8fafc;
  border-top:1px solid #e2e8f0;
}

/* Tiny quality-of-life tweaks on forms */
input, textarea, select{
  background:#ffffff;
}
input:focus, textarea:focus, select:focus{
  border-color:#0f766e;
  box-shadow:0 0 0 1px rgba(15,118,110,0.10);
}

/* Knowledge base search bar */
.search input{
  border-radius:999px;
}
.search button{
  border-radius:999px;
}

/* Service filters */
.filters .chip{
  border-radius:999px;
}


/* === User tweaks: green call-to-action bands & darker footer text === */

/* CTA band sections ("Ready to support..." & "Curious if TechWebMakers...") */
.band{
  background:#0f766e;
  color:#ffffff;
}
.band h3,
.band p,
.band .subtitle{
  color:#ffffff;
}
.band .btn-light{
  background:#ffffff;
  color:#0f766e;
}
.band .btn-outline{
  border-color:rgba(255,255,255,0.75);
  color:#ffffff;
}

/* Footer text colour made darker for better contrast */
footer{
  background:#f8fafc;
  border-top:1px solid #e2e8f0;
  color:#020617;
}
footer .brand,
footer a,
footer .links a{
  color:#020617;
}


/* === Contact page polish === */
.contact-cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
@media (max-width: 900px){
  .contact-cards{
    grid-template-columns:1fr 1fr;
  }
}
@media (max-width: 640px){
  .contact-cards{
    grid-template-columns:1fr;
  }
}

.contact-card{
  background:#ffffff;
  border:1px solid #e2e8f0;
  border-radius:18px;
  padding:22px 20px;
  box-shadow:0 12px 30px rgba(15,23,42,0.06);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition);
}
.contact-card h4{
  margin:0 0 10px;
  font-size:16px;
}
.contact-card p{
  margin:0;
  color:#475569;
}

/* On hover: stronger card and white text on green */
.contact-card:hover{
  background:#0f766e;
  border-color:#0f766e;
  color:#ffffff;
  transform:translateY(-3px);
  box-shadow:0 20px 55px rgba(15,23,42,0.25);
}
.contact-card:hover h4,
.contact-card:hover p,
.contact-card:hover strong{
  color:#ffffff;
}


/* === Hero visual with photo background === */
.hero-visual{border-radius:20px;overflow:hidden;border:1px solid var(--border);box-shadow:var(--shadow);background:#ffffff;}
.hero-visual .card{
  margin:14px;
  border-radius:18px;
  background:rgba(255,255,255,0.96);
  border:1px solid rgba(148,163,184,0.55);
  backdrop-filter:blur(12px);
}

/* About hero with side image */
.about-hero{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,0.9fr);
  gap:24px;
  align-items:center;
}
.about-hero img{
  width:100%;
  max-height:360px;
  border-radius:20px;
  object-fit:cover;
  box-shadow:0 18px 50px rgba(15,23,42,0.22);
}
@media (max-width: 768px){
  .about-hero{
    grid-template-columns:1fr;
  }
  .about-hero img{
    max-height:none;
    margin-top:18px;
  }
}

/* Generic card-with-image pattern (used on contact page) */
.card-with-image img{
  width:100%;
  border-radius:14px;
  object-fit:cover;
  max-height:220px;
  margin-bottom:12px;
}


/* Home hero visual as plain image container */
.hero-visual{border-radius:20px;overflow:hidden;border:1px solid var(--border);box-shadow:var(--shadow);background:#ffffff;}

/* Contact form card spacing */
.contact-form-card{
  padding:24px 22px;
}
.contact-form-card .section-title{
  margin-top:0;
}


.hero-visual img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

/* Neutralise hover effect for "Programs that fit your team" cards */
.program-card:hover{
  transform:none;
  box-shadow:var(--shadow);
  border-color:var(--border);
  background:#ffffff;
  color:inherit;
}
.program-card:hover h3,
.program-card:hover p,
.program-card:hover li{
  color:inherit;
}


/* Signature services thumbnails */
.service-card .service-thumb{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:14px;
  display:block;
}
@media (max-width: 768px){
  .service-card .service-thumb{
    height:200px;
  }
}


/* === Neutralise all card hover effects (user request) === */
.card:hover{
  transform:none;
  box-shadow:var(--shadow);
  border-color:var(--border);
  background:#ffffff;
  color:inherit;
}
.card:hover h3,
.card:hover p,
.card:hover li{
  color:inherit;
}

/* Contact cards hover: same as default appearance */
.contact-card:hover{
  background:#ffffff;
  border-color:#e2e8f0;
  color:inherit;
  transform:none;
  box-shadow:0 12px 30px rgba(15,23,42,0.06);
}
.contact-card:hover h4,
.contact-card:hover p,
.contact-card:hover strong{
  color:inherit;
}


/* Contact form primary button */
.contact-form-card .btn-full{
  width:100%;
  margin-top:8px;
  justify-content:center;
}
.contact-form-card .btn-full.btn-primary{
  font-size:15px;
}
