:root{
  --brown:#7c2d12;
  --brownLight:#f3e7e1;

  --blue:#1f5fbf;
  --blueDark:#164a98;

  --orange:#f59e0b;
  --orangeDark:#d97706;

  --text:#1a1a1a;
  --muted:#555;

  --card:#ffffff;
  --border: rgba(0,0,0,0.08);
  --shadow: 0 16px 40px rgba(0,0,0,0.10);
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: #fafafa;
}

.container{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}

/* HEADER */
.siteHeader{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--brown);
  color: #fff;
  box-shadow: 0 10px 22px rgba(124,45,18,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  height: 80px;
}

.headerInner{
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  height: 100%;
}

.brandLogoBox{
  height: 72px;
  width: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;      /* key */
  border-radius: 12px;   /* optional */
  background: white;     /* optional */
}

.brandLogo{
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;

  transform: scale(1.28);     /* 🔥 makes the logo look bigger */
  transform-origin: center;
}

.brandName{
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
}

.brandTag{
  font-size: 12px;
  opacity: 0.92;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 520px;
}

.headerActions{
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.headerLink{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
}

.headerLink:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.25);
}

/* HERO (light brown) */
.hero{
  background: var(--brownLight);
  padding: 56px 0 34px 0;
  border-bottom: 1px solid var(--border);
}

.heroInner{
  position: relative;
  z-index: 2;
  padding: 10px 24px; /* fixed padding so it feels full-width */
}

.heroCopy{
  text-align: left;
  width: 100%;
}

.heroCopy h1{
  margin: 0 0 12px 0;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 900;
  color: #111;
}

.heroDesc{
  margin: 0 0 18px 0;
  font-size: 16px;
  color: var(--muted);
  max-width: 820px;
}

/* HERO (background slider version) */
.heroWithSlider{
  position: relative;
  min-height: 460px;     /* was ~620 */
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;            /* ensure no extra padding here */
}

.heroCopy{
  max-width: 780px;
}

.heroEyebrow{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5f6b7a;
  margin-bottom: 18px;
}

.heroCopy h1{
  font-size: 52px;
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 18px;
}

.heroPanel{
  width: 100%;
  max-width: none;     /* remove cap */
  margin: 0;           /* no centering gap */
  padding: 20px 44px 28px 44px;
  border-radius: 24px;
}

/* Title: smaller + better line height */
.heroTitle span{
  display:block;
  font-weight:600;
  color:#3b6cb7;
  margin-top:6px;
}

.highlight{
  background: linear-gradient(90deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* Description readable */
.heroDesc{
  margin: 0 0 18px 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0,0,0,0.72);
  max-width: 700px;
}

/* Background slider stays the same (keep your existing slider rules) */

/* Make overlay lighter (yours is too strong) */
.heroOverlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.18) 55%,
    rgba(0,0,0,0.08) 100%
  );
}

.ctaRow{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 12px 0;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btnPrimary{
  background: linear-gradient(135deg, var(--blue), var(--blueDark));
  color: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(31,95,191,0.25);
}

.btnPrimary:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.btnGhost{
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(31,95,191,0.35);
  color: var(--blueDark);
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
}

.btnGhost:hover{
  background: rgba(31,95,191,0.08);
}

.btnOutline{
  background: transparent;
  color: var(--blueDark);
  border-color: rgba(31,95,191,0.35);
}
.btnOutline:hover{
  background: rgba(31,95,191,0.08);
}

.heroBadges span{
  background:#fff6e6;
  border:1px solid #e5b56a;
  color:#7a4d00;
  font-weight:600;
}

.badge{
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(245,158,11,0.14);
  border: 1px solid rgba(245,158,11,0.28);
  color: rgba(0,0,0,0.75);
}

/* FULL WIDTH SLIDER */
.sliderWrap{
  width: 100%;
  background: #0b1220; /* dark to make slider pop */
}

.slider{
  position: relative;
  width: 100%;
  height: 700px;        /* full-width banner height */
  overflow: hidden;
}

.slides{
  position: relative;
  width: 100%;
  height: 100%;
}

.slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 450ms ease, transform 450ms ease;
}

.slide.is-active{
  opacity: 1;
  transform: scale(1);
}

.slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;     /* fill full width */
  display: block;
}

