/* =====================================================
   SERVICES.CSS — Sukrish SteelVridhi | Redesigned
   Font: Inter + Playfair Display | Full Width
   Palette: --gold #d0a03a | --gold-2 #f3c85f
   ===================================================== */

/* =====================================================
   FORCE FULL WIDTH — Override any wrapping
===================================================== */
.sv-banner .wrap,
.sv-core,
.sv-detail,
.sv-industries,
.sv-value,
.standards-strip,
.sv-nav,
.sv-core-grid,
.sv-industries-grid,
.sv-value-grid,
.sv-detail-inner {
  /* max-width: 100% !important;
  width: 100% !important;
  padding-left: 3% !important;
  padding-right: 3% !important;
  margin-left: 0 !important;
  margin-right: 0 !important; */
}

/* ---------------------------------------------------
   1. PAGE BANNER
--------------------------------------------------- */
.sv-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #141414, #1d1812, #141414, #12181f);
  background-size: 300% 300%;
  animation: svBgShift 16s ease infinite;
  color: #fff;
  padding: 210px 0 100px;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
}
/* 
.sv-banner .wrap {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 5% !important;
} */

@keyframes svBgShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.sv-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  z-index: 0;
}

.sv-banner-glow {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208,160,58,.20), transparent 70%);
  z-index: 0;
  pointer-events: none;
  animation: svGlowPulse 6s ease-in-out infinite;
}

.sv-banner-glow--2 {
  top: auto;
  bottom: -200px;
  right: auto;
  left: -150px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(243,200,95,.14), transparent 70%);
  animation-delay: 2s;
}

@keyframes svGlowPulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.12); }
}

.sv-banner-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.sv-crumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #cfcfcf;
  margin-bottom: 18px;
  font-weight: 600;
}

.sv-crumb a       { color: #cfcfcf; transition: .3s; text-decoration: none; }
.sv-crumb a:hover { color: var(--gold-2); }
.sv-crumb i       { opacity: .5; font-style: normal; }
.sv-crumb b       { color: var(--gold-2); font-weight: 800; }

.sv-banner h1 {
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.16;
  font-weight: 900;
  margin-bottom: 20px;
}

.sv-banner h1 span { color: var(--gold-2); }

.sv-banner p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #d7d7d7;
  max-width: 640px;
  margin-bottom: 32px;
}

.sv-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------------------------------------------------
   2. QUICK NAV
--------------------------------------------------- */
.sv-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid #ece6da;
  box-shadow: 0 8px 25px rgba(0,0,0,.04);
  width: 100%;
  padding: 0 3% !important;
}

.sv-nav-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding: 14px 0;
  scrollbar-width: thin;
  width: 100%;
}

.sv-nav-inner::-webkit-scrollbar       { height: 4px; }
.sv-nav-inner::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

.sv-nav-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 9px 18px;
  border: 1px solid #ece6da;
  border-radius: 30px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #3a3a3a;
  transition: .3s ease;
  flex-shrink: 0;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.sv-nav-inner a i { color: var(--gold); font-size: .85em; }

.sv-nav-inner a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.sv-nav-inner a:hover i { color: #fff; }
/* =====================================================
   CORE SERVICES — WITH FULL BACKGROUND IMAGES
===================================================== */
.sv-core {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff, #f5f5f2);
  width: 100%;
}

.sv-core-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  padding: 0 3%;
}

.sv-core-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  font-weight: 900;
  color: #111;
  margin: 10px 0 16px;
}

.sv-core-header p {
  font-family: 'Inter', sans-serif;
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
}

.sv-core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  padding: 0 3%;
}

.sv-core-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  transition: all .4s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 4px 15px rgba(0,0,0,.06);
  cursor: pointer;
}

.sv-core-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

.sv-core-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(112, 111, 111, 0.1) 0%, 
    rgba(100, 98, 98, 0.4) 50%, 
    rgba(53, 53, 53, 0.75) 100%
  );
  transition: background .4s ease;
  z-index: 1;
}

.sv-core-card:hover .sv-core-overlay {
  background: linear-gradient(180deg, 
    rgba(75, 74, 74, 0.05) 0%, 
    rgba(99, 97, 97, 0.3) 50%, 
    rgba(117, 116, 116, 0.7) 100%
  );
}

.sv-core-content {
  position: relative;
  z-index: 2;
  padding: 30px 28px 28px;
  width: 100%;
  color: #fff;
}

.sv-core-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(208,160,58,0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(208,160,58,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-2);
  margin-bottom: 14px;
  transition: all .4s ease;
}

