/* ═══════════════════════════════════════════════════
   STEELBRIDGE MANUFACTURING — style.css
   Theme: Clean Corporate / Light / Refined
   ═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --white:       #ffffff;
  --off-white:   #f7f8fa;
  --bg-light:    #f0f2f5;
  --bg-section:  #fafbfc;
  --slate-50:    #f8fafc;
  --slate-100:   #f1f5f9;
  --slate-200:   #e2e8f0;
  --slate-400:   #94a3b8;
  --slate-600:   #475569;
  --slate-800:   #1e293b;
  --slate-900:   #0f172a;

  --accent:      #1d6fe8;        /* Steel blue */
  --accent-dark: #1455c0;
  --accent-bg:   #eff6ff;

  --text:        #1e293b;
  --text-muted:  #64748b;
  --text-light:  #94a3b8;
  --border:      #e2e8f0;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:   0 20px 40px rgba(0,0,0,0.1);
  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:       68px;
  --max-w:       1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
iframe { border: none; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Typography helpers ── */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--slate-900);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.7;
  margin: 0 auto;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }
.body-text {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.75rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(29,111,232,0.3);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}
.full-btn { width: 100%; justify-content: center; }
.mt-btn { margin-top: 1.75rem; }


/* ═══════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.logo-icon {
  width: 32px; height: 32px;
  color: var(--slate-800);
  flex-shrink: 0;
  margin-bottom: 20px;
}
.header:not(.scrolled) .logo-icon { color: var(--white); }
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.header:not(.scrolled) .logo-main,
.header:not(.scrolled) .logo-sub { color: rgba(255,255,255,0.9); }

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media (max-width: 768px) {
  .nav-menu{
    display: none;
  }
}
.nav-item {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-900);
  padding: 0.45rem 0.85rem;
  border-radius: 100px;
  transition: var(--transition);
}
.nav-item:hover { background: var(--slate-100); }
.nav-item.active { color: var(--accent); }
.header:not(.scrolled) .nav-item { color: rgba(255,255,255,0.85); }
.header:not(.scrolled) .nav-item:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.header:not(.scrolled) .nav-item.active { color: var(--white); }

.nav-item.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
}
.nav-item.nav-cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate-900);
  border-radius: 2px;
  transition: var(--transition);
}
.header:not(.scrolled) .nav-toggle span { background: var(--white); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: bgZoom 18s ease-in-out infinite alternate;
}
@keyframes bgZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(9,20,40,0.88) 0%,
    rgba(9,20,40,0.65) 55%,
    rgba(9,20,40,0.3) 100%
  );
}
.hero-body {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 4rem;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}
.label-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 700px;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s forwards;
}
.hero-title em {
  font-style: italic;
  color: #93c5fd;
}
.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s forwards;
}
.hero-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.65s forwards;
}
.hero-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  opacity: 0;
  animation: fadeUp 0.7s 0.8s forwards;
  flex-wrap: wrap;
}
.hbar-item {
  display: flex;
  flex-direction: column;
}
.hbar-item strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
}
.hbar-item span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}
.hbar-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-pill {
  width: 22px; height: 36px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-dot {
  width: 4px; height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.6);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════
   ABOUT
═══════════════════════════════════ */
.about {
  padding: 7rem 1.5rem;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-col { position: relative; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-img-wrap:hover img { transform: scale(1.03); }
.about-chip {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--white);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-md);
}
.about-stat-box {
  position: absolute;
  bottom: -1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.asb-item { flex: 1; text-align: center; }
.asb-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--accent);
  line-height: 1;
}
.asb-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.asb-div {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.about-text-col { padding-bottom: 2rem; }
.about-text-col .section-title { margin-bottom: 1.25rem; }
.about-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 400;
}
.al-icon {
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   SERVICES
═══════════════════════════════════ */
.services {
  padding: 7rem 1.5rem;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-icon-wrap {
  width: 48px; height: 48px;
  background: var(--accent-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
  transition: var(--transition);
}
.svc-card:hover .svc-icon-wrap {
  background: var(--accent);
  color: var(--white);
}
.svc-icon { width: 26px; height: 26px; }
.svc-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--slate-900);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}
.svc-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
}
.svc-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.svc-link:hover { letter-spacing: 0.04em; }

