/* ============================================================
   M&M PROTECH — MAIN STYLESHEET
   Fonts: Cormorant Garamond (display) + Montserrat (body)
   Color Palette:
     --gold:   #C9A84C   (brand accent)
     --dark:   #111111
     --mid:    #2A2A2A
     --light:  #F7F5F0   (warm off-white)
     --text:   #555555
   ============================================================ */

/* ==================== CSS VARIABLES ==================== */
:root {
  --gold:      #C9A84C;
  --gold-lt:   #E2C97A;
  --dark:      #111111;
  --mid:       #2A2A2A;
  --card-bg:   #FAFAF8;
  --light:     #F7F5F0;
  --text:      #555555;
  --text-lt:   #888888;
  --white:     #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;
  --transition:   0.4s ease;
  --radius:       8px;
  --shadow:       0 12px 40px rgba(0,0,0,0.08);
  --shadow-lg:    0 24px 64px rgba(0,0,0,0.14);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

/* ── Image placeholder shimmer ────────────────────────────────
   Shows a branded gradient while images are loading.
   Once the img loads it covers this background naturally.
─────────────────────────────────────────────────────────────── */
.hover-zoom,
.project-img-wrap,
.feat-card,
.about-img {
  background: linear-gradient(110deg, #e8e4dc 30%, #f5f2eb 50%, #e8e4dc 70%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Once image loads the shimmer is hidden behind the img */
.hover-zoom img,
.project-img-wrap img,
.feat-card img,
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Stop shimmer from showing through transparent img */
  background: transparent;
}

a { text-decoration: none; color: inherit; }

/* ==================== UTILITY ==================== */
.section-pad { padding: 100px 0; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 8px;
}

.section-heading em {
  font-style: italic;
  color: var(--gold);
}

.section-tagline {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--text-lt);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
}

.body-text {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 14px;
}

/* ==================== BUTTONS ==================== */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-luxury::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: rgba(255,255,255,0.15);
  transition: left 0.4s ease;
}

.btn-luxury:hover::before { left: 100%; }
.btn-luxury:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
  color: var(--dark);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 30px;
  border: 1px solid rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.7);
  transition: all var(--transition);
}

.btn-ghost-sm:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* ==================== HOVER ZOOM ==================== */
.hover-zoom { overflow: hidden; }
.hover-zoom img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hover-zoom:hover img { transform: scale(1.06); }

/* ==================== HEADER ==================== */
#mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
  padding: 0 40px;
}

#mainHeader.scrolled {
  background: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.35);
}