.sv-core-card:hover .sv-core-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  transform: scale(1.1) rotate(-6deg);
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(208,160,58,.3);
}

.sv-core-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.sv-core-content p {
  font-family: 'Inter', sans-serif;
  font-size: .99rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 16px;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
  max-width: 90%;
}

.sv-core-link {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-2);
  text-decoration: none;
  transition: all .3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}

.sv-core-link:hover {
  color: #fff;
  gap: 12px;
}

/* ---------------------------------------------------
   4. DETAIL SECTIONS — FULL WIDTH
--------------------------------------------------- */
.sv-detail {
  padding: 80px 0;
  width: 100%;
  scroll-margin-top: 80px;
}

.sv-detail--alt {
  background: #faf8f4;
}

.sv-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 3% !important;
  margin: 0 !important;
}

.sv-detail--alt .sv-detail-inner {
  grid-template-columns: 1fr 1fr;
}

.sv-detail--alt .sv-detail-image { order: 2; }
.sv-detail--alt .sv-detail-content { order: 1; }

.sv-detail-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.sv-detail-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.sv-detail-image:hover img {
  transform: scale(1.05);
}

.sv-detail-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #111;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  padding: 8px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(208,160,58,.35);
}

.sv-detail-content .eyebrow { display: inline-flex; }

.sv-detail-content h2 {
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 900;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.08;
}

.sv-detail-content > p {
  font-family: 'Inter', sans-serif;
  color: #5f636b;
  line-height: 1.8;
  font-size: .98rem;
  max-width: 560px;
  margin-bottom: 26px;
}

.sv-detail-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 30px;
  max-width: 560px;
}

.sv-detail-list li {
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 500;
  color: #2a2a2a;
  line-height: 1.4;
}

.sv-detail-list li i {
  color: var(--gold);
  font-size: .8rem;
  flex-shrink: 0;
}

.sv-detail-link {
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #141414;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  transition: all .3s ease;
  text-decoration: none;
}

.sv-detail-link:hover {
  color: #8a6200;
  gap: 12px;
  border-color: var(--gold-2);
}

/* ---------------------------------------------------
   5. INDUSTRIES — WITH BACKGROUND IMAGES
--------------------------------------------------- */
.sv-industries {
  padding: 80px 0;
  background: linear-gradient(180deg, #f5f5f2, #fff);
  width: 100%;
}

.sv-industries-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  padding: 0 3%;
}

.sv-industries-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  font-weight: 900;
  color: #111;
  margin: 10px 0 16px;
}

.sv-industries-header p {
  font-family: 'Inter', sans-serif;
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
}

.sv-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  padding: 0 3%;
}

.sv-industry-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  transition: all .4s cubic-bezier(.22,1,.36,1);
  cursor: default;
}

.sv-industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

.sv-industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(329deg, rgba(0, 0, 0, .1) 0%, rgb(0 0 0 / 32%) 60%, rgb(0 0 0 / 49%) 100%);
  transition: background .4s ease;
}

.sv-industry-card:hover .sv-industry-overlay {
  background: linear-gradient(329deg, rgba(0, 0, 0, .1) 0%, rgb(0 0 0 / 32%) 60%, rgb(0 0 0 / 49%) 100%);
}

.sv-industry-content {
  position: relative;
  z-index: 2;
  padding: 28px 24px 24px;
  width: 100%;
}

.sv-industry-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(208,160,58,.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(208,160,58,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-2);
  margin-bottom: 10px;
  transition: all .4s ease;
}

.sv-industry-card:hover .sv-industry-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  transform: scale(1.1);
}

.sv-industry-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}

.sv-industry-content p {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}

/* ---------------------------------------------------
   6. VALUE ADDED SERVICES
--------------------------------------------------- */
.sv-value {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff, #f5f5f2);
  width: 100%;
}

.sv-value-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  padding: 0 3%;
}

.sv-value-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  text-transform: uppercase;
  font-weight: 900;
  color: #111;
  margin: 10px 0 16px;
}

.sv-value-header p {
  font-family: 'Inter', sans-serif;
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
}

.sv-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  padding: 0 3%;
}

.sv-value-card {
  background: #fff;
  border: 1px solid #ece6da;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all .4s cubic-bezier(.22,1,.36,1);
  position: relative;
  overflow: hidden;
}

.sv-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}

.sv-value-card:hover::before { transform: scaleX(1); }