/* ═══════════════════════════════════
   GALLERY
═══════════════════════════════════ */
.gallery {
  padding: 7rem 1.5rem;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 1rem;
}
.gal-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--slate-100);
}
.gal-item.gal-tall { grid-row: 1 / 3; }
.gal-item.gal-wide { grid-column: 2 / 4; }
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gal-item:hover img { transform: scale(1.06); }
.gal-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(9,20,40,0.75), transparent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 1.25rem 1rem 0.75rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gal-item:hover .gal-caption { opacity: 1; }

/* ═══════════════════════════════════
   VIDEOS
═══════════════════════════════════ */
.videos {
  padding: 7rem 1.5rem;
  background: var(--off-white);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.vid-item { display: flex; flex-direction: column; gap: 0.75rem; }
.vid-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--slate-900);
  box-shadow: var(--shadow-md);
}
.vid-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.vid-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-800);
  padding: 0 0.25rem;
}

/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
.contact-sec {
  padding: 7rem 1.5rem;
  background: var(--slate-900);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-left .eyebrow { color: #93c5fd; }
.contact-left .section-title { color: var(--white); }
.contact-left .body-text { color: rgba(255,255,255,0.6); }
.contact-info-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.ci-item a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.ci-item a:hover { color: var(--white); }
.ci-icon {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cf-group { display: flex; flex-direction: column; gap: 0.4rem; }
.cf-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cf-group input,
.cf-group select,
.cf-group textarea {
  background: var(--slate-50);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  -webkit-appearance: none;
}
.cf-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2394a3b8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 10px;
  padding-right: 2.25rem;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29,111,232,0.1);
  background: var(--white);
}
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: var(--text-light); }
.cf-group textarea { resize: vertical; min-height: 100px; }
.cf-note {
  font-size: 0.85rem;
  color: #16a34a;
  text-align: center;
  min-height: 1.4em;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  background: var(--slate-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo .logo-icon { color: var(--white); }
.footer-logo .logo-main { color: var(--white); }
.footer-logo .logo-sub  { color: rgba(255,255,255,0.4); }
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  line-height: 1.65;
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}
.social-row {
  display: flex;
  gap: 0.6rem;
}
.social-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(29,111,232,0.1);
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li,
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
  transition: color var(--transition);
}
/* .footer-col{
  transform: translateY(300px);
} */
.footer-col ul a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }

/* ═══════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════
   RESPONSIVE — Tablet ≤ 1024px
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid .vid-item:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
}

/* ═══════════════════════════════════
   RESPONSIVE — Mobile ≤ 768px
═══════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 1.5rem;
    transform: translateY(-110%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-item {
    color: var(--text) !important;
    padding: 0.75rem 0;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
  }
  .nav-item:hover { background: none; color: var(--accent) !important; }
  .nav-item.nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    background: var(--accent) !important;
    color: var(--white) !important;
    border-radius: 100px !important;
    border-bottom: none;
  }

  /* Sections */
  .about { padding: 5rem 1.25rem; }
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-stat-box { left: 0.5rem; right: 0.5rem; }

  .services { padding: 5rem 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }

  .gallery { padding: 5rem 1.25rem; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gal-item.gal-tall { grid-row: auto; }
  .gal-item.gal-wide { grid-column: auto; }
  .gal-caption { opacity: 1; }

  .videos { padding: 5rem 1.25rem; }
  .videos-grid { grid-template-columns: 1fr; }
  .videos-grid .vid-item:last-child { grid-column: auto; max-width: none; }

  .contact-sec { padding: 5rem 1.25rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form { padding: 1.5rem; }
  .cf-row { grid-template-columns: 1fr; }

  .footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-bar { gap: 1.5rem; }
  .hbar-sep { display: none; }
  .hero-scroll-hint { display: none; }
}

/* ═══════════════════════════════════
   RESPONSIVE — Small ≤ 480px
═══════════════════════════════════ */
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .footer-grid { grid-template-columns: 1fr; }
}
.footer p{
  
}
h6{
  color: white;
  transform: translate(-1em,6em);
  letter-spacing: 1.2px;
  color: grey;
}
.sec{
 transform: translateY(-1em);


}

.footer-tagline {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  font-weight: 400;
  max-width: 320px;   /* keeps text neat */
}