/* offset page content so header doesn't overlap */
body { padding-top: 80px; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* ── Logo ── */
.header-logo { text-decoration: none; }

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon { flex-shrink: 0;    width: 170px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 7.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* ── Hamburger Button — RIGHT always ── */
.hamburger-btn {
  display: flex;            /* always visible on desktop + mobile */
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 48px;
  height: 48px;
  background: none;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 4px;
  cursor: pointer;
  padding: 10px 10px;
  transition: border-color 0.3s ease, background 0.3s ease;
  z-index: 1100;            /* above overlay panels */
  position: relative;
}

.hamburger-btn:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.hbar {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1),
              opacity   0.3s ease,
              width     0.4s cubic-bezier(0.77,0,0.175,1);
}

.hbar-1 { width: 24px; }
.hbar-2 { width: 18px; }
.hbar-3 { width: 24px; }

/* Hamburger → X when open */
.hamburger-btn.is-open .hbar-1 {
  transform: translateY(8px) rotate(45deg);
  width: 24px;
}
.hamburger-btn.is-open .hbar-2 {
  opacity: 0;
  width: 0;
}
.hamburger-btn.is-open .hbar-3 {
  transform: translateY(-8px) rotate(-45deg);
  width: 24px;
}

/* ==================== FULLSCREEN OVERLAY MENU ==================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  pointer-events: none;   /* off by default */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Two animated bg panels that slide in from top */
.overlay-panel {
  position: absolute;
  inset: 0;
  transform: translateY(-100%);
  transition: transform 0.7s cubic-bezier(0.77,0,0.175,1);
}

.panel-1 {
  background: rgba(10,8,3,0.97);
  transition-delay: 0s;
}

.panel-2 {
  background: rgba(20,15,5,0.92);
  transition-delay: 0.07s;
}

/* Open state */
.nav-overlay.is-open {
  pointer-events: all;
}

.nav-overlay.is-open .panel-1,
.nav-overlay.is-open .panel-2 {
  transform: translateY(0);
}

/* Close X button inside overlay */
.overlay-close {
  position: absolute;
  top: 24px;
  right: 40px;
  width: 48px;
  height: 48px;
  background: none;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transform: rotate(-90deg);
  transition: opacity 0.4s ease 0.45s, transform 0.4s ease 0.45s, border-color 0.3s ease;
}

.close-bar {
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.cb-1 { transform: rotate(45deg); }
.cb-2 { transform: rotate(-45deg); }

.overlay-close:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.nav-overlay.is-open .overlay-close {
  opacity: 1;
  transform: rotate(0deg);
}

/* ── Centered Nav ── */
.overlay-nav {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 100px 40px 60px;
}

.overlay-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

/* Each link slides up with staggered delay */
.ol-item {
  overflow: hidden;
  margin-bottom: 4px;
}

.ol-link {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  text-decoration: none;
  padding: 10px 0;
  transform: translateY(60px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1) calc(0.25s + var(--i) * 0.08s),
              opacity   0.5s ease                         calc(0.25s + var(--i) * 0.08s);
}

.nav-overlay.is-open .ol-link {
  transform: translateY(0);
  opacity: 1;
}

.ol-num {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--gold);
  opacity: 0.7;
  min-width: 28px;
  text-align: right;
  line-height: 1;
}

.ol-text {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: -1px;
  line-height: 1;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover: text color + subtle underline */
.ol-link:hover .ol-text {
  color: var(--gold);
}

.ol-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.ol-link:hover .ol-text::after { width: 100%; }

/* CTA link style */
.ol-link-cta .ol-text {
  color: var(--gold);
  font-style: italic;
}

.ol-link-cta:hover .ol-text {
  color: var(--gold-lt);
}

/* ── Overlay footer strip ── */
.overlay-footer {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.65s, transform 0.5s ease 0.65s;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 20px;
}

.nav-overlay.is-open .overlay-footer {
  opacity: 1;
  transform: translateY(0);
}

.overlay-contact {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.overlay-contact a {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.overlay-contact a:hover { color: var(--gold); }

.overlay-socials {
  display: flex;
  gap: 18px;
}

.overlay-socials a {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.overlay-socials a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── Prevent body scroll when menu open ── */
body.menu-open {
  overflow: hidden;
}


.map-wrapper{
  width:100%;
  max-width:800px;
  margin:40px auto;
  position:relative;
}

/* Responsive SVG */
.map-wrapper svg{
  width:100%;
  height:auto;
  display:block;
}

/* 🎨 Different State Colors */
#INPB{ fill:#4CAF50 !important; }      /* Punjab */
#INHR{ fill:#FF9800 !important; }      /* Haryana */
#INUP{ fill:#2196F3 !important; }      /* UP */

/* Hover glow */
#INPB:hover,
#INHR:hover,
#INUP:hover{
  filter:drop-shadow(0 0 12px rgba(0,0,0,0.4));
  cursor:pointer;
}

/* Bouncing marker */
.marker-group{
  animation:bounce 1.5s infinite ease-in-out;
  transform-origin:center;
  pointer-events:none; /* IMPORTANT */
}

@keyframes bounce{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-12px); }
  100%{ transform:translateY(0); }
}

/* Popup */
.tooltip{
  position:absolute;
  background:#fff;
  padding:15px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
  width:220px;
  display:none;
  z-index:999;
}

.tooltip img{
  width:60px;
  display:block;
  margin:0 auto 10px;
}

.tooltip a{
  display:block;
  text-align:center;
  padding:5px 0;
  text-decoration:none;
  color:#333;
  font-size:14px;
}

.tooltip a:hover{
  color:#ff5722;
}

/* Responsive tweak for small screens */
@media (max-width: 480px) {
  #mainHeader    { padding: 0 20px; }
  .overlay-close { right: 20px; }
  .overlay-footer { padding: 20px 20px 0; bottom: 24px; flex-direction: column; align-items: flex-start; }
  .overlay-contact { flex-direction: column; gap: 6px; }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Reliable picsum fallback — always shows even if video fails */
  background: url('images/hero-banner.webp') center/cover no-repeat;
  background-color: #111;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,10,0.75) 0%,
    rgba(10,10,10,0.5) 50%,
    rgba(20,15,5,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0 60px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.5s forwards;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 0.75s forwards;
}

.hero-heading em {
  font-style: italic;
  color: var(--gold-lt);
  display: block;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 1s forwards;
}

.hero-cta-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 1.25s forwards;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%   { opacity: 1; transform: scaleY(1); }
  50%  { opacity: 0.5; }
  100% { opacity: 0; transform: scaleY(0.4) translateY(20px); }
}

/* ==================== ABOUT SECTION ==================== */
.about-section { background: var(--white); }

.about-images-grid {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-img-main { height: 460px; border-radius: var(--radius); }
.about-img-accent { height: 220px; border-radius: var(--radius); align-self: end; }

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--dark);
  padding: 20px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}

.badge-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ==================== STATS SECTION ==================== */
.stats-section {
  position: relative;
  /* picsum seed-based URL — same image on every load */
  background: url('images/stats-section.webp') center/cover fixed;
  background-color: #1a1208;
  padding: 80px 0;
}

.stats-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,8,2,0.85);
}