.sv-value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(208,160,58,.4);
  box-shadow: 0 20px 45px rgba(208,160,58,.12);
}

.sv-value-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 14px;
  transition: transform .4s ease;
}

.sv-value-card:hover .sv-value-icon {
  transform: scale(1.15) rotate(-4deg);
}

.sv-value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 8px;
}

.sv-value-card p {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: #777;
  line-height: 1.6;
}

/* ---------------------------------------------------
   7. RESPONSIVE BREAKPOINTS
--------------------------------------------------- */

/* 1200px */
@media (max-width: 1200px) {
  .sv-core-grid { grid-template-columns: repeat(3, 1fr); }
  .sv-industries-grid { grid-template-columns: repeat(3, 1fr); }
  .sv-value-grid { grid-template-columns: repeat(4, 1fr); }
}

/* 1024px */
@media (max-width: 1024px) {
  .sv-banner { padding: 180px 0 80px; min-height: 440px; }
  .sv-detail-inner { gap: 40px; }
  .sv-detail-image img { height: 320px; }
}

/* 992px */
@media (max-width: 992px) {
  .sv-core-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-industries-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-value-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-core-image { height: 160px; }
}

/* 768px */
@media (max-width: 768px) {
  .sv-banner { padding: 160px 0 70px; min-height: 400px; }
  .sv-banner p { font-size: .93rem; }
  
  .sv-detail-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .sv-detail--alt .sv-detail-inner { grid-template-columns: 1fr; }
  .sv-detail--alt .sv-detail-image { order: 1; }
  .sv-detail--alt .sv-detail-content { order: 2; }
  
  .sv-detail-image img { height: 280px; }
  .sv-detail-list { grid-template-columns: 1fr; }
  
  .sv-nav-inner a { padding: 8px 14px; font-size: .72rem; }
  .sv-core-image { height: 140px; }
}

/* 640px */
@media (max-width: 640px) {
  .sv-banner-actions { flex-direction: column; align-items: stretch; }
  .sv-banner-actions .btn { text-align: center; justify-content: center; }
  .sv-core-grid { grid-template-columns: 1fr 1fr; }
  .sv-industries-grid { grid-template-columns: 1fr 1fr; }
  .sv-value-grid { grid-template-columns: 1fr 1fr; }
  .sv-core-content { padding: 16px 16px 20px; }
  .sv-core-image { height: 130px; }
  .sv-industry-card { min-height: 180px; }
  .sv-detail-image img { height: 240px; }
  .sv-banner .wrap { padding: 0 4% !important; }
}

/* 480px */
@media (max-width: 480px) {
  .sv-banner { padding: 150px 0 60px; min-height: 380px; }
  .sv-banner h1 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .sv-crumb { font-size: .72rem; }
  
  .sv-core-grid { grid-template-columns: 1fr; }
  .sv-industries-grid { grid-template-columns: 1fr; }
  .sv-value-grid { grid-template-columns: 1fr; }
  
  .sv-core { padding: 50px 0; }
  .sv-detail { padding: 50px 0; }
  .sv-industries { padding: 50px 0; }
  .sv-value { padding: 50px 0; }
  
  .sv-detail-image img { height: 200px; }
  .sv-detail-content h2 { font-size: 1.6rem; }
  .sv-detail-list li { font-size: .82rem; }
  
  .sv-detail-badge {
    font-size: 1.1rem;
    padding: 6px 14px;
    bottom: 14px;
    right: 14px;
  }
  
  .sv-nav-inner a { padding: 7px 12px; font-size: .68rem; }
  .sv-core-image { height: 160px; }
  .sv-industry-card { min-height: 160px; }
  .sv-core-grid,
  .sv-industries-grid,
  .sv-value-grid { padding: 0 4%; }
}

/* 375px */
@media (max-width: 375px) {
  .sv-banner h1 { font-size: 1.55rem; }
  .sv-banner p { font-size: .88rem; }
  .sv-detail-content h2 { font-size: 1.4rem; }
  .sv-core-content h3 { font-size: 1rem; }
  .sv-value-card h3 { font-size: .95rem; }
  .sv-industry-content h3 { font-size: .9rem; }
  .sv-core-image { height: 140px; }
}

/* 320px */
@media (max-width: 320px) {
  .sv-nav-inner a { padding: 6px 10px; font-size: .62rem; gap: 4px; }
  .sv-detail-image img { height: 170px; }
  .sv-core-content { padding: 12px 12px 16px; }
  .sv-core-image { height: 120px; }
  .sv-industry-card { min-height: 140px; }
}