/* Tablet */
@media (max-width: 768px) {
  .footer-tagline {
    font-size: 13px;
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer-brand {
    text-align: center; /* logo + text center */
  }

  .footer-tagline {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 12px;
    padding: 0 10px;
  }
   
}





/* ============================================
   LEADERSHIP SECTION — Full Responsive CSS
   ============================================ */

/* --- Section Root --- */
.leadership-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  box-sizing: border-box;
  overflow-x: hidden; /* yahi sabse zaruri hai — right shift rokta hai */
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 12px;
}

.section-header .section-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.25;
  margin: 0;
}

.section-header .section-heading em {
  font-style: italic;
  color: #b8860b;
}

.header-rule {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #b8860b, #d4a843);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  width: 100%;
  box-sizing: border-box;
}

/* --- Leader Card --- */
.leader-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e8e0d0;
  border-radius: 12px;
  padding: 36px 30px 30px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  /* YEH LINE SABSE IMPORTANT HAI */
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* --- Corner Mark (decorative) --- */
.corner-mark {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-top: 3px solid #b8860b;
  border-left: 3px solid #b8860b;
  border-radius: 12px 0 0 0;
}

/* --- Passport / Photo Area --- */
.passport-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* margin-bottom: 20px; */
}

.passport-photo {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  border: 2px solid #e8e0d0;
  overflow: hidden;
  background: #f5f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.passport-photo img {
  width: 100%;
  height: 100%;
  object-fit:cover;
  /* display: inline; */
}


/* --- Silhouette (placeholder) --- */
.silhouette {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.silhouette-head {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d1c9b8;
  margin-bottom: 4px;
}

.silhouette-body {
  width: 54px;
  height: 40px;
  border-radius: 27px 27px 0 0;
  background: #d1c9b8;
}

/* --- Name & Title --- */
.leader-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 4px;
  text-align: center;
}

.leader-title {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b8860b;
  margin: 0;
  text-align: center;
}

/* --- Card Rule --- */
.card-rule {
  width: 100%;
  height: 1px;
  background: #e8e0d0;
  margin: 20px 0 16px;
}

/* --- Quote Glyph --- */
.quote-glyph {
  font-size: 2.8rem;
  font-family: Georgia, serif;
  color: #b8860b;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
  opacity: 0.5;
}

/* --- Message Text --- */
.leader-message {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #444;
  margin: 0 0 24px;
  font-style: italic;
}

/* --- Signature Row --- */
.signature-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.sig-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #b8860b, transparent);
}

.sig-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #b8860b;
  white-space: nowrap;
}



/* ============================================
   MEDIA QUERIES — Responsive Breakpoints
   ============================================ */

/* --- Tablet (768px se neeche) --- */
@media (max-width: 768px) {

  .leadership-section {
    padding: 60px 20px;
  }

  .section-header .section-heading {
    font-size: 1.85rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* Cards ab ek column mein aayengi */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .leader-card {
    padding: 30px 24px 26px;
  }

}

/* --- Small Mobile (480px se neeche) --- */
@media (max-width: 480px) {

  .leadership-section {
    padding: 48px 14px;
    position: relative;
    left:-0.5rem;
  }

  .section-header .section-heading {
    font-size: 1.5rem;
  }

  .section-header .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 2px;
  }

  .leader-card {
    padding: 26px 18px 22px;
    border-radius: 10px;
  }

  .corner-mark {
    width: 30px;
    height: 30px;
  }

  .passport-photo {
    width: 76px;
    height: 94px;
  }

  .silhouette-head {
    width: 30px;
    height: 30px;
  }

  .silhouette-body {
    width: 46px;
    height: 34px;
    border-radius: 23px 23px 0 0;
  }

  .leader-name {
    font-size: 1.05rem;
  }

  .leader-title {
    font-size: 0.72rem;
  }

  .quote-glyph {
    font-size: 2.2rem;
  }

  .leader-message {
    font-size: 0.85rem;
    line-height: 1.65;
  }

  .signature-row {
    gap: 8px;
  }

  .sig-name {
    font-size: 0.75rem;
  }

}

/* --- Extra Small (360px se neeche — chhotti screens) --- */
@media (max-width: 360px) {

  .leadership-section {
    padding: 40px 10px;
  }

  .section-header .section-heading {
    font-size: 1.3rem;
  }

  .leader-card {
    padding: 22px 14px 20px;
  }

  .leader-message {
    font-size: 0.82rem;
  }

}
    