/* Caption */
.slideCaption{
  position: absolute;
  left: 20px;
  bottom: 18px;
  padding: 10px 12px;
  border-radius: 12px;
  color: white;
  font-weight: 800;
  font-size: 13px;
  background: rgba(0,0,0,0.40);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}

/* Nav buttons */
.sliderBtn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(0,0,0,0.35);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  user-select: none;
}

.sliderBtn:hover{ background: rgba(0,0,0,0.50); }

.sliderBtn.prev{ left: 16px; }
.sliderBtn.next{ right: 16px; }

/* Dots */
.dots{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.18);
  cursor: pointer;
}

.dot.is-active{
  background: var(--orange);
  border-color: rgba(245,158,11,0.95);
}

/* SECTIONS */
.section{
  padding: 70px 0;
  background: #fff;
}

.sectionAlt{
  background: #f6f8ff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sectionTitle{
  margin: 0 0 10px 0;
  font-size: 28px;
  font-weight: 900;
  color: #111;
}

.sectionText{
  margin: 0 0 18px 0;
  color: var(--muted);
}

/* Benefits cards */
.grid4{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.cardIcon{
  font-size: 24px;
  margin-bottom: 8px;
}

.card h3{
  margin: 0 0 6px 0;
  font-size: 15px;
}

.card p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

/* Footer */
.footer{
  background: #0f172a;
  color: rgba(255,255,255,0.85);
  padding: 18px 0;
}

.footerInner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footerRight{
  opacity: 0.85;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px){
  .grid4{ grid-template-columns: repeat(2, 1fr); }
  .brandTag{ max-width: 320px; }
  .heroCopy h1{ font-size: 32px; }
  .slider{ height: 340px; }
}

@media (max-width: 640px){
  .headerActions{ display: none; }
  .grid4{ grid-template-columns: 1fr; }
  .slider{ height: 280px; }
  .slideCaption{ left: 12px; right: 12px; }
}

@media (max-width: 900px){
  .heroWithSlider{ min-height: 420px; }
  .heroInner{ padding: 22px 14px; }
  .heroPanel{ padding: 18px; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brandLogo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: white;        /* remove if logo already transparent */
  border-radius: 8px;       /* optional */
  padding: 4px;             /* optional breathing space */
}

.brandName {
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  color: white;
}

.brandTag {
  font-size: 12px;
  opacity: 0.9;
  color: rgba(255,255,255,0.85);
}

/* Contact Section */
/* Compact Contact Section */
.contactCompact{
  padding: 50px 20px;   /* smaller vertical spacing */
}

.contactWrapper{
  max-width: 520px;     /* narrow */
  margin: 0 auto;
  text-align: center;
}

.contactText{
  margin: 12px 0 18px 0;
  font-size: 15px;
  color: rgba(0,0,0,0.70);
}

.contactEmail{
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
  color: var(--blue);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  transition: background 200ms ease, color 200ms ease;
}

.contactEmail:hover{
  background: rgba(31,95,191,0.08);
  color: var(--blueDark);
}

.btnPrimary{
  background: linear-gradient(135deg, var(--blue), var(--blueDark));
  color: white;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 900;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(31,95,191,0.35);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.btnPrimary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(31,95,191,0.45);
}

.btnOutline{
  background: rgba(255,255,255,0.10);
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 800;
}

.badge{
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(245,158,11,0.18);
  border: 1px solid rgba(245,158,11,0.45);
  color: white;
}

.heroPanel{ width: min(1280px, 100%) !important; }

.grid4{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card{
  padding: 26px;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 18px 45px rgba(0,0,0,0.05);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.10);
}

.cardIcon{
  font-size: 28px;
  margin-bottom: 14px;
}

/* Founder Section */
.founderGrid{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.founderCard{
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.founderCard:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.10);
}

.founderImg{
  height: 260px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(31,95,191,0.12), rgba(245,158,11,0.12));
  font-weight: 900;
  letter-spacing: 1px;
  color: rgba(0,0,0,0.6);
}

.founderContent{
  padding: 22px;
}

.founderContent h3{
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.founderRole{
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  margin: 6px 0 14px 0;
}

.founderContent p{
  margin: 0 0 12px 0;
  color: rgba(0,0,0,0.72);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px){
  .founderGrid{
    grid-template-columns: 1fr;
  }
  .founderImg{
    height: 220px;
  }
}

@media (max-width: 1100px){
  .grid4{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .grid4{
    grid-template-columns: 1fr;
  }
}