.stats-row {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  padding: 50px 20px;
  text-align: center;
  border-right: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  position: relative;
  transition: background var(--transition);
}

.stat-item:last-child { border-right: none; }

@media (min-width: 768px) {
  .stat-item:nth-child(4) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
}

.stat-item:hover { background: rgba(201,168,76,0.07); }

.stat-inner { position: relative; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
  margin-bottom: 0;
}

/* ==================== LEADING / PROJECTS CAROUSEL ==================== */
.leading-section { background: var(--light); }

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.carousel-nav-custom { display: flex; gap: 10px; }

.cnav-btn {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--dark);
  transition: all var(--transition);
}

.cnav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: scale(1.05);
}

/* Project card */
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.project-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover .project-img-wrap img { transform: scale(1.08); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.5);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.project-card:hover .project-overlay { opacity: 1; }

.project-info {
  padding: 20px;
}

.project-info h5 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.project-info p {
  font-size: 13px;
  color: var(--text-lt);
  margin-bottom: 10px;
}

.project-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 3px 10px;
  border-radius: 20px;
}

/* Owl nav hide default */
.owl-carousel .owl-nav { display: none; }
.owl-carousel .owl-dots { margin-top: 28px; text-align: center;}
.owl-carousel .owl-dot span {
  width: 22px; height: 6px;
  background: #fff;
  border-radius: 3px;
  display: block;
  margin: 0 4px;
  transition: all var(--transition);
}
.owl-carousel .owl-dot.active span,
.owl-carousel .owl-dot:hover span {
  background: var(--gold);
  width: 22px;
  border-radius: 3px;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section { background: var(--dark); }

.testimonials-section .section-tag { color: var(--gold); }
.testimonials-section .section-heading { color: var(--white); }

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
}

.quote-icon {
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}

.testi-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: #fff;
  font-style: italic;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.testi-author strong { display: block; color: var(--white); font-size: 14px; font-weight: 600; }
.testi-author span { font-size: 11px; color: var(--text-lt); letter-spacing: 1px; text-transform: uppercase; }

.star-row { color: var(--gold); font-size: 13px; letter-spacing: 3px; }

/* ==================== FEATURED GRID ==================== */
.featured-section { background: var(--white); }

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.feat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.feat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.feat-card:hover img { transform: scale(1.06); }

.feat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background var(--transition);
}

.feat-card:hover .feat-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}

.feat-meta h4, .feat-meta h5 {
  font-family: var(--font-display);
  color: var(--white);
  margin: 6px 0;
}

.feat-meta h4 { font-size: 1.4rem; font-weight: 400; }
.feat-meta h5 { font-size: 1.1rem; font-weight: 400; }

.feat-card-large { height: 507px; }
.feat-card-sm    { height: 246px; }

.feat-right-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feat-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  flex: 1;
}

