/* ============================================================
   JASMINE ENGINEERS — MAIN STYLESHEET
   Extracted from inline <style> blocks into one external file.
   Rules are kept in their original source order so the cascade
   (and which rule wins on conflicts) behaves exactly as before.
   ============================================================ */

/* ---------- 1. BASE / ROOT (was in <head>) ---------- */
:root{
  --navy:#1C2733;
  --navy-deep:#0F161E;
  --steel:#3D5A80;
  --steel-light:#5F82AB;
  --yellow:#F2B705;
  --yellow-deep:#D9A304;
  --muted:#6B7480;
  --line:#E7E9EC;
  --paper:#FAFBFC;
}
*{box-sizing:border-box;}
body{background:#ffffff;font-family:'Inter',sans-serif;color:var(--navy);-webkit-font-smoothing:antialiased;}
h1,h2,h3,.brand,.display{font-family:'Oswald',sans-serif;text-transform:uppercase;}
::selection{background:var(--yellow);color:var(--navy);}

/* ---------- NAVBAR (base) ---------- */
.navbar{background:rgba(255,255,255,0.92);backdrop-filter:blur(10px);border-bottom:1px solid var(--line);padding:16px 0;position:sticky;top:0;z-index:1000;box-shadow:0 1px 0 rgba(28,39,51,0.04);}
.navbar .logo-mark{width:52px;height:52px;border:2.5px solid var(--yellow);display:flex;align-items:center;justify-content:center;transform:rotate(45deg);}
.navbar .logo-mark img{transform:rotate(-45deg);max-width:75%;}
.navbar-brand{display:flex;align-items:center;gap:14px;}
.brand-text{font-family:'Oswald',sans-serif;font-weight:600;font-size:21px;color:var(--navy);letter-spacing:0.02em;}
.brand-text small{display:block;font-size:10.5px;color:var(--muted);letter-spacing:0.14em;font-family:'Inter',sans-serif;text-transform:uppercase;}
.nav-link{font-size:13px;font-weight:500;letter-spacing:0.06em;text-transform:uppercase;color:var(--navy)!important;margin:0 14px;position:relative;padding-bottom:4px!important;}
.nav-link::after{content:'';position:absolute;left:0;bottom:0;width:0;height:2px;background:var(--yellow);transition:width .25s ease;}
.nav-link:hover::after,.nav-link.active::after{width:100%;}
.nav-link.active{color:var(--steel)!important;}
.btn-enquire{background:var(--yellow);border:none;color:var(--navy);font-size:13px;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;padding:11px 24px;transition:background .25s ease,transform .2s ease,box-shadow .25s ease;box-shadow:0 8px 20px rgba(242,183,5,0.25);}
.btn-enquire:hover{background:var(--yellow-deep);color:var(--navy);transform:translateY(-1px);box-shadow:0 10px 26px rgba(242,183,5,0.35);}

/* ---------- HERO SLIDER (base) ---------- */
.hero-slider{position:relative;}
.hero-slider .carousel-item{height:650px;position:relative;}
.hero-slider img{width:100%;height:650px;object-fit:cover;}
.slider-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(100deg, rgba(15,22,30,0.94) 0%, rgba(28,39,51,0.6) 55%, rgba(28,39,51,0.28) 100%);}
.carousel-caption{position:absolute;top:50%;left:10%;transform:translateY(-50%);text-align:left;max-width:650px;}
.carousel-caption span{color:var(--yellow);font-size:14px;font-weight:700;letter-spacing:3px;text-transform:uppercase;display:inline-flex;align-items:center;gap:10px;}
.carousel-caption span::before{content:'';width:30px;height:2px;background:var(--yellow);display:inline-block;}
.carousel-caption h1{font-family:'Oswald',sans-serif;font-size:56px;line-height:1.12;font-weight:700;color:#fff;margin:22px 0;text-transform:uppercase;text-shadow:0 4px 18px rgba(0,0,0,0.35);}
.carousel-caption p{font-size:17px;line-height:1.75;color:#E7E9EC;max-width:520px;}
.slider-btn{background:var(--yellow);color:var(--navy);padding:14px 38px;font-size:14px;font-weight:700;text-transform:uppercase;letter-spacing:1.2px;margin-top:26px;border:none;transition:background .25s ease, transform .2s ease, box-shadow .25s ease;box-shadow:0 10px 26px rgba(242,183,5,0.28);}
.slider-btn:hover{background:#fff;color:var(--navy);transform:translateY(-2px);}
.slider-btn-outline{background:transparent;color:#fff;border:1px solid rgba(255,255,255,0.5);padding:14px 34px;font-size:14px;font-weight:700;text-transform:uppercase;letter-spacing:1.2px;margin-top:26px;margin-left:14px;transition:all .25s ease;}
.slider-btn-outline:hover{background:#fff;color:var(--navy);border-color:#fff;}
.carousel-control-prev,.carousel-control-next{width:7%;}
.carousel-indicators [data-bs-target]{background-color:var(--yellow);opacity:.55;width:34px;height:3px;}
.carousel-indicators .active{opacity:1;}
@media(max-width:768px){
  .hero-slider .carousel-item,.hero-slider img{height:460px;}
  .carousel-caption{left:7%;right:7%;}
  .carousel-caption h1{font-size:32px;}
  .carousel-caption p{font-size:14px;}
}

/* ---------- STATS STRIP (overlaps hero) ---------- */
.stats-strip{background:var(--navy);margin-top:-70px;position:relative;z-index:5;box-shadow:0 24px 60px rgba(19,27,36,0.3);border-radius:4px;overflow:hidden;}
.stats-strip::before{content:'';position:absolute;inset:0;background:linear-gradient(120deg, rgba(242,183,5,0.06), transparent 45%);pointer-events:none;}
.stats-strip .stat{padding:36px 20px;text-align:center;border-right:1px solid rgba(255,255,255,0.08);position:relative;transition:background .25s ease;}
.stats-strip .stat:hover{background:rgba(242,183,5,0.05);}
.stats-strip .col-6:last-child .stat,.stats-strip .col-lg:last-child .stat{border-right:none;}
.stat-icon{width:38px;height:38px;margin:0 auto 12px;background:rgba(242,183,5,0.12);border:1px solid rgba(242,183,5,0.3);display:flex;align-items:center;justify-content:center;transform:rotate(45deg);}
.stat-icon svg{width:18px;height:18px;color:var(--yellow);transform:rotate(-45deg);}
.stats-strip h3{color:#fff;font-size:32px;font-weight:700;margin:0 0 4px;}
.stats-strip h3 span{color:var(--yellow);}
.stats-strip p{color:#8998A8;font-size:11.5px;letter-spacing:0.1em;text-transform:uppercase;margin:0;font-weight:600;}

/* ---------- SECTION HEADINGS ---------- */
.section-tag{font-size:12px;letter-spacing:0.16em;color:var(--steel);font-weight:700;text-transform:uppercase;display:flex;align-items:center;gap:10px;margin-bottom:10px;}
.section-tag::before{content:'';width:26px;height:2px;background:var(--yellow);display:inline-block;}
.section-title{font-size:32px;color:var(--navy);font-weight:600;margin-bottom:14px;}
.section-title.center{text-align:center;}
.section-tag.center{justify-content:center;}
.section-tag.center::before{display:none;}
.section-tag.center::after{content:'';width:26px;height:2px;background:var(--yellow);display:inline-block;}
.section-sub{color:var(--muted);font-size:15px;line-height:1.7;max-width:600px;}
.section-sub.center{margin:0 auto;text-align:center;}

/* ---------- ABOUT SECTION (feature box, legacy) ---------- */
.feature-box{padding:18px;background:#fff;box-shadow:0 5px 20px rgba(0,0,0,.08);border-bottom:3px solid var(--yellow);transition:transform .25s ease, box-shadow .25s ease;}
.feature-box:hover{transform:translateY(-4px);box-shadow:0 14px 30px rgba(0,0,0,.12);}
.feature-box h5{color:var(--navy);font-weight:700;font-size:15px;margin-bottom:6px;}
.feature-box p{font-size:13px;margin:0;color:var(--muted);}

/* ---------- PRODUCT CATEGORIES (legacy card grid) ---------- */
.category-section{padding:96px 0;background:var(--paper);position:relative;overflow:hidden;}
.category-section::before{
  content:'';position:absolute;top:-180px;right:-180px;width:420px;height:420px;
  background:radial-gradient(circle, rgba(242,183,5,0.09), transparent 70%);pointer-events:none;
}
.cat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:48px;position:relative;}
.cat-card{
  position:relative;overflow:hidden;cursor:pointer;background:var(--navy);height:280px;
  border:1px solid transparent;
  transition:transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
}
.cat-card:hover{transform:translateY(-7px);box-shadow:0 30px 60px rgba(15,22,30,.32);border-color:rgba(242,183,5,.55);}
.cat-card img{width:100%;height:100%;object-fit:cover;opacity:.68;transition:transform .7s cubic-bezier(.2,.8,.2,1), opacity .4s ease;}
.cat-card:hover img{transform:scale(1.1);opacity:.82;}
.cat-card::after{content:'';position:absolute;inset:0;background:linear-gradient(0deg, rgba(15,22,30,0.96) 0%, rgba(15,22,30,0.55) 50%, rgba(15,22,30,0.15) 100%);}

.cat-fold{position:absolute;top:-26px;right:22px;width:52px;height:52px;background:var(--yellow);transform:rotate(45deg);z-index:1;box-shadow:0 10px 24px rgba(0,0,0,.3);transition:top .35s ease;}
.cat-card:hover .cat-fold{top:-18px;}
.cat-icon{position:absolute;top:14px;right:14px;z-index:3;width:26px;height:26px;color:var(--navy);}
.cat-icon svg{width:100%;height:100%;}

.cat-index{position:absolute;top:16px;left:18px;z-index:2;font-family:'JetBrains Mono','Oswald',sans-serif;font-size:11px;font-weight:600;letter-spacing:.1em;color:rgba(255,255,255,.55);}
.cat-sku{position:absolute;top:52px;left:18px;z-index:2;color:var(--yellow);font-size:11px;font-weight:700;letter-spacing:.06em;}

.cat-body{position:absolute;left:0;right:0;bottom:0;z-index:2;padding:22px;}
.cat-accent{width:0;height:3px;background:var(--yellow);margin-bottom:14px;transition:width .4s ease;}
.cat-card:hover .cat-accent{width:44px;}
.cat-body h4{color:#fff;font-family:'Oswald',sans-serif;font-weight:600;text-transform:uppercase;margin:0 0 8px;letter-spacing:.01em;font-size:17px;line-height:1.28;}
.cat-body .cat-link{display:inline-flex;align-items:center;gap:7px;color:var(--yellow);font-size:11.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;opacity:0;transform:translateY(6px);transition:opacity .3s ease, transform .3s ease;}
.cat-card:hover .cat-body .cat-link{opacity:1;transform:translateY(0);}
.cat-body .cat-link svg{width:13px;height:13px;transition:transform .25s ease;}
.cat-card:hover .cat-body .cat-link svg{transform:translateX(3px);}
@media(max-width:900px){
  .cat-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:560px){
  .cat-grid{grid-template-columns:1fr;}
}

/* ---------- WHY CHOOSE US (legacy) ---------- */
.why-section{padding:88px 0;background:var(--navy);color:#fff;position:relative;}
.why-item{display:flex;gap:18px;padding:26px 0;border-bottom:1px solid rgba(255,255,255,0.1);}
.why-item:last-child{border-bottom:none;}
.why-icon{width:52px;height:52px;background:rgba(242,183,5,0.12);border:1px solid rgba(242,183,5,0.3);display:flex;align-items:center;justify-content:center;flex-shrink:0;border-radius:2px;}
.why-icon svg{width:26px;height:26px;color:var(--yellow);}
.why-item h5{font-family:'Oswald',sans-serif;font-size:16px;font-weight:600;text-transform:uppercase;margin:0 0 8px;color:#fff;}
.why-item p{color:#B7C0CC;font-size:13.5px;line-height:1.7;margin:0;}
.why-media{position:relative;height:100%;min-height:420px;}
.why-media img{width:100%;height:100%;object-fit:cover;box-shadow:0 20px 50px rgba(0,0,0,0.4);}
.why-badge{position:absolute;bottom:-24px;right:-24px;background:var(--yellow);color:var(--navy);padding:24px 28px;text-align:center;box-shadow:0 16px 36px rgba(0,0,0,0.3);}
.why-badge h3{font-size:36px;margin:0;font-weight:700;}
.why-badge p{font-size:11px;font-weight:700;letter-spacing:1px;margin:0;text-transform:uppercase;}

/* ---------- CTA BANNER (legacy variant) ---------- */
.cta-banner{background:linear-gradient(120deg, var(--steel), var(--navy));padding:64px 0;position:relative;overflow:hidden;}
.cta-banner::before{content:'';position:absolute;top:-60px;right:-60px;width:260px;height:260px;background:rgba(242,183,5,0.08);border-radius:50%;}
.cta-banner h2{color:#fff;font-size:30px;margin-bottom:8px;font-weight:600;}
.cta-banner p{color:#D6DCE3;font-size:14.5px;margin:0;}
.cta-btn{background:var(--yellow);color:var(--navy);padding:15px 36px;font-size:14px;font-weight:700;letter-spacing:1px;text-transform:uppercase;border:none;white-space:nowrap;transition:transform .2s ease, background .25s ease;}
.cta-btn:hover{transform:translateY(-2px);background:#fff;}

/* ---------- FOOTER (legacy variant) ---------- */
footer{background:var(--navy-deep);color:#fff;padding:52px 0 22px;}
footer h4{font-size:12px;letter-spacing:0.12em;text-transform:uppercase;color:#9AA6B4;margin-bottom:18px;font-weight:700;}
footer ul{list-style:none;padding:0;}
footer li{margin-bottom:11px;font-size:13.5px;color:#E7E9EC;}
footer a{color:#E7E9EC;text-decoration:none;transition:color .2s ease;}
footer a:hover{color:var(--yellow);}
.foot-bottom{border-top:1px solid #2A343F;margin-top:36px;padding-top:20px;font-size:12px;color:#8794A3;display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;}

@media(max-width:991px){
  .stats-strip .stat{border-right:none;border-bottom:1px solid rgba(255,255,255,0.08);}
  .why-badge{position:static;margin-top:16px;display:inline-block;}
}

/* ============================================================
   2. TOP HEADER + PREMIUM NAVBAR
   ============================================================ */
.top-header {
  background: #0b1e36;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-header span {
  display: inline-flex;
  align-items: center;
}

.premium-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.premium-navbar .logo-wrapper {
  background: #f8fafc;
  padding: 6px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.premium-navbar .main-logo {
  height: 82px;
  object-fit: contain;
}
.premium-navbar .brand-text h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0b1e36;
  margin: 0;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.premium-navbar .brand-text h2 span {
  color: #0066cc;
}

.premium-navbar .brand-text small {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 3px;
}

.premium-navbar .navbar-nav .nav-link {
  color: #334155;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 18px !important;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.premium-navbar .navbar-nav .nav-link:hover,
.premium-navbar .navbar-nav .nav-link.active {
  color: #0066cc;
  background: rgba(0, 102, 204, 0.05);
}

.premium-navbar .dropdown-menu {
  border-radius: 14px;
  padding: 12px;
  min-width: 240px;
  transform: translateY(15px);
  opacity: 0;
  visibility: hidden;
  display: block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
}
.premium-navbar .dropdown:hover .dropdown-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.premium-navbar .dropdown-item {
  font-weight: 500;
  color: #475569;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.premium-navbar .dropdown-item:hover {
  background-color: #0066cc;
  color: #ffffff !important;
  padding-left: 20px;
}

.premium-navbar .btn-enquire {
  background: #0b1e36;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 6px 6px 20px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(11, 30, 54, 0.2);
}
.premium-navbar .btn-enquire .icon-circle {
  background: #0066cc;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile toggler */
.premium-navbar .navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  display: none;
  flex-direction: column;
  justify-content: space-around;
}
.premium-navbar .navbar-toggler:focus {
  box-shadow: none;
}
.premium-navbar .toggler-icon {
  width: 100%;
  height: 3px;
  background-color: #0b1e36;
  display: block;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Mobile breakpoint rules */
@media (max-width: 991.98px) {
  .premium-navbar .navbar-toggler {
      display: flex;
  }
  .premium-navbar .navbar-collapse {
      background: #ffffff;
      margin-top: 15px;
      padding: 15px;
      border-radius: 16px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  }
  .premium-navbar .navbar-toggler:not(.collapsed) .top-bar {
      transform: translateY(10px) rotate(45deg);
  }
  .premium-navbar .navbar-toggler:not(.collapsed) .middle-bar {
      opacity: 0;
  }
  .premium-navbar .navbar-toggler:not(.collapsed) .bottom-bar {
      transform: translateY(-10px) rotate(-45deg);
  }
  .premium-navbar .dropdown-menu {
      display: none;
      opacity: 1;
      visibility: visible;
      transform: none;
      background: #f8fafc;
  }
  .premium-navbar .dropdown:hover .dropdown-menu {
      display: block;
  }
  .premium-navbar .btn-enquire {
      margin-top: 15px;
      width: 100%;
      justify-content: space-between;
  }
}

/* ============================================================
   3. HERO SLIDER (final rules — object-fit:contain full-image slider)
   ============================================================ */
.hero-wrapper {
  position: relative;
  width: 100%;
  background: #04142d;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  width: 100%;
  height: auto;
}

.slider-link-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.carousel-indicators {
  bottom: 5%;
}
.carousel-indicators [data-bs-target] {
  width: 30px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
}
.carousel-indicators .active {
  background-color: #ffc107;
  width: 45px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

/* ============================================================
   4. QUICK RELEASE COUPLINGS PRODUCT GRID
   ============================================================ */
.qrc-section {
  background-color: #ffffff;
  font-family: sans-serif;
}

.qrc-section .sub-title {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #0066cc !important;
}
.qrc-section .main-title {
  color: #0b1e36;
  font-size: 2.25rem;
}
.qrc-section .title-line {
  width: 70px;
  height: 4px;
  background: #ffc107;
  border-radius: 2px;
}

.qrc-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.qrc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(11, 30, 54, 0.08);
  border-color: rgba(0, 102, 204, 0.2);
}

.qrc-card .card-img-wrapper {
  background: #f8fafc;
  border-radius: 12px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.qrc-card .product-img {
  max-height: 80%;
  max-width: 80%;
  object-fit: contain;
}

.bg-primary-light {
  background-color: rgba(0, 102, 204, 0.08) !important;
  color: #0066cc !important;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
}
.font-xs {
  font-size: 0.72rem;
  letter-spacing: 0.5px;
}

.qrc-card .card-title {
  color: #0b1e36;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 12px;
  min-height: 45px;
}
.qrc-card .card-text {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.spec-table {
  border-top: 1px solid #f1f5f9;
  margin-bottom: 20px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.88rem;
}
.spec-label {
  color: #64748b;
}
.spec-value {
  color: #1e293b;
}

.btn-group-custom {
  display: flex;
  gap: 10px;
  width: 100%;
}
.btn-primary-custom {
  background-color: #0066cc;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 0;
  flex: 1;
  text-align: center;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary-custom:hover {
  background-color: #004b99;
}
.btn-outline-custom {
  background-color: transparent;
  color: #0066cc !important;
  border: 1px solid #0066cc;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 0;
  flex: 1;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-custom:hover {
  background-color: #0066cc;
  color: #ffffff !important;
}

@media (max-width: 575.98px) {
  .btn-group-custom {
      flex-direction: column;
  }
}

/* ============================================================
   5. ABOUT US SECTION
   ============================================================ */
.about-section {
  background-color: #ffffff;
  font-family: sans-serif;
  overflow: hidden;
}

.about-section .sub-title {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #0066cc !important;
}
.about-section .main-title {
  color: #0b1e36;
  font-size: 2.25rem;
  line-height: 1.2;
}
.about-section .title-line {
  width: 70px;
  height: 4px;
  background: #ffc107;
  border-radius: 2px;
}

.about-img-container {
  padding-right: 40px;
  padding-bottom: 40px;
}
.about-img-container .main-img-box {
  border: 8px solid #f8fafc;
}
.about-img-container .main-img-box img {
  transition: transform 0.5s ease;
}
.about-img-container:hover .main-img-box img {
  transform: scale(1.03);
}

.about-img-container .sub-img-box {
  width: 240px;
  bottom: -20px;
  right: -10px;
  border: 6px solid #ffffff;
  z-index: 2;
}

.about-img-container .experience-badge {
  background-color: #0b1e36 !important;
  bottom: 20px;
  left: -20px;
  z-index: 3;
  min-width: 130px;
}
.tracking-1 {
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.feature-item {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.feature-item:hover {
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 102, 204, 0.06);
  border-color: rgba(0, 102, 204, 0.2);
}
.feature-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  background: rgba(0, 102, 204, 0.08);
}

.btn-dark-custom {
  background-color: #0b1e36;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(11, 30, 54, 0.15);
}
.btn-dark-custom:hover {
  background-color: #0066cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.25);
}
.call-link i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.call-link:hover i {
  transform: scale(1.2) rotate(10deg);
}

.font-sm { font-size: 0.85rem; }

@media (max-width: 991.98px) {
  .about-img-container {
      padding: 0;
      margin-bottom: 20px;
  }
  .about-img-container .experience-badge {
      left: 10px;
      bottom: 10px;
  }
  .about-section .main-title {
      font-size: 1.85rem;
  }
}

/* ============================================================
   6. QRC HERO BANNER + CONTENT/IMAGES INTRO SECTION
   ============================================================ */
.qrc-hero-banner {
  min-height: 260px;
  background-image: url('industrial-refinery-bg.jpg');
  background-size: cover;
  background-position: center;
}
.banner-bg-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, #0b1e36 40%, rgba(11, 30, 54, 0.7) 100%);
  z-index: 1;
}
.tracking-wider { letter-spacing: 1px; }

.qrc-intro-section {
  background-color: #ffffff;
  font-family: sans-serif;
}
.text-navy {
  color: #0b1e36;
}
.leading-relaxed {
  line-height: 1.7;
  font-size: 0.98rem;
}

.image-showcase {
  padding-bottom: 30px;
  padding-right: 30px;
}
.image-showcase .main-box {
  border: 6px solid #f8fafc;
}
.image-showcase .floating-product {
  width: 160px;
  bottom: -20px;
  right: -10px;
  z-index: 3;
  border: 1px solid #e2e8f0;
  animation: floatAnim 3s ease-in-out infinite;
}

.highlight-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.icon-circle-bg {
  width: 42px;
  height: 42px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

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

@media (max-width: 991.98px) {
  .image-showcase {
      padding: 0;
      margin-bottom: 30px;
  }
  .qrc-hero-banner {
      text-align: center;
      min-height: auto;
  }
  .banner-bg-overlay {
      background: rgba(11, 30, 54, 0.9);
  }
}

/* ============================================================
   7. CTA BANNER (rounded-box variant used on the page)
   ============================================================ */
.cta-banner {
  background-color: #f5f7fa;
  font-family: sans-serif;
  padding: 80px 0;
}

.cta-box {
  background: radial-gradient(circle at right bottom, #054c87 0%, #023e73 60%, #012e56 100%);
  border-radius: 24px;
  padding: 45px 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(1, 46, 86, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.cta-box::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.cta-tag {
  color: #ffc107;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  display: inline-block;
}

.cta-title {
  font-size: 2.2rem;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.cta-text {
  font-size: 1rem;
  color: #d1e2f4 !important;
}

.cta-action-wrapper {
  position: relative;
  z-index: 2;
}

.cta-btn {
  background-color: #ffc107;
  color: #012e56 !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.cta-btn:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

@media (max-width: 991.98px) {
  .cta-box {
      padding: 35px 30px;
      text-align: center;
      flex-direction: column;
      align-items: center;
  }
  .cta-title {
      font-size: 1.8rem;
  }
  .cta-btn {
      width: 100%;
      justify-content: center;
  }
}

/* ============================================================
   8. FOOTER
   ============================================================ */
.footer-section{
  background:#071b32;
  padding:80px 0 25px;
  position:relative;
  overflow:hidden;
}

.footer-section:before{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;
  width:280px;
  height:280px;
  background:rgba(255,193,7,.08);
  border-radius:50%;
}

.footer-logo{
  height:60px;
  margin-bottom:20px;
}

.footer-text{
  color:#bfc8d5;
  line-height:1.9;
  font-size:15px;
}

.footer-section h4{
  color:#fff;
  font-size:20px;
  font-weight:700;
  margin-bottom:25px;
  position:relative;
}

.footer-section h4:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:50px;
  height:3px;
  background:#ffc107;
}

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

.footer-section ul li{
  margin-bottom:12px;
}

.footer-section ul li a{
  color:#c8d0da;
  text-decoration:none;
  transition:.3s;
}

.footer-section ul li a:hover{
  color:#ffc107;
  padding-left:8px;
}

.contact-item{
  display:flex;
  align-items:flex-start;
  gap:15px;
  margin-bottom:22px;
}

.contact-item i{
  flex-shrink:0;
  width:48px;
  height:48px;
  background:#ffc107;
  color:#06203b;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:20px;
  margin-top:2px;
}

.contact-item span{
  color:#d8dce4;
  line-height:1.8;
  word-break:break-word;
}

.contact-item > div{
  min-width:0;
}

.footer-social{
  margin-top:25px;
}

.footer-social a{
  width:45px;
  height:45px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#102a46;
  border-radius:50%;
  color:#fff;
  margin-right:10px;
  transition:.4s;
  text-decoration:none;
}

.footer-social a:hover{
  background:#ffc107;
  color:#06203b;
  transform:translateY(-5px);
}

.footer-section hr{
  border-color:rgba(255,255,255,.1);
  margin:45px 0 20px;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom span{
  color:#b8c4d1;
  text-decoration:none;
  font-size:14px;
}

.footer-bottom a:hover{
  color:#ffc107;
}

@media(max-width:768px){
  .footer-bottom{
      text-align:center;
      justify-content:center;
      gap:15px;
  }
}

/* Secondary footer element-selector rules (kept for parity with source) */
footer{
  background:#06182d;
  padding:70px 0 20px;
  color:#fff;
}

.footer-logo{
  font-size:28px;
  font-weight:900;
  letter-spacing:1px;
}

footer .footer-text{
  color:#9aa6b4;
  line-height:1.8;
  margin-top:15px;
}

footer h4{
  font-size:18px;
  font-weight:800;
  margin-bottom:25px;
  position:relative;
}

footer h4:after{
  content:"";
  display:block;
  width:40px;
  height:3px;
  background:#ffc107;
  margin-top:10px;
}

footer ul{
  padding:0;
  list-style:none;
}

footer ul li{
  margin-bottom:12px;
  color:#9aa6b4;
}

footer ul li a{
  text-decoration:none;
  color:#9aa6b4;
  transition:.3s;
}

footer ul li a:hover{
  color:#ffc107;
  padding-left:5px;
}

.contact-list i{
  color:#ffc107;
  margin-right:10px;
  font-size:18px;
}

.social-icons a{
  display:inline-flex;
  width:38px;
  height:38px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#102943;
  color:#fff;
  margin-right:8px;
  transition:.3s;
}

.social-icons a:hover{
  background:#ffc107;
  color:#06203b;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:45px;
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  color:#8995a5;
  font-size:14px;
}

@media(max-width:768px){
  .cta-box{
      padding:35px 25px;
      display:block;
  }
  .cta-box h2{
      font-size:28px;
  }
  .cta-btn{
      display:inline-block;
      margin-top:25px;
  }
  .footer-bottom{
      display:block;
  }
  .footer-bottom span{
      display:block;
      margin-bottom:10px;
  }
}

/* ============================================================
   9. EXTRA RESPONSIVE POLISH (new — fills gaps for small screens)
   ============================================================ */
@media (max-width: 767.98px){
  .qrc-hero-banner .display-4{ font-size:2rem; }
  .about-content-wrapper .main-title,
  .qrc-section .main-title{ font-size:1.7rem; }
  .cat-grid{ gap:14px; }
}
@media (max-width: 575.98px){
  .top-header .top-header-left{ gap:10px !important; font-size:0.78rem; }
  .premium-navbar .brand-text h2{ font-size:2rem; }
  .premium-navbar .main-logo{ height:68px; }
}

/* ---------- LOGO / BRAND OVERFLOW FIX (prevents horizontal scroll on narrow screens) ---------- */
html, body{
  max-width: 100%;
  overflow-x: hidden;
}
.premium-navbar .container{
  max-width: 100%;
}
.premium-navbar .navbar-brand{
  min-width: 0; /* allow flex children to shrink below their content size */
  max-width: 100%;
}
.premium-navbar .brand-text{
  min-width: 0;
  overflow: hidden;
}
.premium-navbar .brand-text h2{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.premium-navbar .brand-text small{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100%;
}
@media (max-width: 480px){
  .premium-navbar .logo-wrapper{ padding:4px; }
  .premium-navbar .main-logo{ height:62px; }
  .premium-navbar .brand-text h2{ font-size:1.6rem; letter-spacing:0.2px; }
  .premium-navbar .brand-text small{ font-size:0.78rem; letter-spacing:0.8px; }
  .premium-navbar .navbar-brand{ gap:8px !important; }
  .contact-item{ gap:12px; margin-bottom:18px; }
  .contact-item i{ width:40px; height:40px; font-size:16px; }
  .contact-item span{ font-size:0.9rem; line-height:1.6; }
}
@media (max-width: 360px){
  .premium-navbar .brand-text h2{ font-size:1.35rem; }
  .premium-navbar .brand-text small{ font-size:0.68rem; }
}

 .footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  padding: 14px 20px;
  text-align: center;
}

/* keep clear of the sticky Enquire button on desktop */
@media (min-width: 577px) {
  .footer-bottom {
    padding-right: 110px;
  }
}