/* ===== Your base styles (kept) ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;600;700&display=swap');
body{ font-family:"Cormorant", serif; }
/* Hide horizontal overflow globally */
html,body{ width:100%; overflow-x:hidden; }

/* ===== NAVBAR (fixed) ===== */
.navbar{
  background:#fff;
  position:fixed;
  top:0; left:0; right:0;
  z-index:1050;
  box-shadow:0 2px 12px rgba(0,0,0,.05);
}

.nav-link{
  font-weight:500;
  letter-spacing:.04em;
  color:#182024;
  opacity:.9;
}
.nav-link:hover,
.nav-link.active{ color:#0b0f12; opacity:1; }

/* evenly spaced center nav (desktop) */
@media (min-width: 992px){
  .main-nav{ gap:3.5rem; }
}

/* icon links */
.nav-icon-link{ color:#212529; opacity:.9; text-decoration:none; }
.nav-icon-link:hover{ opacity:1; }

/* CTA (desktop) */
.enquire-btn{
  border:1.5px solid #212529;
  transition:all .15s ease;
}
.enquire-btn:hover{ background:#212529; color:#fff; }

/* Offcanvas width */
.offcanvas{ width:290px; z-index:1060; }
.offcanvas .nav-link{ font-size:1rem; }

/* Improve hamburger visibility on light bg */
.navbar-light .navbar-toggler-icon{ filter:invert(0); }

/* Demo: space below fixed header (you can keep this) */
body{ padding-top:76px; }

/* ===== NEW: Desktop hover dropdown (smooth fade/slide) ===== */
.navbar .dropdown-menu{
  border:0;
  border-radius:.5rem;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  padding:.5rem 0;
}

/* Only enable hover behavior on desktop */
@media (min-width: 992px){
  .navbar .dropdown-hover .dropdown-menu{
    display:block;                 /* keep in flow so transition works */
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
    pointer-events:none;
    margin-top:.25rem;
  }
  .navbar .dropdown-hover:hover > .dropdown-menu,
  .navbar .dropdown-hover:focus-within > .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    transition-delay:0s;
    pointer-events:auto;
  }
}

/* Dropdown items look */
.dropdown-item{
  font-weight:500;
  padding:.5rem 1rem;
}
.dropdown-item:hover{ background:#f6f7f8; }

    /* Demo page padding (real padding is set dynamically by JS) */
    body { padding-top: 76px; }

/* ===== About hero ===== */
.hero-about{
  position: relative;
  min-height: clamp(48vh, 56vh, 72vh);   /* responsive height */
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* Background image (uses a CSS variable so you can swap via inline style) */
.hero-about .hero-bg{
  position: absolute; inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;   /* change to 'center top' if you want more headroom */
  background-repeat: no-repeat;
  transform: scale(1.02);        /* tiny scale to avoid gaps on zoom */
  will-change: transform;
}

/* Subtle dark veil to keep text readable on every photo */
.hero-about .hero-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.25) 0%,
    rgba(0,0,0,.35) 60%,
    rgba(0,0,0,.25) 100%
  );
  pointer-events: none;
}

/* Centered text block */
.hero-about .hero-inner{
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
  padding-inline: 1rem;
}

/* Title sizes scale nicely from mobile to desktop */
.hero-about .hero-title{
  font-weight: 300;
  letter-spacing: .02em;
  line-height: 1.1;
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.5rem);
}

/* Optional subheading style */
.hero-about .hero-sub{
  margin-top: .75rem;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  opacity: .95;
}

/* Respect reduced motion users */
@media (prefers-reduced-motion: reduce){
  .hero-about .hero-bg{ transform: none; }
}
/* ===== Text section styles ===== */
.copy-section { background:#fff; color:#121212; }

/* small accent line above headline */
.copy-accent{
  width: 48px; height: 6px;
  border-radius: 6px;
  background: #e59a83;          /* brand peach */
}

/* big elegant headline */
.copy-title{
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: .01em;
  /* scale smoothly: mobile → desktop */
  font-size: clamp(2rem, 5.5vw, 3.6rem);
}

/* comfortable long-read paragraph */
.copy-body{
  max-width: 88ch;               /* keeps line length readable */
  line-height: 1.9;
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  opacity: .9;
}

/* optional: add extra vertical spacing on very large screens */
@media (min-width: 1400px){
  .py-lg-6 { padding-top: 4.5rem !important; padding-bottom: 4.5rem !important; }
}
/* ===== general polish / reuse from earlier blocks ===== */
.copy-accent{
  width:48px; height:6px; border-radius:6px; background:#403838;
}
.binds-title{ letter-spacing:.01em; }
.binds-body{ max-width: 80ch; line-height:1.9; opacity:.92; }

/* ===== stats area ===== */
.stats-grid{
  display:grid;
  grid-template-columns: 1fr;           /* mobile: one per row */
  gap: 26px;
}

/* cards */
.stat-card{
  border:1.5px solid #403838;
  border-radius:24px;
  padding: 28px 28px 32px;
  background:#fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.02);
  transition:transform .2s ease, box-shadow .2s ease;
}
.stat-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
}