@media (max-width: 767px) {
  .featured-grid { grid-template-columns: 1fr; }
  .feat-card-large { height: 300px; }
  .feat-card-sm { height: 200px; }
  .feat-row-two { grid-template-columns: 1fr 1fr; }
}

/* ==================== COLLABORATIONS ==================== */
.collab-section { background: var(--light); }

.collab-logo-box {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: all var(--transition);
  cursor: pointer;
}

.collab-logo-box:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,0.15);
  transform: translateY(-3px);
}

.collab-placeholder {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  text-align: center;
  line-height: 1.4;
}

/* ==================== FOOTER ==================== */
.site-footer { background: var(--dark); }

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.footer-desc {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
}

.footer-address p { margin-bottom: 2px; }
.footer-address a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-address a:hover { color: var(--gold); }

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition), padding-left var(--transition);
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.footer-links a:hover { color: var(--gold); padding-left: 10px; }
.footer-links a:hover::before { opacity: 1; }

.footer-socials { display: flex; gap: 10px; }

.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
  margin: 0;
}

/* ==================== RESPONSIVE TWEAKS ==================== */
@media (max-width: 991px) {
  .about-images-grid { grid-template-columns: 1fr; }
  .about-img-main { height: 340px; }
  .about-img-accent { display: none; }
  .about-badge { left: 16px; bottom: -16px; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 575px) {
  .section-pad { padding: 64px 0; }
  .hero-heading { font-size: 2.4rem; }
  .hero-sub { font-size: 14px; }
  .hero-cta-wrap { flex-direction: column; align-items: center; }
  .stat-item { padding: 36px 10px; }
  .testimonial-card { padding: 26px 20px; }
  .featured-grid { gap: 10px; }
}

/* ==================== AOS CUSTOM OVERRIDES ==================== */
[data-aos] { will-change: transform, opacity; }




/* ============================================================
   PAGE HERO — ABOUT
============================================================ */

/* ── Shared Typography ── */
.sec-tag {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.sec-heading {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--dark);
}
.sec-heading em { font-style: italic; color: var(--gold); }

.sec-heading-light { color: var(--white); }
.sec-heading-light em { color: var(--gold-lt); }

.body-copy {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--text);
}

.body-copy-light {
  color: rgba(255,255,255,0.68);
}

.divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 22px 0;
}

.pad { padding: 100px 0; }
.pad-sm { padding: 70px 0; }

/* ── Buttons ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 36px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: rgba(255,255,255,0.18);
  transition: left 0.45s ease;
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,168,76,0.35);
  color: var(--dark);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--dark);
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 34px;
  border: 1px solid rgba(0,0,0,0.25);
  transition: all 0.35s ease;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ── Hover zoom utility ── */
.hzoom { overflow: hidden; }
.hzoom img { transition: transform 0.75s var(--ease); }
.hzoom:hover img { transform: scale(1.07); }





.about-hero {
  position: relative;
  height: 68vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute; inset: 0;
  background: url('images/engineering-working-with-drawings.webp') center/cover no-repeat;

  animation: heroZoomOut 1.4s var(--ease) forwards;
}


.contact-hero {
  position: relative;
  height: 68vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute; inset: 0;
  background: url('images/contact-banner.webp') center/cover no-repeat;

  animation: heroZoomOut 1.4s var(--ease) forwards;
}

.contact-hero-overlay {
  position: absolute; inset: 0;
  background:linear-gradient(to top, rgba(13, 11, 7, 0.9) 0%, rgb(13 11 7 / 51%) 55%, rgb(13 11 7 / 59%) 100%);
}

.contact-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.0;
  opacity: 0;
  animation: slideUp 0.9s ease 0.7s forwards;
}

.contact-hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
  display: block;
}




@keyframes heroZoomOut {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}

.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,11,7,0.9) 0%, rgba(13,11,7,0.35) 55%, rgba(13,11,7,0.15) 100%);
}

/* Decorative diagonal gold line */
.about-hero-line {
  position: absolute;
  top: 0; right: 120px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.5) 50%, transparent);
  opacity: 0;
  animation: fadeIn 1s ease 0.8s forwards;
}

