/* =========================================================
   ASHAPURA INFRASTRUCTURE — STYLESHEET
   ========================================================= */

/* -----------------------------
   1. TOKENS / VARIABLES
----------------------------- */
:root{
  --red:        #E31E24;
  --red-dark:   #A8141A;
  --red-rgb:    227,30,36;
  --navy:       #0E1C36;
  --navy-2:     #16294D;
  --navy-rgb:   14,28,54;
  --white:      #FFFFFF;
  --off-white:  #F6F5F2;
  --grey-100:   #F0F0EE;
  --grey-200:   #E4E3DF;
  --grey-400:   #A9A9A4;
  --charcoal:   #23252A;
  --charcoal-70:#4A4C52;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-sm: 0 2px 10px rgba(14,28,54,0.06);
  --shadow-md: 0 12px 30px rgba(14,28,54,0.12);
  --shadow-lg: 0 24px 60px rgba(14,28,54,0.18);

  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* -----------------------------
   2. BASE / RESET
----------------------------- */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5{
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}
p{ color: var(--charcoal-70); line-height: 1.7; margin: 0; }
a{ text-decoration: none; color: inherit; }
img{ max-width: 100%; display:block; }
.container-xl{ max-width: 1280px; }

::selection{ background: var(--red); color: var(--white); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* -----------------------------
   3. UTILITIES
----------------------------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .85rem;
}
.eyebrow::before{
  content:"";
  width: 28px; height: 2px;
  background: var(--red);
  display:inline-block;
}
.section-pad{ padding: 100px 0; }
@media (max-width: 767.98px){ .section-pad{ padding: 64px 0; } }
.bg-off-white{ background: var(--off-white); }
.bg-navy{ background: var(--navy) !important; }
.text-navy{ color: var(--navy) !important; }
.text-red{ color: var(--red) !important; }

.btn{
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: .9rem;
  border-radius: var(--radius-sm);
  padding: .85rem 1.9rem;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-red{
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(var(--red-rgb),.28);
}
.btn-red:hover{ background: var(--red-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline-light-line{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-light-line:hover{ background: var(--white); color: var(--navy); }
.btn-navy{
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover{ background: var(--navy-2); color: var(--white); transform: translateY(-2px); }
.btn-outline-navy{
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover{ background: var(--navy); color: var(--white); }
.btn-sm-pad{ padding: .65rem 1.4rem; font-size: .8rem; }

/* Reveal on scroll */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  .hero-slide, .hero-image{ transition:none; }
  .hero-image, .hero-slide.active .hero-image{ transform:none; }
}

/* Shared photography treatment */
.site-photo{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.photo-right{ object-position:72% center; }
.photo-center{ object-position:55% center; }
.photo-top{ object-position:center 22%; }

/* -----------------------------
   4. TOP CONTACT BAR
----------------------------- */
.topbar{
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: 7px 0;
}
.topbar a{ color: rgba(255,255,255,.85); transition: color var(--transition); }
.topbar a:hover{ color: var(--red); }
.topbar .divider{ width:1px; height:14px; background: rgba(255,255,255,.25); display:inline-block; margin: 0 14px; vertical-align: middle; }
.topbar-social a{
  display:inline-flex; align-items:center; justify-content:center;
  width: 26px; height:26px; border-radius:50%;
  border: 1px solid rgba(255,255,255,.3);
  margin-left: 8px; font-size: .75rem;
}
.topbar-social a:hover{ background: var(--red); border-color: var(--red); }

/* -----------------------------
   5. NAVBAR
----------------------------- */
.navbar-main{
  background: var(--white);
  padding: 7px 0;
  position: sticky;
  top: 0;
  z-index: 1035;
  transition: all var(--transition);
  box-shadow: 0 1px 0 rgba(14,28,54,.06);
}
.navbar-main.is-sticky{
  padding: 4px 0;
  box-shadow: var(--shadow-md);
}
.brand-logo{ display:flex; align-items:center; flex:0 0 auto; margin-right:1.25rem; padding:0; }
.brand-logo-image{
  width:132px;
  height:auto;
  flex-shrink:0;
  border-radius:6px;
  object-fit:contain;
}
.navbar-toggler{ border:0; padding:.35rem; box-shadow:none !important; }

.nav-main .nav-link{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: .5rem 1rem !important;
  position: relative;
}
.nav-main .nav-link.active,
.nav-main .nav-link:hover{ color: var(--red); }
.nav-main .nav-link.active::after{
  content:"";
  position:absolute; left:1rem; right:1rem; bottom:2px; height:2px;
  background: var(--red);
}
.dropdown-menu{ border:none; box-shadow: var(--shadow-md); border-radius: var(--radius-sm); }
.dropdown-item{ font-size:.9rem; padding:.55rem 1.2rem; }
.dropdown-item:hover{ background: var(--off-white); color: var(--red); }

/* -----------------------------
   6. HERO
----------------------------- */
.hero{ position: relative; height: clamp(540px, 68vh, 700px); min-height: 540px; overflow:hidden; background:var(--navy); }
.hero-slide{
  position:absolute; inset:0;
  display:flex; align-items:center;
  visibility:hidden; opacity:0; transition: opacity .85s ease, visibility .85s ease;
}
.hero-slide.active{ visibility:visible; opacity:1; z-index:2; }
.hero-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transform:scale(1.015);
  transition:transform 6s ease;
}
.hero-slide.active .hero-image{ transform:scale(1.045); }
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(7,17,35,.92) 0%, rgba(8,20,42,.72) 38%, rgba(14,28,54,.24) 72%, rgba(14,28,54,.08) 100%);
}
.hero-content{
  position:relative;
  z-index:3;
  color:var(--white);
  width:100%;
  max-width:none;
  padding-inline:max(84px, calc((100vw - 1280px) / 2 + 18px));
}
.hero-content > *{ max-width:620px; }
.hero-content .eyebrow{ color:#FF6B6E; }
.hero-content .eyebrow::before{ background:#FF6B6E; }
.hero-heading{
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.hero-heading span{ color: var(--red); }
.hero-text{ color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 520px; margin-bottom: 2rem; }
.hero-actions{ display:flex; gap: 1rem; flex-wrap:wrap; }

.hero-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:4; width:48px; height:48px; border-radius:50%;
  background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.4);
  color:var(--white); display:flex; align-items:center; justify-content:center;
  transition: all var(--transition);
}
.hero-arrow:hover{ background: var(--red); border-color: var(--red); }
.hero-arrow.prev{ left: 24px; }
.hero-arrow.next{ right: 24px; }

.hero-dots{
  position:absolute; bottom:26px; left:0; right:0; z-index:4;
  display:flex; justify-content:center; gap: 10px;
}
.hero-dots button{
  width:34px; height:4px; border:none; background: rgba(255,255,255,.35);
  transition: background var(--transition); padding:0; border-radius:2px;
}
.hero-dots button.active{ background: var(--red); }

@media (max-width: 767.98px){
  .hero{ height: clamp(580px, calc(100svh - 86px), 680px); min-height:580px; padding:0; }
  .hero-image{ object-position:65% center; }
  .hero-overlay{ background: linear-gradient(180deg, rgba(8,18,37,.35) 0%, rgba(8,18,37,.72) 45%, rgba(8,18,37,.97) 100%); }
  .hero-slide{ align-items:flex-end; }
  .hero-content{ padding:80px 18px 76px; }
  .hero-arrow{ display:none; }
}

/* -----------------------------
   7. FEATURE STRIP
----------------------------- */
.feature-strip{ margin-top: -46px; position: relative; z-index: 10; }
.feature-card{
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1.6rem 1.4rem;
  display:flex; align-items:center; gap: 1rem;
  height:100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon{
  flex-shrink:0; width:52px; height:52px; border-radius:50%;
  background: rgba(var(--red-rgb),.08);
  color: var(--red);
  display:flex; align-items:center; justify-content:center;
  font-size:1.35rem;
}
.feature-card .f-eyebrow{ font-size:.68rem; letter-spacing:1.5px; color: var(--grey-400); text-transform:uppercase; font-family: var(--font-display); }
.feature-card h3{ font-size: 1.15rem; margin: .1rem 0 .15rem; }
.feature-card small{ color: var(--charcoal-70); font-size:.82rem; }

/* -----------------------------
   8. ABOUT
----------------------------- */
.about-media{ position:relative; }
.about-media > .site-photo{ height: 460px; border-radius: var(--radius-md); }
.about-media-float{
  position:absolute; width: 42%; bottom:-32px; right:-24px;
  border: 6px solid var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.about-media-float .site-photo{ height:190px; border-radius:calc(var(--radius-md) - 2px); }
.about-badge{
  position:absolute; top:26px; left:-18px;
  background: var(--red); color:var(--white);
  padding: .9rem 1.2rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-family: var(--font-display); text-align:center; line-height:1.1;
}
.about-badge .yr{ font-size:1.5rem; font-weight:700; display:block; }
.about-badge .lbl{ font-size:.62rem; letter-spacing:1.5px; text-transform:uppercase; }
.about-check{ list-style:none; padding:0; margin: 1.6rem 0; }
.about-check li{ display:flex; align-items:flex-start; gap:.7rem; margin-bottom:.8rem; font-weight:500; color:var(--navy); }
.about-check i{ color:var(--red); font-size:1.1rem; margin-top:.1rem; }
@media (max-width:991.98px){
  .about-media-float{ display:none; }
  .about-badge{ left:0; }
}

/* -----------------------------
   9. EQUIPMENT CARDS
----------------------------- */
.equip-card{
  background: var(--white);
  border-radius: var(--radius-md);
  overflow:hidden;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
  height:100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.equip-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.equip-media{ height: 210px; overflow:hidden; }
.equip-media .site-photo{ transition: transform .6s ease; }
.equip-card:hover .equip-media .site-photo{ transform: scale(1.08); }
.equip-body{ padding: 1.4rem 1.5rem 1.6rem; }
.equip-body h3{ font-size:1.15rem; margin-bottom:.4rem; }
.equip-body p{ font-size:.9rem; margin-bottom: 1rem; }
.equip-link{
  font-family: var(--font-display); font-weight:600; font-size:.85rem;
  color: var(--red); letter-spacing:.5px; text-transform:uppercase;
  display:inline-flex; align-items:center; gap:.4rem;
}
.equip-link i{ transition: transform var(--transition); }
.equip-card:hover .equip-link i{ transform: translateX(5px); }

/* -----------------------------
   10. CTA BANNER
----------------------------- */
.cta-banner{
  position:relative; overflow:hidden; border-radius: var(--radius-md);
  background: var(--navy);
}
.cta-banner > .site-photo{ position:absolute; inset:0; height:100%; opacity:.55; object-position:center 46%; }
.cta-banner-overlay{ position:absolute; inset:0; background: linear-gradient(90deg, rgba(14,28,54,.96) 20%, rgba(14,28,54,.55) 100%); }
.cta-banner-content{ position:relative; z-index:2; padding: 3.4rem 2.6rem; }
.cta-banner-content h2{ color:var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom:.6rem; }
.cta-banner-content p{ color: rgba(255,255,255,.75); max-width: 520px; margin-bottom: 1.6rem; }

/* -----------------------------
   11. WHY CHOOSE US
----------------------------- */
.why-media .site-photo{ height: 520px; border-radius: var(--radius-md); }
.why-item{ display:flex; gap:1rem; margin-bottom: 1.8rem; }
.why-item .why-icon{
  flex-shrink:0; width:54px; height:54px; border-radius: var(--radius-sm);
  border: 2px solid var(--red); color:var(--red);
  display:flex; align-items:center; justify-content:center; font-size:1.3rem;
}
.why-item h3{ font-size: 1.05rem; margin-bottom:.3rem; }
.why-item p{ font-size:.88rem; }

/* -----------------------------
   12. INDUSTRIES / CLIENTS
----------------------------- */
.clients-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(var(--red-rgb),.07), transparent 25%),
    linear-gradient(180deg, #f7f8fa 0%, #fff 100%);
}
.clients-section::after{
  content:"";
  position:absolute;
  right:-130px;
  bottom:-190px;
  width:360px;
  height:360px;
  border:60px solid rgba(var(--navy-rgb),.025);
  border-radius:50%;
  pointer-events:none;
}
.container-fluid.clients-container{
  width:100%;
  max-width:none;
  padding-right:clamp(14px, 2vw, 36px);
  padding-left:clamp(14px, 2vw, 36px);
}
.clients-intro{ max-width:680px; margin:-.25rem auto 0; font-size:.94rem; line-height:1.7; }
.clients-carousel-shell{
  position:relative;
  z-index:1;
  padding:24px 24px 0;
  border:1px solid rgba(var(--navy-rgb),.08);
  border-radius:18px;
  background:rgba(255,255,255,.88);
  box-shadow:0 24px 55px rgba(var(--navy-rgb),.08);
}
.clients-carousel:not(.owl-loaded){
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
  overflow:hidden;
}
.clients-carousel .owl-stage{ display:flex; }
.clients-carousel .owl-item{ display:flex; min-width:0; }
.client-slide{ width:100%; height:100%; padding:5px 0 16px; }
.client-card{
  position:relative;
  display:flex;
  flex-direction:column;
  height:100%;
  min-height:218px;
  overflow:hidden;
  border:1px solid #e7eaf0;
  border-radius:14px;
  background:var(--white);
  box-shadow:0 10px 24px rgba(var(--navy-rgb),.065);
  transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.client-card::before{
  content:"";
  position:absolute;
  z-index:2;
  top:0;
  left:0;
  width:54px;
  height:3px;
  background:var(--red);
  transition:width var(--transition);
}
.client-card:hover{
  transform:translateY(-5px);
  border-color:rgba(var(--red-rgb),.25);
  box-shadow:0 18px 35px rgba(var(--navy-rgb),.12);
}
.client-card:hover::before{ width:100%; }
.client-logo-box{
  display:flex;
  align-items:center;
  justify-content:center;
  height:148px;
  padding:28px 24px 24px;
  border-bottom:1px solid #eef0f4;
  background:linear-gradient(145deg, #fff, #fafbfc);
}
.client-logo{
  display:block;
  width:auto !important;
  max-width:100%;
  height:auto;
  max-height:70px;
  object-fit:contain;
}
.client-logo-birla{ max-height:86px; }
.client-logo-cemindia{ max-height:76px; }
.client-logo-ncc{ max-height:96px; }
.client-card-footer{
  display:flex;
  align-items:center;
  gap:.75rem;
  min-height:68px;
  padding:14px 16px;
}
.client-number{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  border-radius:50%;
  color:var(--red);
  background:rgba(var(--red-rgb),.08);
  font-family:var(--font-display);
  font-size:.66rem;
  font-weight:700;
}
.client-card h3{ margin:0; color:var(--navy); font-size:.82rem; letter-spacing:.65px; line-height:1.25; }
.clients-carousel .owl-nav{
  display:flex;
  justify-content:center;
  gap:.65rem;
  margin:8px 0 18px;
}
.clients-carousel .owl-nav button.owl-prev,
.clients-carousel .owl-nav button.owl-next{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  margin:0;
  border:1px solid rgba(var(--navy-rgb),.16);
  border-radius:50%;
  color:var(--navy);
  background:var(--white);
  font-size:1rem;
  transition:all var(--transition);
}
.clients-carousel .owl-nav button:hover{ border-color:var(--red); color:var(--white); background:var(--red); }
.clients-carousel .owl-dots{ display:flex; justify-content:center; gap:7px; margin-bottom:20px; }
.clients-carousel .owl-dot span{ display:block; width:7px; height:7px; border-radius:20px; background:#cdd2da; transition:all var(--transition); }
.clients-carousel .owl-dot.active span{ width:24px; background:var(--red); }
.clients-assurance{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0;
  margin:0 -24px;
  padding:15px 20px;
  border-radius:0 0 18px 18px;
  color:rgba(255,255,255,.72);
  background:var(--navy);
}
.clients-assurance span{
  display:flex;
  align-items:center;
  gap:.55rem;
  padding:0 2rem;
  border-right:1px solid rgba(255,255,255,.14);
  font-family:var(--font-display);
  font-size:.7rem;
  font-weight:600;
  letter-spacing:.75px;
  text-transform:uppercase;
}
.clients-assurance span:last-child{ border-right:0; }
.clients-assurance i{ color:#ff6b6f; font-size:.95rem; }

/* -----------------------------
   13. PROCESS STEPS
----------------------------- */
.process-row{ position:relative; }
.process-row::before{
  content:"";
  position:absolute; top:26px; left:8%; right:8%; height:2px;
  background: repeating-linear-gradient(90deg, var(--grey-200) 0 10px, transparent 10px 18px);
}
@media (max-width:767.98px){ .process-row::before{ display:none; } }
.step-item{ text-align:center; position:relative; z-index:2; }
.step-num{
  width:54px; height:54px; border-radius:50%;
  background: var(--white); border:2px solid var(--red); color:var(--red);
  font-family: var(--font-display); font-weight:700; font-size:1.15rem;
  display:flex; align-items:center; justify-content:center; margin: 0 auto 1.1rem;
}
.step-item h3{ font-size:1.05rem; margin-bottom:.4rem; }
.step-item p{ font-size:.85rem; }

/* -----------------------------
   14. STATS
----------------------------- */
.stats-section{ position:relative; overflow:hidden; }
.stat-box{ text-align:center; padding: 1.6rem 1rem; border-right: 1px solid rgba(255,255,255,.12); }
.stat-box:last-child{ border-right:none; }
.stat-num{ font-family: var(--font-display); font-size: clamp(2rem,4vw,2.8rem); font-weight:700; color:var(--white); line-height:1; }
.stat-lbl{ color: rgba(255,255,255,.65); font-size:.82rem; letter-spacing:1.5px; text-transform:uppercase; margin-top:.5rem; }
@media (max-width:767.98px){
  .stat-box{ border-right:none; border-bottom:1px solid rgba(255,255,255,.12); margin-bottom: 1rem; padding-bottom: 1.6rem; }
}

/* -----------------------------
   15. SAFETY
----------------------------- */
.safety-media .site-photo{ height:460px; border-radius: var(--radius-md); }
.safety-feature{ display:flex; align-items:center; gap:.9rem; padding: 1rem 0; border-top:1px solid var(--grey-200); }
.safety-feature:last-child{ border-bottom:1px solid var(--grey-200); }
.safety-feature i{ color:var(--red); font-size:1.3rem; }
.safety-feature span{ font-weight:600; color:var(--navy); font-family: var(--font-display); letter-spacing:.4px; text-transform:uppercase; font-size:.9rem; }

/* -----------------------------
   16. GALLERY
----------------------------- */
.gallery-section{ position:relative; overflow:hidden; }
.gallery-section::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  right:-210px;
  top:80px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(var(--red-rgb),.08) 0%, rgba(var(--red-rgb),0) 70%);
  pointer-events:none;
}
.gallery-intro{ max-width:650px; margin:-.35rem auto 0; font-size:.96rem; }
.gallery-showcase{
  position:relative;
  display:grid;
  grid-template-columns:1.08fr 1fr 1.08fr;
  gap:20px;
  height:clamp(520px, 46vw, 620px);
}
.gallery-stack{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  grid-template-rows:repeat(2, minmax(0, 1fr));
  gap:20px;
  min-width:0;
  min-height:0;
}
.gallery-card{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-width:0;
  min-height:0;
  padding:0;
  border:0;
  border-radius:14px;
  overflow:hidden;
  background:var(--navy);
  box-shadow:0 12px 30px rgba(var(--navy-rgb),.12);
  cursor:pointer;
  isolation:isolate;
}
.gallery-card .site-photo{ transition:transform .6s cubic-bezier(.2,.65,.3,1); }
.gallery-card:hover .site-photo{ transform:scale(1.055); }
.gallery-card-product{ background:#fff; }
.gallery-card-product .site-photo{
  object-fit:contain;
  object-position:center 42%;
  padding:24px 20px 58px;
}
.gallery-card-product:hover .site-photo{ transform:scale(1.035); }
.gallery-shade{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(180deg, rgba(5,15,33,.03) 30%, rgba(5,15,33,.9) 100%);
  pointer-events:none;
}
.gallery-card-product .gallery-shade{
  background:linear-gradient(180deg, transparent 48%, rgba(5,15,33,.93) 100%);
}
.gallery-caption{
  position:absolute;
  z-index:2;
  left:0;
  right:0;
  bottom:0;
  padding:22px;
  text-align:left;
  pointer-events:none;
}
.gallery-caption small{
  display:block;
  margin-bottom:.28rem;
  color:#ff6b6f;
  font-family:var(--font-display);
  font-size:.68rem;
  font-weight:700;
  letter-spacing:1.7px;
  text-transform:uppercase;
}
.gallery-caption strong{
  display:block;
  color:var(--white);
  font-family:var(--font-display);
  font-size:1.08rem;
  font-weight:600;
  letter-spacing:.6px;
  line-height:1.18;
  text-transform:uppercase;
}
.gallery-stack .gallery-caption{ padding:16px; }
.gallery-stack .gallery-caption strong{ font-size:.9rem; }
.gallery-view-icon{
  position:absolute;
  z-index:3;
  top:16px;
  right:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:50%;
  color:var(--white);
  background:var(--red);
  box-shadow:0 10px 24px rgba(var(--red-rgb),.3);
  opacity:0;
  transform:translateY(-8px);
  transition:opacity var(--transition), transform var(--transition);
  pointer-events:none;
}
.gallery-card:hover .gallery-view-icon,
.gallery-card:focus-visible .gallery-view-icon{ opacity:1; transform:translateY(0); }
.gallery-card:focus-visible{ outline:3px solid var(--red); outline-offset:4px; }
.gallery-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  margin-top:24px;
  padding:18px 20px 18px 24px;
  border-radius:14px;
  background:var(--navy);
  box-shadow:var(--shadow-md);
}
.gallery-cta p{ color:rgba(255,255,255,.82); font-size:.9rem; }
.gallery-cta p i{ color:var(--red); margin-right:.55rem; }

/* -----------------------------
   17. TESTIMONIALS
----------------------------- */
.testi-card{
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 1.8rem; height:100%; border: 1px solid var(--grey-200);
}
.testi-quote{ color: var(--red); font-size:1.8rem; line-height:1; margin-bottom:.6rem; display:block; }
.testi-card p.testi-text{ color: var(--charcoal); margin-bottom: 1.3rem; font-size:.95rem; }
.testi-person{ display:flex; align-items:center; gap:.8rem; }
.testi-avatar{
  width:44px; height:44px; border-radius:50%; background: var(--navy);
  color:var(--white); display:flex; align-items:center; justify-content:center; font-family: var(--font-display); font-weight:700;
}
.testi-person strong{ display:block; color:var(--navy); font-size:.92rem; }
.testi-person small{ color: var(--grey-400); font-size:.78rem; }
.testi-stars{ color:var(--red); font-size:.68rem; font-weight:700; letter-spacing:.3px; margin-top:.15rem; text-transform:uppercase; }

/* -----------------------------
   18. CONTACT CTA (red+navy)
----------------------------- */
.contact-cta{
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy) 55%, var(--red-dark) 55%, var(--red) 100%);
  color: var(--white);
}
.contact-cta h2{ color:var(--white); }
.contact-cta p{ color: rgba(255,255,255,.8); }

/* -----------------------------
   19. CONTACT / ENQUIRY
----------------------------- */
.contact-info-item{ display:flex; gap:1rem; margin-bottom: 1.6rem; }
.contact-info-item .ci-icon{
  flex-shrink:0; width:48px; height:48px; border-radius:50%;
  background: rgba(var(--red-rgb),.08); color:var(--red);
  display:flex; align-items:center; justify-content:center; font-size:1.15rem;
}
.contact-info-item > div:last-child{ flex:1 1 auto; min-width:0; }
.contact-info-item h4{ font-size:.78rem; letter-spacing:1.5px; text-transform:uppercase; color: var(--grey-400); margin-bottom:.25rem; }
.contact-info-item p{
  max-width:100%;
  color:var(--navy);
  font-weight:600;
  font-size:.95rem;
  overflow-wrap:anywhere;
  word-break:break-word;
}
.contact-info-item p a{ color:inherit; }
.contact-info-item p a:hover{ color:var(--red); }

.enquiry-form{
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 2rem;
}
.form-control, .form-select{
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-200);
  padding: .75rem .9rem;
  font-size: .92rem;
}
.form-control:focus, .form-select:focus{
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(var(--red-rgb),.12);
}
.form-label{ font-size:.82rem; font-weight:600; color:var(--navy); margin-bottom:.35rem; }
.was-validated .form-control:invalid, .form-control.is-invalid{ border-color:#dc3545; }
.form-feedback-msg{ font-size:.75rem; color: var(--charcoal-70); margin-top:.35rem; display:none; }
.form-success{
  display:none; background: rgba(40,167,69,.08); border: 1px solid rgba(40,167,69,.3);
  color:#1c7c34; padding: .9rem 1.1rem; border-radius: var(--radius-sm); font-size:.88rem; margin-top: 1rem;
}

/* -----------------------------
   20. FOOTER
----------------------------- */
.site-footer{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(var(--red-rgb),.08), transparent 26%),
    linear-gradient(135deg, #071225 0%, #0a1830 58%, #081326 100%);
  color:rgba(255,255,255,.68);
}
.site-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg, var(--red) 0 18%, #ff5d61 18% 27%, transparent 27% 100%);
}
.site-footer h5{
  position:relative;
  color:var(--white);
  font-size:.85rem;
  letter-spacing:1.5px;
  margin-bottom:1.3rem;
  padding-bottom:.65rem;
  text-transform:uppercase;
}
.site-footer h5::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:32px;
  height:2px;
  background:var(--red);
}
.site-footer p{ color:rgba(255,255,255,.6); font-size:.88rem; }
.footer-brand-link{ display:inline-block; margin-bottom:1rem; }
.footer-logo-visual{
  position:relative;
  display:block;
  width:190px;
  height:127px;
}
.footer-logo-image{ width:100%; height:100%; object-fit:contain; }
.footer-logo-subtitle{
  position:absolute;
  left:7%;
  right:7%;
  bottom:12px;
  padding:2px 5px 3px;
  color:var(--white);
  background:linear-gradient(90deg, transparent 0%, rgba(8,19,38,.96) 16%, rgba(8,19,38,.96) 84%, transparent 100%);
  font-family:var(--font-display);
  font-size:.83rem;
  font-weight:600;
  letter-spacing:2.7px;
  line-height:1;
  text-align:center;
  text-transform:uppercase;
}
.footer-brand-copy{ max-width:420px; line-height:1.65; }
.footer-links{ list-style:none; padding:0; margin:0; }
.footer-links li{ margin-bottom:.5rem; }
.footer-links a{ color: rgba(255,255,255,.6); font-size:.88rem; transition: color var(--transition), padding-left var(--transition); }
.footer-links a:hover{ color: var(--red); padding-left: 4px; }
.footer-social a{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7); margin-right:.5rem; transition: all var(--transition);
}
.footer-social a:hover{ background: var(--red); border-color: var(--red); color:var(--white); }
.footer-contact-map-grid{ display:grid; grid-template-columns:minmax(0,.95fr) minmax(220px,1.15fr); gap:1rem; align-items:stretch; }
.footer-contact-list{ display:grid; align-content:start; gap:.8rem; margin:0; }
.footer-contact-list a{
  display:flex;
  align-items:flex-start;
  gap:.75rem;
  color:rgba(255,255,255,.68);
  font-size:.84rem;
  line-height:1.55;
  transition:color var(--transition);
}
.footer-contact-list a:hover{ color:var(--white); }
.footer-contact-list i{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  border-radius:50%;
  color:#ff6b6f;
  background:rgba(var(--red-rgb),.11);
}
.footer-contact-list span{ overflow-wrap:anywhere; }
.footer-map-frame{
  height:185px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  border-radius:10px;
  background:#dce2e8;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}
.footer-map-frame iframe{ display:block; width:100%; height:100%; border:0; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.1); padding:1.15rem 0; color:rgba(255,255,255,.58); font-size:.8rem; }

/* -----------------------------
   21. FLOATING BUTTONS
----------------------------- */
.floating-actions{
  position: fixed; right: 22px; bottom: 22px; z-index: 1050;
  display:flex; flex-direction:column; gap: 12px;
}
.fab{
  width: 56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color: var(--white); font-size:1.4rem;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.fab:hover{ transform: scale(1.08); color:var(--white); }
.fab-whatsapp{ background: #25D366; }
.fab-call{ background: var(--red); animation: pulse-ring 2.4s infinite; }
@keyframes pulse-ring{
  0%{ box-shadow: 0 0 0 0 rgba(var(--red-rgb),.45), var(--shadow-lg); }
  70%{ box-shadow: 0 0 0 14px rgba(var(--red-rgb),0), var(--shadow-lg); }
  100%{ box-shadow: 0 0 0 0 rgba(var(--red-rgb),0), var(--shadow-lg); }
}
@media (max-width: 575.98px){
  .floating-actions{ right: 14px; bottom: 14px; }
  .fab{ width:50px; height:50px; font-size:1.2rem; }
}

/* -----------------------------
   22. LIGHTBOX MODAL
----------------------------- */
.gallery-modal .modal-content{ background: var(--navy); border:none; }
.gallery-modal-image{ width:100%; height:min(68vh, 720px); object-fit:contain; background:var(--navy); }
.gallery-modal .btn-close{ filter: invert(1); opacity:.8; }

/* -----------------------------
   23. MISC
----------------------------- */
.section-title{ font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 1.2rem; }
hr.industrial{
  border: none; height: 4px; width: 64px;
  background: repeating-linear-gradient(90deg, var(--red) 0 8px, var(--navy) 8px 16px);
  margin: 1.2rem 0;
}

/* =========================================================
   24. RESPONSIVE HARDENING (all breakpoints, incl. <=360px)
   ========================================================= */

/* Global overflow guards so no element can force horizontal scroll */
html, body{ max-width: 100%; }
.row{ margin-left: 0; margin-right: 0; }
.row > *{ min-width: 0; }
.container, .container-xl, .container-fluid{ padding-left: 18px; padding-right: 18px; }
* { word-wrap: break-word; }

/* Fluid type scale so headings never outgrow narrow viewports */
h2, .section-title{ font-size: clamp(1.5rem, 5.5vw, 2.4rem); }
h3{ font-size: clamp(1rem, 4vw, 1.2rem); }

/* ---- Laptop / small desktop (≤1199.98px) ---- */
@media (max-width: 1199.98px){
  .brand-logo-image{ width:118px; }
  .about-media-float{ width: 46%; right: -12px; }
  .cta-banner-content{ padding: 2.6rem 1.8rem; }
  .footer-contact-map-grid{ grid-template-columns:1fr; }
  .footer-map-frame{ height:170px; }
}

/* ---- Tablet (≤991.98px) ---- */
@media (max-width: 991.98px){
  .navbar-main{ padding:7px 0; }
  .brand-logo{ margin-right:0; }
  .navbar-collapse{ display: none !important; }
  .why-media .site-photo, .safety-media .site-photo{ height: 360px; }
  .stats-section .stat-box{ padding: 1.2rem .5rem; }
  .gallery-showcase{ grid-template-columns:repeat(2, minmax(0, 1fr)); height:auto; }
  .gallery-showcase > .gallery-card-featured{ height:520px; }
  .gallery-stack{ height:520px; }
  .gallery-showcase > .gallery-card-featured:last-child{ grid-column:1 / -1; height:360px; }
  .footer-brand-copy{ max-width:520px; }
}

/* ---- Mobile (≤767.98px) ---- */
@media (max-width: 767.98px){
  .container-xl{ padding-left: 16px; padding-right: 16px; }

  .clients-carousel:not(.owl-loaded){ grid-template-columns:repeat(2, minmax(0,1fr)); }

  /* Feature strip cards: stack icon+text cleanly, no clipped text */
  .feature-strip{ margin-top: -30px; }
  .feature-card{ padding: 1.2rem 1.1rem; gap: .85rem; }
  .feature-icon{ width: 46px; height: 46px; font-size: 1.15rem; }
  .feature-card h3{ font-size: 1rem; }
  .feature-card small{ font-size: .78rem; }

  /* Hero CTA buttons: stack full-width, centered, no oversized blocks */
  .hero-actions{ flex-direction: column; align-items: stretch; gap: .75rem; }
  .hero-actions .btn{ width: 100%; text-align: center; }
  .hero-content{ padding: 80px 6vw 76px; max-width: 100%; }
  .hero-heading{ font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-text{ max-width: 100%; }

  .about-badge{ padding: .7rem 1rem; }
  .about-badge .yr{ font-size: 1.2rem; }

  .cta-banner-content{ padding: 2.2rem 1.4rem; }
  .cta-banner-content .hero-actions{ flex-direction: column; }

  .stat-num{ font-size: clamp(1.5rem, 7vw, 2rem); }
  .stat-lbl{ font-size: .72rem; letter-spacing: 1px; }

  .testi-card{ padding: 1.4rem; }

  .gallery-showcase, .gallery-stack{ gap:14px; }
  .gallery-showcase > .gallery-card-featured{ height:440px; }
  .gallery-stack{ height:440px; }
  .gallery-showcase > .gallery-card-featured:last-child{ height:320px; }
  .gallery-caption{ padding:18px; }
  .gallery-caption strong{ font-size:.96rem; }
  .gallery-stack .gallery-caption{ padding:13px; }
  .gallery-stack .gallery-caption small{ font-size:.58rem; letter-spacing:1.1px; }
  .gallery-stack .gallery-caption strong{ font-size:.78rem; }
  .gallery-view-icon{ width:38px; height:38px; top:12px; right:12px; }
  .gallery-cta{ align-items:flex-start; flex-direction:column; }
  .gallery-cta .btn{ width:100%; text-align:center; }

  .enquiry-form{ padding: 1.4rem; }

  .site-footer h5{ margin-bottom:1rem; }
  .footer-bottom{ font-size: .74rem; padding: 1rem 12px; }
}

/* ---- Small mobile (≤575.98px) ---- */
@media (max-width: 575.98px){
  .container-xl{ padding-left: 14px; padding-right: 14px; }
  .section-pad{ padding: 52px 0; }

  .topbar{ font-size: .74rem; }

  .brand-logo-image{ width:96px; }
  .footer-brand-link{ margin-bottom:.75rem; }
  .footer-logo-visual{ width:190px; height:127px; }
  .footer-logo-subtitle{ bottom:11px; font-size:.75rem; letter-spacing:2.2px; }
  .footer-brand-copy{ font-size:.82rem; line-height:1.65; }
  .footer-contact-list a{ gap:.65rem; font-size:.8rem; }
  .footer-contact-list i{ width:28px; height:28px; }
  .footer-map-frame{ height:165px; }

  .contact-info-item{ gap:.75rem; }
  .contact-info-item .ci-icon{ width:42px; height:42px; }
  .contact-info-item p{ font-size:.88rem; line-height:1.55; }

  .hero{ height:600px; min-height:560px; padding:0; }
  .hero-dots{ bottom: 16px; }

  .eyebrow{ font-size: .72rem; }
  .eyebrow::before{ width: 20px; }

  .about-media > .site-photo{ height: 320px; }
  .about-media-float{ width: 50%; bottom: -20px; right: -8px; }
  .about-media-float .site-photo{ height: 140px; }

  .equip-media{ height: 180px; }

  .why-item{ gap: .8rem; margin-bottom: 1.4rem; }
  .why-item .why-icon{ width: 44px; height: 44px; font-size: 1.05rem; }

  .clients-carousel-shell{ padding:16px 16px 0; border-radius:14px; }
  .clients-carousel:not(.owl-loaded){ grid-template-columns:1fr; }
  .clients-assurance{
    flex-direction:column;
    align-items:stretch;
    margin:0 -16px;
    padding:9px 16px;
    border-radius:0 0 14px 14px;
  }
  .clients-assurance span{
    justify-content:center;
    padding:.65rem .5rem;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.12);
  }
  .clients-assurance span:last-child{ border-bottom:0; }

  .process-row::before{ display: none; }
  .step-num{ width: 46px; height: 46px; font-size: 1rem; }

  .gallery-showcase{ grid-template-columns:1fr; }
  .gallery-showcase > .gallery-card-featured{ height:410px; }
  .gallery-stack{ height:360px; }
  .gallery-showcase > .gallery-card-featured:last-child{ grid-column:auto; height:300px; }
  .gallery-card{ border-radius:11px; }
  .gallery-card-product .site-photo{ padding:18px 14px 52px; }
  .gallery-cta{ margin-top:16px; padding:18px; border-radius:11px; }

  .contact-cta .col-lg-5 .d-flex{ justify-content: flex-start !important; }
  .contact-cta .btn{ width: 100%; text-align: center; }

  .fab{ width: 48px; height: 48px; font-size: 1.1rem; }
  .floating-actions{ right: 12px; bottom: 12px; gap: 10px; }
}

/* ---- Extra-small mobile (≤360px) ---- */
@media (max-width: 360px){
  .container-xl{ padding-left: 12px; padding-right: 12px; }
  .brand-logo-image{ width:84px; }
  .hero{ height:580px; }
  .hero-content{ padding-left:16px; padding-right:16px; }
  .hero-heading{ font-size: 1.7rem; }
  .hero-text{ font-size: .92rem; }
  .btn{ font-size: .82rem; padding: .75rem 1.3rem; }
  .feature-card{ flex-direction: row; padding: 1rem; }
  .about-badge{ font-size: .78rem; }
  .stat-num{ font-size: 1.35rem; }
  .footer-logo-visual{ width:174px; height:116px; }
  .footer-logo-subtitle{ bottom:10px; font-size:.69rem; letter-spacing:1.8px; }
}