/* number + label */
.stat-value{
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 600;
  color:#403838;        /* highlight color */
  line-height:1;
}
.stat-label{
  margin-top:.4rem;
  text-transform: uppercase;
  letter-spacing:.06em;
  font-size:.95rem;
  color:#1b2630;
  opacity:.8;
}

/* desktop staggered layout */
@media (min-width: 992px){
  .stats-grid{
    grid-template-columns: 1fr 1fr;   /* two columns */
    grid-auto-rows: 1fr;
    gap: 34px 40px;
  }
  .stat-1{ grid-column:1; grid-row:1; }             /* top-left */
  .stat-2{ grid-column:2; grid-row:1; align-self:center; } /* middle-right */
  .stat-3{ grid-column:1; grid-row:2; }             /* bottom-left */
  /* Optional: make right column cards slightly wider feeling */
  .stat-card{ padding: 34px 34px 38px; }
}

/* optional large screens */
@media (min-width: 1400px){
  .stat-card{ border-radius:28px; }
}
/* ===== What We Do (dark board style) ===== */
.whatwedo{
  background:#403838;               /* dark brown */
  position:relative;
  overflow:hidden;
}
.whatwedo .accent{
  width:46px; height:6px; border-radius:6px; background:#eadec4;
}
.wwd-card{
  height:100%;
  background:rgba(255,255,255,.02);
  border:1px solid #eadec4;
  border-radius:16px;
  padding:28px;
  color:#f3e8e4;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.wwd-card:hover{
  transform:translateY(-6px);
  border-color:#eadec4;
  box-shadow:0 14px 36px rgba(0,0,0,.25);
}
.wwd-icon{
  width:72px; height:72px; border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid #eadec4;
  margin-bottom:18px;
}
.wwd-icon i{
  font-size:34px;
  color:#eadec4;
}
.wwd-title{
  color:#fff; font-size:1.25rem; font-weight:600; margin-bottom:.7rem;
}
.wwd-list{
  list-style: none; padding-left:0; margin:0;
}
.wwd-list li{
  position:relative; padding-left:18px; margin:.5rem 0; line-height:1.55;
  color:#eadec4;
}
.wwd-list li::before{
  content:""; width:6px; height:6px; border-radius:50%;
  background:#eadec4; position:absolute; left:0; top:.65rem;
}

/* small screens */
@media (max-width: 575.98px){
  .wwd-card{ padding:22px; }
  .wwd-icon{ width:64px; height:64px; }
}
/* ===== Vision & Mission ===== */
.vm-wrap{ background:#fff; }
.vm-photo img{ object-position:center; }
 .object-fit-cover { object-fit: cover; }

.vm-title{
  font-weight:600;
  letter-spacing:.02em;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  color:#1a1a1a;
  margin-bottom:.6rem;
}
.vm-text{
  font-size: clamp(.98rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  color:#343a40;
  margin-bottom: 1.25rem;
}
.vm-divider{
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,.12);
  margin: 1.5rem 0 1.75rem;
}

/* Optional: tighten spacing on small screens */
@media (max-width: 575.98px){
  .vm-wrap{ padding-top: 2.25rem; padding-bottom: 2.25rem; }
}
   /* ===== Footer ===== */
  .site-footer{
    --footer-bg: url('https://images.unsplash.com/photo-1591604466107-ec97de577aff?q=80&w=1600&auto=format&fit=crop'); /* swap to your image */
    position: relative;
    color: #fff;
    padding-top: 48px;
    padding-bottom: 24px;
    background: #0b0b0b;
    overflow: hidden;
  }
  .site-footer::before{
    content:"";
    position: absolute; inset: 0;
    background-image: var(--footer-bg);
    background-size: cover;
    background-position: center;
    filter: brightness(.35); /* dim the image */
    z-index: 0;
  }
  .site-footer::after{
    content:"";
    position:absolute; inset:0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,.25), rgba(0,0,0,.55));
    z-index: 0;
  }
  .site-footer .footer-inner{ position: relative; z-index: 1; }

  /* social pills */
  .social-list a{
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.35);
    color: #fff; border-radius: 999px;
    transition: .2s ease;
  }
  .social-list a:hover{ background: #ffffff1a; border-color: #fff; transform: translateY(-2px); }

  /* link styles */
  .footer-link{ color: rgba(255,255,255,.9); text-decoration: none; }
  .footer-link:hover{ color:#fff; text-decoration: underline; }

  .footer-title{
    font-weight: 600; letter-spacing:.03em; text-transform: uppercase;
    font-size: 0.95rem; color:#fff; opacity:.9;
  }

  .footer-hr{ border-color: rgba(255,255,255,.2); opacity:1; }

  /* bottom bar */
  .contact-bar{
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 14px; margin-top: 16px;
    font-size: 0.95rem;
  }
  .contact-item{ color:#fff; text-decoration:none; opacity:.95; }
  .contact-item:hover{ opacity:1; text-decoration: underline; }

  /* spacing tweaks on small screens */
  @media (max-width: 575.98px){
    .site-footer{ padding-top: 36px; }
    .footer-col{ margin-bottom: 20px; }
  }