@keyframes fadeIn { to { opacity: 1; } }

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 64px;
  width: 100%;
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  opacity: 0;
  animation: slideUp 0.7s ease 0.5s forwards;
}

.hero-breadcrumb a { color: var(--gold); transition: color 0.3s; }
.hero-breadcrumb a:hover { color: var(--gold-lt); }
.hero-breadcrumb span { color: rgba(255,255,255,0.25); }

.about-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.0;
  opacity: 0;
  animation: slideUp 0.9s ease 0.7s forwards;
}

.about-hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
  display: block;
}

.hero-sub-line {
  font-family: var(--font-b);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  opacity: 0;
  animation: slideUp 0.8s ease 0.95s forwards;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECTION 1 — WHO WE ARE (intro)
============================================================ */
.who-we-are { background: var(--ivory); }

.intro-text-block {
  max-width: 760px;
}

.intro-lead {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 24px;
}

.intro-lead em { font-style: italic; color: var(--gold); }

.side-stats-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--ivory-mid);
}

.side-stat {
  padding: 32px 36px;
  border-bottom: 1px solid var(--ivory-mid);
  transition: background 0.3s;
}

.side-stat:last-child { border-bottom: none; }
.side-stat:hover { background: var(--white); }

.side-stat-num {
  font-family: var(--font-d);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.side-stat-num sup {
  font-size: 1.4rem;
  font-family: var(--font-d);
}

.side-stat-label {
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-top: 6px;
}

/* ============================================================
   SECTION 2 — STORY / LARGE IMAGE
============================================================ */
.story-section { background: var(--dark); overflow: hidden; }

.story-img-wrap {
  position: relative;
  height: 100%;
  min-height: 600px;
}

.story-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.5s, transform 0.75s var(--ease);
}

.story-img-wrap:hover img { opacity: 0.9; transform: scale(1.04); }

.story-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--gold-dim);
  pointer-events: none;
}

.story-img-year {
  position: absolute;
  bottom: 32px;
  left: -20px;
  background: var(--gold);
  color: var(--dark);
  padding: 20px 24px;
  font-family: var(--font-d);
  text-align: center;
}

.story-img-year strong {
  display: block;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
}

.story-img-year span {
  display: block;
  font-family: var(--font-b);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.story-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gold-quote {
  font-family: var(--font-d);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: 30px 0;
}

/* ============================================================
   SECTION 3 — DIRECTOR'S PROFILE
============================================================ */
.director-section { background: var(--white); }

.director-photo-col { position: relative; }

.director-photo-frame {
  position: relative;
  display: inline-block;
}

.director-photo-frame::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 1px solid var(--gold-dim);
  pointer-events: none;
  z-index: 0;
}

.director-photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r);
  filter: grayscale(15%);
  transition: filter 0.4s;
}

.director-photo-frame:hover img { filter: grayscale(0%); }

.director-badge {
  position: absolute;
  bottom: 32px;
  right: -20px;
  background: var(--dark);
  color: var(--white);
  padding: 18px 24px;
  z-index: 2;
  border-left: 3px solid var(--gold);
}

.director-badge strong { display: block; font-family: var(--font-d); font-size: 1.1rem; font-weight: 400; color: var(--white); }
.director-badge span   { display: block; font-family: var(--font-b); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

.director-content { padding-left: 40px; }

.credentials {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.cred-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ivory);
  border: 1px solid var(--ivory-mid);
  border-radius: 40px;
  padding: 8px 18px;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text);
}

.cred-pill i { color: var(--gold); font-size: 14px; }

/* ============================================================
   SECTION 4 — DIRECTOR'S MESSAGE (dark, full-bleed)
============================================================ */
.message-section {
  background: var(--mid);
  position: relative;
  overflow: hidden;
}

.message-section::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 40px;
  font-family: var(--font-d);
  font-size: 28rem;
  color: rgba(201,168,76,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.message-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-b);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  white-space: nowrap;
}

.message-body {
  font-family: var(--font-d);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
}

.message-body p { margin-bottom: 22px; }
.message-body p:last-child { margin-bottom: 0; }

.message-sig {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  gap: 20px;
}

.sig-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d);
  font-size: 1.6rem;
  color: var(--dark);
  font-weight: 600;
  flex-shrink: 0;
}

.sig-name { font-family: var(--font-d); font-size: 1.4rem; font-weight: 400; color: var(--white); }
.sig-title { font-family: var(--font-b); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

/* ============================================================
   SECTION 5 — MISSION & VISION (split cards)
============================================================ */
.mv-section { background: var(--ivory); }

.mv-card {
  background: var(--white);
  border: 1px solid var(--ivory-mid);
  border-radius: var(--r);
  padding: 52px 44px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}

.mv-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(201,168,76,0.12);
  transform: translateY(-6px);
}

.mv-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.mv-card:hover::before { transform: scaleX(1); }

.mv-icon {
  width: 56px; height: 56px;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 28px;
  transition: background 0.3s;
}

.mv-card:hover .mv-icon { background: var(--gold); color: var(--dark); }

.mv-card h3 {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 18px;
}

/* ============================================================
   SECTION 6 — VALUES / WHY CHOOSE US
============================================================ */
.values-section { background: var(--dark); overflow: hidden; }

.values-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-d);
  font-size: 22rem;
  font-weight: 600;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.value-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding-left 0.35s ease;
}

.value-item:last-child { border-bottom: none; }
.value-item:hover { padding-left: 12px; }

.value-num {
  font-family: var(--font-d);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  transition: color 0.3s;
}

.value-item:hover .value-num { color: var(--gold); }

.value-body h4 {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.value-body p {
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   SECTION 7 — PROJECTS QUICK GRID
============================================================ */
.projects-teaser { background: var(--ivory); }

.proj-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(110deg, #e8e4dc 30%, #f5f2eb 50%, #e8e4dc 70%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.proj-card img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.75s var(--ease);
}

.proj-card:hover img { transform: scale(1.07); }

.proj-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 24px;
  transition: background 0.35s;
}

.proj-card:hover .proj-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
}

.proj-tag {
  display: inline-block;
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 6px;
}

.proj-card-meta h5 {
  font-family: var(--font-d);
  font-size: 1.25rem; font-weight: 400;
  color: var(--white);
}

.proj-card-tall  { height: 440px; }
.proj-card-short { height: 200px; }

/* ============================================================
   SECTION 8 — CTA BANNER
============================================================ */
.cta-section {
  position: relative;
  background: url('https://picsum.photos/seed/cta-mm/1600/600') center/cover fixed;
  background-color: var(--mid);
  padding: 120px 0;
  overflow: hidden;
}

.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(10,8,3,0.82);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content h2 em { font-style: italic; color: var(--gold-lt); }

.cta-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.9;
}

.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--dark); }

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.footer-logo-main { font-family: var(--font-d); font-size: 22px; font-weight: 600; color: var(--gold); }
.footer-logo-sub  { font-family: var(--font-b); font-size: 7.5px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); }

.footer-desc {
  font-size: 13px; line-height: 1.85;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
}

.footer-heading {
  font-family: var(--font-b);
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}

.footer-address {
  font-style: normal; font-size: 13px; line-height: 1.85;
  color: rgba(255,255,255,0.45);
}

.footer-address p { margin-bottom: 2px; }
.footer-address a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-address a:hover { color: var(--gold); }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.3s, padding-left 0.3s; }
.footer-links a:hover { color: var(--gold); padding-left: 8px; }

.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: translateY(-2px); }

.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); letter-spacing: 1px; margin: 0; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  .story-content { padding: 50px 30px; }
  .director-content { padding-left: 0; margin-top: 60px; }
  .director-badge { right: 0; }
  .message-label { display: none; }
}

@media (max-width: 767px) {
  .pad { padding: 64px 0; }
  .story-img-wrap { min-height: 380px; }
  .mv-card { padding: 36px 28px; }
  .values-bg-text { font-size: 10rem; }
  .cta-section { padding: 80px 0; }
  #mainHeader { padding: 0 20px; }
  .overlay-close { right: 20px; }
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;}

    .colmd4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;

    position: relative;
width: 100%;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;}

.colmd4 .project-card{margin-top: 20px;}



@media (max-width: 500px) {
  .colmd4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}


@media (min-width: 501px) and (max-width: 900px) {
  /* Your CSS rules go here */
  .colmd4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
