/* ============================================================
   EUROPE BANGLA GROUP — CUSTOM STYLES
   ============================================================ */

:root {
  --navy: #16236b;
  --navy-dark: #152c67;
  --gold: #d6a541;
  --gold-dark: #c4942f;
  /*--gold: #f4101c;
  --gold-dark: #f4101c;*/
  --green: #2f5233;
  --green-dark: #234027;
  --brown: #6b3f2a;
  --text-dark: #1c1c1c;
  --text-muted: #6b7280;
  --bg-light: #f7f7f9;
  --border-light: #e9e9ee;
  --font-body: Verdana, Geneva, Tahoma, sans-serif;
  --font-display: Verdana, Geneva, Tahoma, sans-serif;
  --ink:#14182f;
  --muted: #6b7280;
  --border:#e7e6f0;
  --paper:#f5f6fa;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #ffffff;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

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

.text-accent {
  color: var(--gold);
}

.text-gold {
  color: var(--gold-dark) !important;
}

.text-green {
  color: var(--green) !important;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background-color: var(--navy);
  color: #cfd4e0;
  font-size: 0.78rem;
  padding: 7px 0;
}

.topbar a {
  color: #cfd4e0;
}

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

.topbar i {
  margin-right: 4px;
  color: var(--gold);
}

.lang-select {
  cursor: pointer;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.main-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  z-index: 1000;
}

.logo-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

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

.logo-title {
  
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.logo-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.main-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 0.9rem;
  transition: color 0.2s;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--gold-dark);
}

.main-nav .nav-link.active {
  position: relative;
}

.main-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--gold);
}

.dropdown-menu {
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 0.88rem;
}

.dropdown-item:hover {
  background: #fdf6e8;
  color: var(--gold-dark);
}

.btn-send-inquiry {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55rem 1.3rem;
  border-radius: 4px;
  margin-left: 1rem;
  white-space: nowrap;
}

.btn-send-inquiry:hover {
  background: var(--gold-dark);
  color: #fff;
}

.logo img{
  width: 150px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
  .hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
 
  .video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
 
  .video-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
  }
 
  .video-slide.active { opacity: 1; }
 
  .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(16 36 150) 0%, rgb(16 53 126 / 65%) 55%, rgba(10, 20, 40, 0.20) 100%);
    /*background: linear-gradient(90deg,
      rgba(10,20,40,0.90) 0%,
      rgba(10,20,40,0.65) 55%,
      rgba(10,20,40,0.20) 100%);*/
    z-index: 1;
  }
 
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
  }
 
  .badge-tag {
    display: inline-block;
    background: rgba(196,157,68,0.18);
    color: #c49d44;
    border: 1px solid rgba(196,157,68,0.35);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 3px;
    margin-bottom: 20px;
    font-family: sans-serif;
  }
 
  .hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 8px;
  }
 
  .hero-title .gold {
    color: var(--gold-dark);
    font-style: italic;
  }
 
  .hero-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: #e8e0d0;
    margin-bottom: 10px;
    font-family: sans-serif;
    line-height: 1.6;
    margin-bottom: 40px;
  }
 
  .hero-desc {
    font-size: 13.5px;
    color: rgba(220,210,195,0.80);
    font-family: sans-serif;
    line-height: 1.75;
    margin-bottom: 30px;
    max-width: 480px;
  }
 
  .divider {
    width: 48px;
    height: 2px;
    background: #c49d44;
    margin: 20px 0;
  }
 
  .feature-icons {
    display: flex;
    gap: 28px;
    margin-bottom: 36px;
    flex-wrap: wrap;
  }
 
  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
 
  .feature-item .icon-box {
    width: 38px;
    height: 38px;
    background: rgba(196,157,68,0.12);
    border: 1px solid rgba(196,157,68,0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .feature-item .icon-box svg {
    width: 18px;
    height: 18px;
    stroke: #c49d44;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
 
  .feature-item span {
    font-size: 11.5px;
    color: rgba(220,210,195,0.75);
    font-family: sans-serif;
    line-height: 1.35;
    max-width: 90px;
  }
 
  .btn-gold {
    background: #c49d44;
    color: #0d1b2a;
    border: none;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 3px;
    text-decoration: none;
    font-family: sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
  }
  .btn-gold:hover { background: #d4af57; color: #0d1b2a; }
 
  .btn-outline-hero {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.55);
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 3px;
    text-decoration: none;
    font-family: sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-outline-hero:hover {
    border-color: #c49d44;
    color: #c49d44;
    background: rgba(196,157,68,0.07);
  }
 
  .slide-indicators {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
  }
 
  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: 1.5px solid rgba(196,157,68,0.45);
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
  }
 
  .dot.active {
    background: #c49d44;
    transform: scale(1.3);
    border-color: #c49d44;
  }
 
  .slide-counter {
    position: absolute;
    bottom: 28px;
    right: 36px;
    z-index: 3;
    font-family: sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
  }
 
  .progress-bar-custom {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #c49d44;
    z-index: 3;
    width: 0%;
  }
 

 /*======================*/

 .trust-bar{
    position: relative;
    background: rgb(11 37 103);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(196,157,68,.25);
    border-bottom: 1px solid rgba(196,157,68,.25);
    padding: 35px 0;
}

.trust-item{
    position: relative;
}

.trust-item h3{
    color: var(--gold-dark);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.trust-item p{
    color: rgba(255,255,255,.75);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

@media (min-width:992px){
    .trust-item::after{
        content:'';
        position:absolute;
        top:50%;
        right:-12px;
        transform:translateY(-50%);
        width:1px;
        height:45px;
        background:rgba(196,157,68,.25);
    }

    .col-lg:last-child .trust-item::after{
        display:none;
    }
}
  
/* ============================================================
   DIVISIONS SECTION
   ============================================================ */

.divisions-section{
    background: #fff;
}

.division-card {
  border-radius: 10px;
  padding: 1.8rem 1.6rem;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e2ed;
  background: #fff;
}

.division-navy {
  background: var(--navy);
}

.division-brown {
  background: var(--brown);
}

.division-green {
  background: var(--green);
}

.division-eyebrow {
  font-size: 1.2rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
}

.division-card h3 {
  font-weight: 500;
    font-size: 1.7rem;
    margin: 0.3rem 0 0.6rem;
    color: #000;
}

.division-sub {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 1rem;
  min-height: 60px;
  color: #000;
}

.division-img {
  width: 100%;
  height: 200px;
  /*object-fit: cover;*/
  border-radius: 6px;
  margin-bottom: 1.1rem;
}

.division-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 0.8rem;
  align-content: start;
  margin-bottom: 1.3rem;
  flex-grow: 1;
}

.division-list li {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000;
}

.division-list li a {
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.division-list li a:hover {
  color: var(--gold);
  text-decoration: none;
}

.division-list i {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.division-green .division-list i {
  color: #a8d5b0;
}

.btn-division-light,
.btn-division-gold,
.btn-division-light-green {
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-align: center;
  width: 100%;
}

.btn-division-light {
    background: #0d1b3d;
    color: #fff;
}

.btn-division-light:hover {
  background: #d6a541;
  color: #fff;
}

.btn-division-gold {
  background: #0d1b3d;
  color: #fff;
}

.btn-division-gold:hover {
   background: #d6a541;
   color: #fff;
}

.btn-division-light-green {
  background: #0d1b3d;
  color: #fff;
}

.btn-division-light-green:hover {
  background: #d6a541;
   color: #fff;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--bg-light);
  padding: 2rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.trust-strip i {
  font-size: 1.6rem;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.trust-strip h6 {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.trust-strip p {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.4;
}






/* ============================================================
   FACTORY & QC SECTION
   ============================================================ */
.factory-qc-section {
  width: 100%;
}

.factory-card,
.qc-card {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 2.5rem;
  color: #fff;
}

.factory-card {
  background-image: linear-gradient(rgba(13, 27, 61, 0.88), rgba(13, 27, 61, 0.93)),
    url('https://images.unsplash.com/photo-1581094288338-2314dddb7ece?w=900&h=600&fit=crop');
}

.qc-card {
  background-image: linear-gradient(rgba(35, 64, 39, 0.88), rgba(35, 64, 39, 0.93)),
    url('https://images.unsplash.com/photo-1556740758-90de374c12ad?w=900&h=600&fit=crop');
}

.overlay-content {
  width: 100%;
}

.overlay-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
}

.overlay-content i {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: inline-block;
}

.qc-card .overlay-content i {
  font-size: 1.1rem;
  color: #cde6cf;
}

.overlay-content h4 {
  
  font-size: 1.3rem;
  margin: 0.2rem 0 0.1rem;
}

.overlay-content small {
  font-size: 0.68rem;
  opacity: 0.85;
  display: block;
}

.col-2-4 {
  flex: 0 0 16.66%;
  max-width: 16.66%;
  padding: 0 4px;
}

.overlay-list li {
  font-size: 0.85rem;
  padding: 0.4rem 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.overlay-list i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 2px;
}

.qc-card .overlay-list i {
  color: #cde6cf;
}

/* ============================================================
   FEATURE BANNERS (FASHION HOUSE / GLOBAL CRAFT)
   ============================================================ */
.feature-banner {
  overflow: hidden;
}

.feature-fashion {
  background: #f7f1e7;
}

.feature-craft {
  background: #f3efe6;
}

.feature-banner-text {
  padding: 3rem 3.5rem;
  width: 100%;
}

.feature-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.6rem;
}

.feature-title {
  font-family: var(--font-display);
  
  font-size: 2.5rem;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.feature-tagline {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-dark);
  margin-bottom: 1.1rem;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.8rem;
  max-width: 460px;
}

.feature-icons-row {
  max-width: 460px;
}

.feature-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: 1.1rem;
}

.feature-icon-dark {
  background: var(--navy);
  color: var(--gold);
}

.feature-icon-outline-green {
  background: #fff;
  color: var(--green);
  border: 1.5px solid var(--green);
}

.feature-icons-row p {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 0;
}

.feature-banner-img-wrap {
  position: relative;
  height: 100%;
  min-height: 380px;
}

.feature-banner-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

/* Green icon bar overlay on Global Craft image */
.craft-icon-bar {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  background: var(--green-dark);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
}

.craft-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.craft-icon-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.craft-icon-item span {
  color: #fff;
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1.25;
}

.craft-icon-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 0.5rem;
}

/* ============================================================
   BOTTOM SECTION (SOURCING NETWORK / HOW WE WORK / BUYER ZONE)
   ============================================================ */
.bottom-section {
  background: #fff;
}

.bottom-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.bottom-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.map-box {
  position: relative;
  background: var(--bg-light);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.map-box img {
  max-height: 160px;
  margin: 0 auto;
  opacity: 0.85;
}

.map-label {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
}

.advantage-list li {
  font-size: 0.82rem;
  padding: 0.35rem 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-dark);
}

.advantage-list i {
  color: var(--green);
  margin-top: 2px;
}

.how-we-work-steps {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 320px;
  margin: 0 auto;
  position: relative;
}

.step-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  background: #fff;
}

.step-row span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.buyer-zone-card {
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 1.8rem;
  height: 100%;
}

.buyer-zone-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.buyer-zone-card > p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 1.2rem;
}

.buyer-zone-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 0.8rem;
  margin-bottom: 1.5rem;
}

.buyer-zone-list li {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.buyer-zone-list i {
  color: var(--gold);
  font-size: 0.78rem;
}

.btn-submit-inquiry {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.7rem 1rem;
  border-radius: 4px;
}

.btn-submit-inquiry:hover {
  background: var(--gold-dark);
  color: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
  background: var(--navy-dark);
  color: #b9bfd1;
  padding: 3.5rem 0 1.5rem;
  font-size: 0.85rem;
}

.logo-circle-footer {
  width: 42px;
  height: 42px;
}

.logo-title-footer {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.footer-desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #9aa1b8;
  margin-bottom: 1.2rem;
}

.footer-logo a img{
    width: 220px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  margin-right: 0.5rem;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--gold);
}

.main-footer h6 {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: #9aa1b8;
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact li {
  font-size: 0.82rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0.8rem;
  color: #9aa1b8;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 2px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 1.5rem 0 1rem;
}

.footer-bottom {
  font-size: 0.8rem;
  color: #8189a0;
}

/* ============================================================
   SECTION COMMON (eyebrow / subtitle)
   ============================================================ */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   FACTORY & MANUFACTURING SECTION
   ============================================================ */
.manufacturing-section {
  background: var(--bg-light);
}

.stat-box {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1.8rem 1rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.stat-box:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.stat-box i {
  font-size: 1.8rem;
  color: var(--gold-dark);
  margin-bottom: 0.7rem;
  display: block;
}

.stat-box h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.stat-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
}

.manufacturing-img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.manufacturing-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.manufacturing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.manufacturing-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.manufacturing-feature-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.manufacturing-feature-item > i {
  font-size: 1.1rem;
  color: var(--gold-dark);
  margin-top: 2px;
  flex-shrink: 0;
}

.manufacturing-feature-item h6 {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.manufacturing-feature-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   VIDEO SHOWCASE SECTION
   ============================================================ */
.video-section {
  background: var(--bg-light);
}

.video-thumb-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.video-thumb-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.video-play-btn:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}

.video-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
}

.video-main-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}

.video-main-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.video-list-item {
  display: flex;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.video-list-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.video-list-thumb {
  position: relative;
  flex-shrink: 0;
  width: 130px;
}

.video-list-thumb img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
}

.video-list-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
}

.video-list-play:hover {
  background: var(--gold-dark);
  color: #fff;
}

.video-list-info {
  padding: 0.8rem 0.8rem 0.8rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}

.video-list-info h6 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.35;
}

.video-list-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.video-list-info i {
  font-size: 0.7rem;
  margin-right: 4px;
}

/* ============================================================
   SUSTAINABILITY & COMPLIANCE SECTION
   ============================================================ */
.sustainability-section {
  background: #f5f6fa;
}

.sustain-card {
  border-radius: 10px;
  padding: 2rem 1.5rem;
  height: 100%;
  color: #fff;
  text-align: center;
  transition: transform 0.2s;
}

.sustain-card:hover {
  transform: translateY(-4px);
}

.sustain-green { background: var(--green); }
.sustain-blue  { background: #1a4f8a; }
.sustain-gold  { background: var(--gold-dark); }
.sustain-navy  { background: var(--navy); }

.sustain-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
}

.sustain-card h5 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.sustain-card p {
  font-size: 0.8rem;
  opacity: 0.88;
  line-height: 1.55;
  margin: 0;
}

.sustain-img {
  width: 100%;
  border-radius: 10px;
  height: 340px;
  object-fit: cover;
  display: block;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.cert-badge {
  background: #f0f4ff;
  border: 1.5px solid #c7d4f5;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.cert-badge i {
  color: var(--gold-dark);
  font-size: 0.75rem;
}

.sustain-stat-num {
  font-family: var(--font-display);
  
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.sustain-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}

/* ============================================================
   BUYER ZONE / RFQ FORM SECTION
   ============================================================ */
.rfq-section {
  background: var(--bg-light);
}

.rfq-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.rfq-left {
  background: var(--navy);
  padding: 3rem 2.5rem;
  height: 100%;
  color: #fff;
}

.rfq-title {
  font-family: var(--font-display);
  
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

.rfq-desc {
  font-size: 0.88rem;
  color: #b9c4dc;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.rfq-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.rfq-benefits li {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d4ddf0;
}

.rfq-benefits i {
  color: var(--gold);
  font-size: 0.85rem;
}

.rfq-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.2rem;
}

.rfq-contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: #b9c4dc;
}

.rfq-contact-item i {
  color: var(--gold);
  font-size: 1rem;
}

.rfq-form-panel {
  background: #fff;
  padding: 2.5rem;
  height: 100%;
}

.rfq-form-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.rfq-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.rfq-input {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border: 1.5px solid #e0e4ef;
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s;
}

.rfq-input:focus {
  border-color: var(--gold);
  background: #fff;
}

.rfq-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2rem;
}

.rfq-textarea {
  min-height: 100px;
  resize: vertical;
}

.rfq-file-upload {
  width: 100%;
  border: 2px dashed #c8d0e4;
  border-radius: 6px;
  padding: 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.rfq-file-upload:hover {
  border-color: var(--gold);
  background: #fdf9f1;
}

.rfq-file-upload i {
  font-size: 1.6rem;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.4rem;
}

.btn-rfq-submit {
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  border: none;
  transition: background 0.2s;
}

.btn-rfq-submit:hover {
  background: var(--gold-dark);
  color: #fff;
}

.rfq-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 0;
}

/* ============================================================
   RAW MATERIAL & TEXTILE CAPABILITY SECTION
   ============================================================ */
.rawmat-section {
  background: #f8f9fc;
  overflow: hidden;
}

/* Header band */
.rawmat-header {
  background: var(--navy);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.rawmat-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: #f8f9fc;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.rawmat-title {
  font-family: var(--font-display);
  
  font-size: 2.2rem;
  color: #fff;
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
}

.rawmat-subtitle {
  font-size: 0.9rem;
  color: #8fa3c4;
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
}

.rawmat-header-stats {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  gap: 0.5rem;
}

.rawmat-hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
}

.rawmat-hstat-num {
  font-family: var(--font-display);
  
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}

.rawmat-hstat-label {
  font-size: 0.68rem;
  color: #8fa3c4;
  font-weight: 500;
  margin-top: 0.3rem;
  text-align: center;
}

.rawmat-hstat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Body area */
.rawmat-body {
  padding: 3rem 0 4rem;
}

/* Large cards — top row */
.rawmat-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8eaf2;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.rawmat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.rawmat-card-img {
  position: relative;
  overflow: hidden;
}

.rawmat-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.rawmat-card:hover .rawmat-card-img img {
  transform: scale(1.05);
}

.rawmat-card-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rawmat-badge-green {
  background: var(--green) !important;
}

.rawmat-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rawmat-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #eef1fb;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}

.rawmat-icon-green {
  background: #e8f5ec !important;
  color: var(--green) !important;
}

.rawmat-card-body h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.rawmat-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.rawmat-spec-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.rawmat-spec-list li {
  font-size: 0.78rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 2px;
}

.rawmat-spec-list i {
  color: var(--gold-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.rawmat-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-top: auto;
  transition: color 0.2s;
}

.rawmat-link:hover {
  color: var(--navy);
}

/* Strip cards — bottom row */
.rawmat-strip {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8eaf2;
  transition: transform 0.2s, box-shadow 0.2s;
}

.rawmat-strip:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.rawmat-strip-img img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.rawmat-strip-body {
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.rawmat-strip-icon {
  font-size: 1.2rem;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.rawmat-icon-green-sm {
  color: var(--green) !important;
}

.rawmat-strip-body h6 {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.rawmat-strip-body p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* CTA bar */
.rawmat-cta-bar {
  background: var(--navy);
  border-radius: 12px;
  padding: 1.8rem 2.2rem;
}

.rawmat-cta-title {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.rawmat-cta-title i {
  color: var(--gold);
}

.rawmat-cta-sub {
  font-size: 0.82rem;
  color: #8fa3c4;
  margin: 0;
  line-height: 1.55;
}

.btn-explore, .rawmat-catalogue-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-explore, .rawmat-catalogue-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

@media (max-width: 991.98px) {
  .rawmat-header-stats {
    margin-top: 1.5rem;
  }

  .rawmat-title {
    font-size: 2rem;
  }

  .rawmat-header::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .rawmat-title {
    font-size: 1.7rem;
  }

  .rawmat-hstat-num {
    font-size: 1.4rem;
  }
}

/* ============================================================
   BLOG & NEWS SECTION — MODERN MAGAZINE STYLE
   ============================================================ */
.blog-section {
  background: #f5f6fa;
}

/* Header bar */
.blog-header {
  background: var(--navy);
  padding: 3rem 0 2.5rem;
}

.blog-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.blog-main-title {
  font-family: var(--font-display);
  
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.blog-header-sub {
  font-size: 0.88rem;
  color: #9aabcc;
  margin: 0;
}

.blog-category-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-bottom: 4px;
}

.blog-pill {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #c5cfe6;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.38rem 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
}

.blog-pill:hover,
.blog-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* Body area */
.blog-body {
  padding: 2.5rem 0 3rem;
}

/* Featured post — horizontal full-width */
.blog-featured-new {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s;
}

.blog-featured-new:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.blog-featured-img-wrap {
  position: relative;
  flex: 0 0 45%;
  max-width: 45%;
}

.blog-featured-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.blog-featured-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-featured-content {
  flex: 1;
  padding: 2rem 2rem 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-title {
  font-family: var(--font-display);
  
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.blog-featured-excerpt {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.blog-dot-sep {
  color: #ccc;
  font-size: 0.75rem;
}

.blog-date-new {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.blog-date-new i {
  margin-right: 4px;
  color: var(--gold-dark);
}

/* Tag styles */
.blog-tag-new {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-tag-industry  { background: #e8f0fe; color: #1a4f8a; }
.blog-tag-sustain   { background: #e8f5ec; color: var(--green); }
.blog-tag-tips      { background: #fef8e8; color: var(--gold-dark); }
.blog-tag-compliance{ background: #fce8e8; color: #b52b2b; }

/* Read button */
.btn-blog-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  transition: background 0.2s;
}

.btn-blog-read:hover {
  background: var(--gold);
  color: #fff;
}

/* Share buttons */
.blog-share-row {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.blog-share-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f0f4ff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: background 0.2s, color 0.2s;
}

.blog-share-btn:hover {
  background: var(--navy);
  color: #fff;
}

/* Grid cards */
.blog-card-new {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e8ecf4;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.blog-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.blog-card-new:hover .blog-card-img-wrap img {
  transform: scale(1.05);
}

.blog-card-img-wrap .blog-tag-new {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
}

.blog-card-new-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.blog-meta-row {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.blog-meta-row i {
  color: var(--gold-dark);
  margin-right: 3px;
}

.blog-card-new-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  line-height: 1.35;
  margin: 0;
}

.blog-card-new-excerpt {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}

.blog-card-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  transition: color 0.2s;
}

.blog-card-link:hover {
  color: var(--navy);
}

/* Hidden for filter */
.blog-cards-grid [data-btag].hidden {
  display: none;
}

/* Newsletter CTA */
.blog-newsletter {
  background: var(--navy);
  border-radius: 10px;
  padding: 1.8rem 2rem;
  margin-top: 2.5rem;
}

.blog-nl-title {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.blog-nl-title i {
  color: var(--gold);
}

.blog-nl-sub {
  font-size: 0.82rem;
  color: #9aabcc;
  margin: 0;
}

.blog-nl-form {
  align-items: center;
}

.blog-nl-form .rfq-input {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  flex: 1;
}

.blog-nl-form .rfq-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.blog-nl-form .rfq-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.btn-blog-subscribe {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-blog-subscribe:hover {
  background: var(--gold-dark);
}

/* View All button */
.btn-blog-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 2rem;
  border-radius: 6px;
  transition: all 0.2s;
}

.btn-blog-all:hover {
  background: var(--navy);
  color: #fff;
}

/* Responsive blog */
@media (max-width: 767.98px) {
  .blog-featured-new {
    flex-direction: column;
  }

  .blog-featured-img-wrap {
    flex: none;
    max-width: 100%;
  }

  .blog-featured-img-wrap img {
    min-height: 200px;
    max-height: 220px;
  }

  .blog-featured-content {
    padding: 1.3rem;
  }

  .blog-featured-title {
    font-size: 1.1rem;
  }

  .blog-category-pills {
    margin-top: 1rem;
  }

  .blog-nl-form {
    flex-direction: column;
  }
}

/* ============================================================
   BANGLADESH SOURCING NETWORK SECTION
   ============================================================ */
.sourcing-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.sourcing-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(214, 165, 65, 0.06);
  pointer-events: none;
}

.sourcing-inner {
  padding: 5rem 0;
}

.sourcing-section .section-eyebrow {
  color: var(--gold);
}

.sourcing-section .section-title {
  color: #fff;
}

.sourcing-section .manufacturing-desc {
  color: #b0bdd8;
}

.sourcing-advantages {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.sourcing-adv-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.sourcing-adv-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(214, 165, 65, 0.18);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.sourcing-adv-icon i {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
}

.sourcing-adv-item h6 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}

.sourcing-adv-item p {
  font-size: 0.78rem;
  color: #8fa3c4;
  margin: 0;
  line-height: 1.4;
}

.sourcing-map-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
}

.sourcing-map-img {
  position: relative;
  background: rgba(255,255,255,0.03);
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sourcing-map-img img {
  max-height: 200px;
  width: auto;
  margin: 0 auto;
  opacity: 0.75;
  filter: brightness(0) invert(1) opacity(0.5);
}

.sourcing-map-pin {
  position: absolute;
  bottom: 30%;
  right: 36%;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem 0.3rem 0.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  animation: pinPulse 2s infinite;
}

.sourcing-map-pin i {
  font-size: 0.9rem;
}

@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(214,165,65,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(214,165,65,0); }
}

.sourcing-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.sourcing-stat {
  padding: 1.2rem 0.8rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

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

.sourcing-stat h4 {
  font-family: var(--font-display);
  
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.sourcing-stat p {
  font-size: 0.68rem;
  color: #8fa3c4;
  margin: 0;
  font-weight: 500;
  line-height: 1.3;
}

/* ============================================================
   HOW WE WORK SECTION
   ============================================================ */
.howwework-section {
  background: #fff;
  padding: 5rem 0;
}

.hww-steps-wrap {
  position: relative;
}

.hww-connector {
  position: absolute;
  top: 56px;
  left: calc(8.33% + 24px);
  right: calc(8.33% + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--navy));
  z-index: 0;
}

.hww-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hww-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.hww-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(13,27,61,0.2);
  transition: transform 0.2s, background 0.2s;
}

.hww-step:hover .hww-circle {
  background: var(--gold);
  transform: translateY(-4px);
}

.hww-circle-gold {
  background: var(--gold) !important;
}

.hww-num {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold);
  color: #fff;
  font-size: 0.6rem;
  
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hww-num-gold {
  background: var(--navy) !important;
}

.hww-step h6 {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.hww-step p {
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  padding: 0 0.3rem;
}

.hww-cta {
  border-top: 1px solid var(--border-light);
  padding-top: 2.5rem;
}

.hww-cta-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.hww-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 2rem;
  border-radius: 6px;
  transition: all 0.2s;
}

.hww-cta a:hover {
  background: var(--navy);
  color: #fff;
}


/* ============================================================
   QUICK BUYER ZONE SECTION
   ============================================================ */
.quick-buyer-section {
  /*background: var(--bg-light);*/
  padding: 4rem 0;
}

.quick-buyer-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

/* Left: dark navy */
.qb-left {
  background: var(--navy-dark);
  padding: 3rem 2rem;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qb-globe-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.qb-left h3 {
  font-family: var(--font-display);
  
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

.qb-left p {
  font-size: 0.85rem;
  color: #8fa3c4;
  line-height: 1.65;
  margin-bottom: 1.8rem;
}

.qb-contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.qb-contact-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.65rem 1.2rem;
  border-radius: 6px;
  transition: all 0.2s;
}

.qb-whatsapp {
  background: #25d366;
  color: #fff;
}

.qb-whatsapp:hover {
  background: #1da851;
  color: #fff;
}

.qb-email {
  background: rgba(255,255,255,0.08);
  color: #d4ddf0;
  border: 1px solid rgba(255,255,255,0.15);
}

.qb-email:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Middle: services grid */
.qb-mid {
  background: #fff;
  padding: 3rem 2rem;
  height: 100%;
}

.qb-mid-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.3rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.qb-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.qb-service-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.2s;
  cursor: pointer;
}

.qb-service-item:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.qb-service-item i {
  color: var(--gold-dark);
  font-size: 1rem;
  flex-shrink: 0;
}

.qb-service-item:hover i {
  color: var(--gold);
}

/* Right: CTA panel */
.qb-right {
  background: linear-gradient(135deg, #c4942f 0%, var(--gold) 50%, #e8b84b 100%);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qb-right-inner {
  padding: 2.5rem 2rem;
  text-align: center;
  color: #fff;
}

.qb-right-inner h5 {
  font-family: var(--font-display);
  
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.qb-right-inner > p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.4rem;
}

.qb-promise-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.qb-promise-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
}

.qb-promise-list i {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}

.btn-qb-submit {
  display: block;
  width: 100%;
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.8rem;
  transition: background 0.2s, transform 0.2s;
}

.btn-qb-submit:hover {
  background: var(--navy-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-qb-catalogue {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.35);
  transition: background 0.2s;
}

.btn-qb-catalogue:hover {
  background: rgba(255,255,255,0.3);
  color: #fff;
}

/* Responsive */
@media (max-width: 991.98px) {
  .hww-connector { display: none; }

  .sourcing-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sourcing-stat {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .qb-right {
    border-radius: 0 0 14px 14px;
  }
}

@media (max-width: 767.98px) {
  .sourcing-inner { padding: 3rem 0; }

  .hww-step { margin-bottom: 1rem; }

  .qb-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: background 0.2s, transform 0.2s;
}

.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

.back-to-top.show {
  display: flex;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .main-nav {
    margin: 1rem 0;
  }

  .btn-send-inquiry {
    margin-left: 0;
    display: inline-block;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-text-panel {
    padding: 2.4rem 1.8rem;
  }

  .hero-icon-item {
    width: 30%;
  }

  .hero-slider,
  .hero-slide-img {
    min-height: 320px;
  }

  .factory-card,
  .qc-card {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  .col-2-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 1rem;
  }

  .feature-title {
    font-size: 2rem;
  }

  .feature-banner-text {
    padding: 2.2rem 1.8rem;
  }

  .feature-banner-img-wrap {
    min-height: 320px;
  }

  .feature-banner-img {
    min-height: 320px;
  }

  .craft-icon-bar {
    flex-wrap: wrap;
    row-gap: 0.8rem;
  }

  .craft-icon-item {
    flex: 0 0 25%;
  }

  .craft-icon-divider {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .hero-text-panel {
    padding: 2rem 1.5rem;
  }

  .hero-slider,
  .hero-slide-img {
    min-height: 260px;
  }

  .division-list {
    grid-template-columns: 1fr;
  }

  .buyer-zone-list {
    grid-template-columns: 1fr;
  }

  .feature-icons-row .col-3 {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 1rem;
  }

  .craft-icon-item {
    flex: 0 0 33.33%;
  }

  .section-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 575.98px) {
  .hero-icon-item {
    width: 45%;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .topbar-right a {
    display: none;
  }
}












/* ============================================================
   WHY EUROPE BANGLA SECTION
   ============================================================ */
.why-eb-section {
  overflow: hidden;
}

.why-eb-header {
 /* background: var(--navy);*/
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}


/*.why-eb-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background: #f8f9fc;
    clip-path: ellipse(55% 100% at 50% 100%);
}*/


.why-eb-title {
  font-family: var(--font-display);
  
  font-size: 2.2rem;
  color: #000;
  margin: 0.5rem 0 0.8rem;
  line-height: 1.15;
}

.why-eb-subtitle {
  font-size: 0.88rem;
  color: #000;
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
}

.why-eb-topstats {
  display: inline-flex;
  align-items: center;
  background: rgb(234 234 255);
  border: 1px solid #e0e2ed;
  /*border: 1px solid rgba(255,255,255,0.12);*/
  border-radius: 10px;
  padding: 1rem 1.2rem;
  gap: 0;
}

.why-eb-topstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.2rem;
}

.why-eb-topstat-num {
  font-family: var(--font-display);
  
  font-size: 1.9rem;
  color: #000;
  line-height: 1;
}

.why-eb-topstat-label {
  font-size: 0.78rem;
  color: #e1ab3e;
  font-weight: 500;
  margin-top: 0.3rem;
  text-align: center;
}

.why-eb-topstat-divider {
  width: 1px;
  height: 38px;
  background: #e0e2ed;
}

.why-eb-body {
  padding: 2.8rem 0 3.5rem;
}

.why-eb-card {
  border-radius: 12px;
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.why-eb-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(40,48,156,0.12);
}

.why-eb-card-primary {
  background: #fff;
  border: 1px solid #e0e2ed;
}



.why-eb-card-featured h5 { color: #fff !important; }
.why-eb-card-featured p  { color: #9aaece !important; }
.why-eb-card-featured .why-eb-list li { color: #c5d3f0 !important; }
.why-eb-card-featured .why-eb-list i  { color: var(--cyan) !important; }

.why-eb-featured-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--cyan);
  color: var(--primary);
  font-size: 0.65rem;
  
  padding: 0.3rem 0.9rem;
  border-radius: 0 12px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-eb-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.why-eb-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #eaeaff;
  border: 1px solid #7f91ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  transition: background 0.2s, color 0.2s;
}

.why-eb-card:hover .why-eb-icon-wrap {
  background: var(--cyan-light);
  color: var(--cyan-dark);
}

.why-eb-icon-cyan {
  background: rgba(36,189,227,0.15) !important;
  border-color: rgba(36,189,227,0.3) !important;
  color: var(--cyan) !important;
}

.why-eb-num {
  font-family: var(--font-display);
  
  font-size: 2.2rem;
  color: var(--border-light);
  line-height: 1;
  letter-spacing: -1px;
}

.why-eb-num-white {
  color: rgba(255,255,255,0.15) !important;
}

.why-eb-card h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  margin: 0;
  line-height: 1.25;
}

.why-eb-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}

.why-eb-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.3rem;
}

.why-eb-list li {
  font-size: 0.78rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4;
}

.why-eb-list i {
  color: var(--cyan);
  font-size: 0.9rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.why-eb-cta {
  background: var(--primary-dark);
  border-radius: 12px;
  padding: 1.8rem 2.2rem;
  margin-top: 2.5rem;
}

.why-eb-cta-title {
  font-weight: 700;
    font-size: 1.57rem;
    color: #000;
    margin-bottom: 0.3rem;
}

.why-eb-cta-sub {
  font-size: 1rem;
  color: var(--gold);
  margin: 0;
}

.why-eb-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 2rem;
  border-radius: 6px;
  transition: all 0.2s;
}

.why-eb-outline-btn:hover {
  background: var(--navy);
  color: #fff;
}

@media (max-width: 991.98px) {
  .why-eb-topstats { margin-top: 1.5rem; }
  .why-eb-header::after { display: none; }
  .why-eb-title { font-size: 1.9rem; }
}

@media (max-width: 767.98px) {
  .why-eb-title { font-size: 1.6rem; }
  .why-eb-topstat-num { font-size: 1.5rem; }
  .why-eb-cta { padding: 1.5rem; }
}



.rawmatSwiper{
    padding:15px 0 40px;
}

.rawmatSwiper .swiper-slide{
    height:auto;
}

.rawmat-card{
    height:100%;
}

.rawmatSwiper{
    padding:15px 0;
}

.rawmat-prev,
.rawmat-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border-radius:50%;
    background:#0B1E57;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:20;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.rawmat-prev{
    left:-25px;
}

.rawmat-next{
    right:-25px;
}

.rawmat-prev:hover,
.rawmat-next:hover{
    background:#D4A437;
    color:#fff;
}

.rawmat-prev i,
.rawmat-next i{
    font-size:22px;
}

@media(max-width:992px){

    .rawmat-prev{
        left:5px;
    }

    .rawmat-next{
        right:5px;
    }

}









/*=============Testmonials============*/


.carousel-control-next {
    margin: 0 3em;
}

i.fa-arrow-right,
i.fa-arrow-left {
  background: none;
  border: 2px solid #0d6efd;
  color: #0d6efd;
  padding: 10px;
  border-radius: 100%;
  transition: background .6s ease;
}

i.fa-arrow-right:hover,
i.fa-arrow-left:hover {
    background: #0d6efd;
    color: white;
}

/* Indicators */
.carousel-indicators {
    justify-content: flex-start;
   transform: translate(-40px, 50px);
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 2px solid #12269d;
}

.carousel-indicators .active {
    opacity: 1;
    background-color:  #12269d;
}


.carousel-control-next, 
.carousel-control-prev {
    top: 1em;
    left: 3em;
}

.testimonial-text {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 20px; 
}

.wow {
    position: relative;
    grid-column: span 2;
}

.carousel-landmark {
    grid-column: span 3;
}



.testimonial-carousel{
    position:relative;
}

.control-btn{
    position: absolute;
    right: 20px;
    bottom: 0px;
    display: flex;
    gap: 15px;
    z-index: 100;

}

.carousel-control-prev,
.carousel-control-next{

    position:static;

    width:40px;
    height:40px;

    opacity:1;

    background:#0B1E57;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;

}

.carousel-control-prev:hover,
.carousel-control-next:hover{

    background:#d4a437;

}

.carousel-control-prev i,
.carousel-control-next i{

    color:#fff;
    font-size:20px;

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    display:none;

}
.testmonial-title {
    font-family: var(--font-display);
    
    font-size: 2.2rem;
    color: #0d1b3d;
    margin: 0.5rem 0 0.8rem;
    line-height: 1.15;
}

.testimonial-item p{
  font-size: 16px;
}
@media screen and (max-width: 576px) {
    .testimonial-text {
        margin-top: 50px;
    row-gap: 50px;
    
}
    .wow {
    grid-column: span 5;
}

.carousel-landmark {  
    grid-column: span 5;
}
}

/*===================Shipping section==============*/

.export-section{
    background:#fff;
    padding: 60px 0px;
}

.section-tag{
    color:#d4a437;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;

}

.section-title{
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: #000;
    line-height: 1.15;
    margin: 0.5rem 0 1rem;

}

.section-desc{

    max-width:760px;
    margin:auto;
    color:#6b7280;
}

.shipping-card{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    border:1px solid #edf1f7;
    text-align:center;
    height:100%;
    transition:.35s;

}

.shipping-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.shipping-icon{

    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#071B4A;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.shipping-icon i{
    color:#d4a437;
    font-size:34px;
}

.shipping-card h5{
    color:#071B4A;
    font-weight:700;
    margin-bottom:15px;
}

.shipping-card p{
    color:#6b7280;
    line-height:1.8;
}

.shipping-info{
    background:#071B4A;
    color:#fff;
    padding:40px;
    border-radius:20px;
}

.shipping-info h4{
    font-weight:600;

}

.shipping-info p{
    color:#dbe4ff;
    margin-bottom:0;

}

.shipping-info .btn{

    background:#d4a437;
    border:none;
    color:#071B4A;
    font-weight:600;
}

.shipping-info .btn:hover{
    background:#fff;
}

/*====================CEO Msm===============*/
.ceo-message-section{
    background:#f5f6fa;
}

.section-tag{
    color: var(--gold);
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;

}

.ceo-title{
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: #000;
    line-height: 1.15;
    margin: 0.5rem 0 1rem;

}

.quote-icon{
    font-size:55px;
    color:#D4A437;
    margin-bottom:20px;
}

.ceo-message-section p{
    color:#6b7280;
    line-height:1.9;
    margin-bottom:18px;
}

.ceo-image-box{
    position:relative;
}

.ceo-image-box img{
    border-radius:25px;
    width:100%;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.experience-box{
    position:absolute;
    bottom:25px;
    right:-20px;
    width:130px;
    height:130px;
    background:#071B4A;
    border-radius:50%;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    border:6px solid #D4A437;
}

.experience-box h2{
    margin:0;
    font-size:34px;
    font-weight:700;
}

.experience-box h3{
    font-size:15px;
    margin-bottom:0;
}

.ceo-footer{
    margin-top:40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.ceo-footer h5{
    margin:0;
    color:#071B4A;
    font-weight:700;
}

.ceo-footer span{
    color:#777;
}

.signature{
    max-height:70px;

}




/*================================

==================================*/
.turnover-section {
    background: #ffffff;
    padding: 70px 0 80px;
}

.turnover-header-block {
    margin-bottom: 50px;
}

.turnover-title {
    font-size: 38px;
    font-weight: 700;
    color: #16224d;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.turnover-sub {
    font-size: 15px;
    color: #6c757d;
    font-weight: 400;
    margin-bottom: 0;
}

/* Turnover Chart Component */
.turnover-chart-wrap {
    width: 100%;
    max-width: 530px;
    margin: 0 auto;
    padding: 10px 0;
}

.turnover-chart-flex {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* Y-Axis Title */
.chart-y-title-col {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    width: 24px;
    flex-shrink: 0;
}

.chart-y-title-text {
    font-size: 12.5px;
    font-weight: 600;
    color: #4b5563;
    white-space: nowrap;
    transform: rotate(-90deg);
    transform-origin: center center;
    letter-spacing: 0.2px;
}

/* Chart Plot Area */
.chart-plot-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.chart-canvas-area {
    display: flex;
    height: 280px;
    position: relative;
}

/* Y-Axis Ticks */
.chart-y-ticks {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-right: 4px;
    flex-shrink: 0;
    width: 38px;
    text-align: right;
    user-select: none;
}

.chart-tick-label {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
    line-height: 1;
    height: 0;
}

.chart-tick-dash {
    display: inline-block;
    width: 4px;
    height: 1.5px;
    background-color: #6b7280;
}

/* Plot Stage */
.chart-plot-stage {
    flex: 1;
    position: relative;
    height: 100%;
    border-left: 1.5px solid #4b5563;
    border-bottom: 1.5px solid #4b5563;
}

/* Gridlines */
.chart-gridlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.chart-gridline {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #f1f5f9;
}

/* Chart Bars */
.chart-bars-row {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 0 8px;
}

.chart-col-item {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    max-width: 75px;
}

.chart-bar-pillar {
    width: 100%;
    max-width: 54px;
    height: var(--bar-height, 0%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.chart-bar-val {
    position: absolute;
    top: -24px;
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    letter-spacing: -0.2px;
    line-height: 1;
}

.chart-bar-fill {
    width: 100%;
    height: 100%;
    background-color: #1771b6;
    border-radius: 1px 1px 0 0;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.chart-bar-fill:hover {
    background-color: #0f5c97;
    filter: brightness(1.05);
    box-shadow: 0 6px 16px rgba(23, 113, 182, 0.3);
    transform: translateY(-2px);
}

/* X-Axis Labels */
.chart-x-row {
    display: flex;
    margin-top: 8px;
}

.chart-x-indent {
    width: 38px;
    flex-shrink: 0;
}

.chart-x-labels {
    flex: 1;
    display: flex;
    justify-content: space-around;
    padding: 0 8px;
}

.chart-x-label-item {
    flex: 1;
    max-width: 75px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

/* X-Axis Title */
.chart-x-title-wrap {
    text-align: center;
    margin-top: 4px;
    padding-left: 38px;
}

.chart-x-title {
    font-size: 12.5px;
    font-weight: 600;
    color: #4b5563;
    display: inline-block;
}

/* Right Narrative */
.turnover-narrative {
    padding-left: 20px;
}

.turnover-narrative-title {
    font-size: 30px;
    font-weight: 800;
    color: #0b224d;
    margin-bottom: 22px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.turnover-narrative-body p {
    font-size: 15.5px;
    line-height: 1.85;
    color: #555555;
    margin-bottom: 20px;
}

.turnover-narrative-body p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .turnover-section {
        padding: 50px 0 60px;
    }
    .turnover-title {
        font-size: 30px;
    }
    .turnover-narrative {
        padding-left: 0;
        margin-top: 35px;
    }
    .turnover-narrative-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
}

@media (max-width: 575.98px) {
    .turnover-title {
        font-size: 24px;
    }
    .chart-canvas-area,
    .chart-y-title-col {
        height: 230px;
    }
    .chart-bar-pillar {
        max-width: 38px;
    }
    .chart-bar-val {
        font-size: 11.5px;
        top: -20px;
    }
    .chart-x-label-item {
        font-size: 11.5px;
    }
    .chart-y-ticks {
        width: 30px;
    }
    .chart-x-indent,
    .chart-x-title-wrap {
        padding-left: 30px;
    }
    .chart-tick-label {
        font-size: 10.5px;
    }
}


/*====================*/



:root {
    --primary:   #28309C;
    --secondary: #24BDE3;
    --dark:      #1B238B;
    --white:     #ffffff;
    --gray-bg:   #f5f6fa;
    --gray-text: #6b7280;
    --border:    #e5e7eb;
    --card-shadow: 0 2px 12px rgba(40,48,156,0.07);
  }




/* ===== SECTION WRAPPER ===== */
  .pg-section {
    padding: 60px 0px;
    background: #f7f7f9;
  }

  .pg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* ===== PRODUCT SECTION HEADER (CENTERED) ===== */
  .product-section-header {
    text-align: center;
    margin-bottom: 2.2rem;
  }

  .product-section-header .section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark, #b8860b);
    margin-bottom: 0.5rem;
  }

  .product-section-header .section-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--navy, #0f2744);
    margin-bottom: 0.75rem;
  }

  .product-section-header .manufacturing-desc {
    max-width: 680px;
    margin: 0 auto 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted, #6c757d);
    line-height: 1.65;
  }

  /* ===== HEADING ===== */
  .pg-heading {
    margin-bottom: 6px;
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    position: relative;
    padding-bottom: 12px;
  }

  .pg-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
  }

  .pg-subtext {
    font-size: 14px;
    color: var(--gray-text);
    margin-top: 14px;
    margin-bottom: 24px;
    max-width: 560px;
    line-height: 1.6;
  }

  /* ===== FILTER BAR ===== */
  .pg-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
  }

  .pg-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .pg-tab {
    padding: 8px 18px;
    border-radius: 6px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: #374151;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
  }

  .pg-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
  }

  .pg-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
  }

  .pg-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #374151;
    font-weight: 500;
  }

  .pg-sort select {
    padding: 7px 12px;
    border-radius: 6px;
    border: 1.5px solid var(--border);
    font-size: 13.5px;
    color: #374151;
    background: var(--white);
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    outline: none;
  }

  /* ===== GRID ===== */
  .pg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  @media (max-width: 1199.98px) { .pg-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 991.98px)  { .pg-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 575.98px)  { .pg-grid { grid-template-columns: 1fr; } }

  .pg-fade-in {
    animation: pgFadeIn 0.35s ease-out forwards;
  }

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

  /* ===== CARD ===== */
  .pg-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
  }

  .pg-card:hover {
    box-shadow: 0 8px 28px rgba(40,48,156,0.13);
    transform: translateY(-3px);
  }

  /* ===== IMAGE AREA ===== */
  .pg-img-wrap {
    position: relative;
    overflow: hidden;
    height: 190px;
    background: #eef0f7;
  }

  .pg-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s;
  }

  .pg-card:hover .pg-img-wrap img {
    transform: scale(1.05);
  }

  /* category badge */
  .pg-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.3px;
  }

  .badge-apparel  { background: var(--primary); }
  .badge-denim    { background: #2563eb; }
  .badge-leather  { background: #92400e; }
  .badge-jute     { background: #78350f; }
  .badge-craft    { background: #b45309; }
  .badge-sourcing { background: #0f766e; }

  /* wishlist */
  .pg-wish {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #9ca3af;
    font-size: 13px;
    border: none;
    transition: color 0.2s;
  }

  .pg-wish:hover { color: #ef4444; }

  /* ===== CARD BODY ===== */
  .pg-card-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .pg-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
  }

  /* meta rows */
  .pg-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
  }

  .pg-meta-row {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 12px;
    color: #4b5563;
    line-height: 1.4;
  }

  .pg-meta-row i {
    color: var(--primary);
    font-size: 11px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 13px;
  }

  .pg-meta-row strong {
    color: #111827;
    font-weight: 600;
  }

  /* color dots */
  .pg-dots {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
  }

  .pg-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.12);
    display: inline-block;
  }

  /* ===== CARD ACTIONS ===== */
  .pg-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
  }

  .btn-details {
    flex: 1;
    padding: 8px 4px;
    border-radius: 6px;
    border: 1.5px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    text-align: center;
  }

 /* .btn-details:hover {
    background: var(--primary);
    color: var(--white);
  }*/

  .btn-quote {
    flex: 1;
    padding: 8px 4px;
    border-radius: 6px;
    border: none;
    background: var(--primary);
    color: var(--white);
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Inter', sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .btn-quote:hover { background: var(--dark); }


  /*===============================
          Product Modal
  ===============================*/

  #rfqModal, #rfqModal * {
    overflow-x: clip;
    overflow-y: auto;
  }

  #rfqModal .modal-content {
    border-radius: 14px;
    border: none;
    overflow: hidden;
  }

  /* ===== HEADER ===== */
  #rfqModal .modal-header {
    padding: 20px 24px 14px;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }

  #rfqModal .rfq-title {
    font-size: 19px;
    font-weight: 700;
    color: #111827;
    margin: 0;
  }

  #rfqModal .rfq-subtext {
    font-size: 12.5px;
    color: #6b7280;
    margin-top: 4px;
  }

  #rfqModal .btn-close {
    font-size: 12px;
    margin-top: 4px;
  }

  /* ===== BODY ===== */
  #rfqModal .modal-body {
    padding: 18px 24px 6px;
  }

  #rfqModal .rfq-section-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
    margin: 18px 0 10px;
  }

  #rfqModal .rfq-section-title:first-child { margin-top: 0; }

  #rfqModal .form-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 5px;
  }

  #rfqModal .form-label .req { color: #dc2626; }

  #rfqModal .form-control,
  #rfqModal .form-select {
    font-size: 13px;
    padding: 9px 11px;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    background: #fafafa;
    color: #111827;
  }

  #rfqModal .form-control::placeholder { color: #9ca3af; }

  #rfqModal .form-control:focus,
  #rfqModal .form-select:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(40,48,156,0.1);
  }

  #rfqModal .form-control[readonly] {
    background: #f3f4f6;
    color: #6b7280;
  }

  #rfqModal textarea.form-control {
    min-height: 70px;
    resize: vertical;
  }

  /* color field */
  #rfqModal .rfq-color-wrap {
    position: relative;
  }

  #rfqModal .rfq-color-wrap input[type="color"] {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
  }

  /* ===== SHIPPING TERMS PILLS (Bootstrap btn-group) ===== */
  #rfqModal .rfq-pills .btn {
    flex: 1;
    font-size: 12.5px;
    font-weight: 600;
    border-radius: 7px !important;
    border: 1.5px solid var(--border);
    color: #374151;
    background: #fff;
    padding: 9px 6px;
  }

  #rfqModal .rfq-pills .btn-check:checked + .btn {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
  }

  #rfqModal .rfq-pills {
    gap: 8px;
  }

  /* ===== RADIO GROUP ===== */
  #rfqModal .rfq-radio-group {
    display: flex;
    gap: 18px;
    align-items: center;
    padding-top: 8px;
  }

  #rfqModal .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
  }

  #rfqModal .form-check-label {
    font-size: 13px;
    color: #374151;
  }

  /* ===== FILE UPLOAD ===== */
  #rfqModal .rfq-upload-hint {
    font-size: 11.5px;
    color: #9ca3af;
    margin-bottom: 8px;
  }

  #rfqModal .rfq-file-name {
    font-size: 12px;
    color: #9ca3af;
    margin-left: 12px;
  }

  /* ===== FOOTER ===== */
  #rfqModal .modal-footer {
    flex-direction: column;
    border-top: none;
    padding: 6px 24px 24px;
  }

  #rfqModal .rfq-submit {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
  }

  #rfqModal .rfq-submit:hover { background: var(--dark); color: #fff; }

  #rfqModal .rfq-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 11.5px;
    color: #6b7280;
  }

  #rfqModal .rfq-secure i { color: #059669; font-size: 11px; }

  #rfqModal hr { margin: 4px 0 16px; }


  /*==================Product details==============*/


.pd-page {
    margin: 0 auto;
    padding: 30px 20px 70px;
  }

  /* ===== BREADCRUMB ===== */
  .pd-breadcrumb {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 18px;
  }

  .pd-breadcrumb a {
    color: var(--gray-text);
    text-decoration: none;
  }

  .pd-breadcrumb a:hover { color: var(--primary); }

  .pd-breadcrumb .current { color: var(--primary); font-weight: 600; }

  /* ===== TOP CARD (gallery + overview) ===== */
  .pd-top-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 14px rgba(40,48,156,0.06);
    padding: 24px;
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 32px;
    margin-bottom: 24px;
  }

  @media (max-width: 900px) {
    .pd-top-card { grid-template-columns: 1fr; }
  }

  /* ===== GALLERY ===== */
  .pd-main-img {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #f1f2f6;
    border: 1px solid var(--border);
    position: relative;
    cursor: zoom-in;
  }

  .pd-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.15s ease-out;
    transform-origin: center center;
    pointer-events: none;
  }

  .pd-main-img.zoomed img {
    transform: scale(2.2);
  }

  /* ===== THUMBNAIL SLIDER ===== */
  .pd-thumbs-wrap {
    position: relative;
    margin-top: 10px;
  }

  .pd-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
  }

  .pd-thumbs::-webkit-scrollbar { height: 5px; }
  .pd-thumbs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
  .pd-thumbs::-webkit-scrollbar-thumb:hover { background: #c7cad1; }

  .pd-thumb {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    background: #f1f2f6;
    transition: border-color 0.2s;
  }

  .pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pd-thumb.active,
  .pd-thumb:hover { border-color: var(--primary); }

  .pd-thumb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    font-size: 11px;
    z-index: 2;
  }

  .pd-thumb-nav:hover { color: var(--primary); border-color: var(--primary); }
  .pd-thumb-nav.prev { left: -10px; }
  .pd-thumb-nav.next { right: -10px; }
  .pd-thumb-nav.hidden { display: none; }

  /* ===== OVERVIEW (right of gallery) ===== */
  .pd-overview-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
  }

  .pd-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .pd-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
  }

  .pd-cat-badge {
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 5px;
  }

  .pd-icon-actions {
    display: flex;
    gap: 6px;
  }

  .pd-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
    cursor: pointer;
    transition: all 0.2s;
  }

  .pd-icon-btn:hover { border-color: var(--primary); color: var(--primary); }
  .pd-icon-btn.liked { color: #ef4444; border-color: #ef4444; }

  .pd-desc {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
    margin: 14px 0 20px;
  }

  .pd-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 18px 0;
  }

  /* ===== SPEC GRID (2-column) ===== */
  .pd-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 28px;
  }

  @media (max-width: 480px) {
    .pd-spec-grid { grid-template-columns: 1fr; }
  }

  .pd-spec-row {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 0;
    font-size: 13.5px;
    color: #374151;
  }

  .pd-spec-row strong {
    color: #111827;
    font-weight: 700;
    min-width: 95px;
    flex-shrink: 0;
  }

  .pd-color-dots {
    display: inline-flex;
    gap: 5px;
    margin-left: 4px;
  }

  .pd-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.1);
    display: inline-block;
  }

  /* ===== ACTION BUTTONS ===== */
  .pd-actions {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
  }

  .pd-btn {
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1.5px solid transparent;
    font-family: 'Inter', sans-serif;
  }

  .pd-btn-outline {
    background: #fff;
    border-color: var(--border);
    color: #374151;
  }

  .pd-btn-outline:hover { border-color: var(--primary); color: var(--primary); }

  .pd-btn-whatsapp {
    background: #fff;
    border-color: #25D366;
    color: #128C4A;
  }

  .pd-btn-whatsapp:hover { background: #25D366; color: #fff; }

  .pd-btn-primary {
    background: var(--primary);
    color: #fff;
    margin-left: auto;
  }

  .pd-btn-primary:hover { background: var(--dark); color: #fff; }

  @media (max-width: 650px) {
    .pd-btn-primary { margin-left: 0; }
    .pd-actions { flex-direction: column; }
    .pd-btn { width: 100%; justify-content: center; }
  }

  /* ===== DETAIL SECTIONS (below top card) ===== */
  .pd-section-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 14px rgba(40,48,156,0.06);
    padding: 26px 28px;
    margin-bottom: 20px;
  }

  .pd-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
  }

  .pd-section-title .pd-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(40,48,156,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }

  .pd-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 28px;
  }

  @media (max-width: 768px) {
    .pd-detail-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 480px) {
    .pd-detail-grid { grid-template-columns: 1fr; }
  }

  .pd-detail-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }

  .pd-detail-item i {
    color: var(--primary);
    font-size: 13px;
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
  }

  .pd-detail-item .label {
    display: block;
    font-size: 12px;
    color: var(--gray-text);
    font-weight: 500;
    margin-bottom: 2px;
  }

  .pd-detail-item .value {
    font-size: 13.5px;
    font-weight: 600;
    color: #111827;
  }

  /* checklist style for compliance section */
  .pd-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .pd-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #374151;
  }

  .pd-check-item i {
    color: #059669;
    font-size: 15px;
    flex-shrink: 0;
  }

  .pd-cert-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .pd-cert-tag {
    background: var(--gray-bg);
    border: 1px solid var(--border);
    color: #374151;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
  }

  /* ===== PRODUCT TABS ===== */
  .pd-tabs-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 14px rgba(40,48,156,0.06);
    margin-bottom: 24px;
    overflow: hidden;
  }

  .pd-tabs-nav {
    display: flex;
    overflow-x: auto;
    border-bottom: 1px solid var(--border);
    background: #fafafe;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .pd-tabs-nav::-webkit-scrollbar { display: none; }

  .pd-tab-btn {
    flex: 0 0 auto;
    padding: 15px 20px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gray-text);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    font-family: 'Inter', sans-serif;
  }

  .pd-tab-btn:hover { color: var(--primary); background: rgba(40,48,156,0.04); }

  .pd-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: #fff;
  }

  .pd-tab-panels {
    padding: 26px 28px;
  }

  .pd-tab-panel { display: none; }
  .pd-tab-panel.active {
    display: block;
    animation: pdFadeIn 0.25s ease;
  }

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

  .pd-tab-panel-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
  }

  .pd-tab-panel p.pd-tab-text {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 10px;
  }

  /* Detail grid reused inside tab panels */
  .pd-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 28px;
  }

  @media (max-width: 768px) {
    .pd-detail-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-tab-panels { padding: 20px 18px; }
    .pd-tab-btn { padding: 13px 16px; font-size: 13px; }
  }

  @media (max-width: 480px) {
    .pd-detail-grid { grid-template-columns: 1fr; }
    .pd-tab-btn { padding: 12px 14px; font-size: 12.5px; }
  }

  .pd-detail-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }

  .pd-detail-item i {
    color: var(--primary);
    font-size: 13px;
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
  }

  .pd-detail-item .label {
    display: block;
    font-size: 12px;
    color: var(--gray-text);
    font-weight: 500;
    margin-bottom: 2px;
  }

  .pd-detail-item .value {
    font-size: 13.5px;
    font-weight: 600;
    color: #111827;
  }

  /* ===== SIZE CHART TABLE ===== */
  .pd-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 10px;
  }

  .pd-size-table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    font-size: 13px;
  }

  .pd-size-table th {
    background: var(--gray-bg);
    color: #111827;
    font-weight: 700;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
  }

  .pd-size-table td {
    padding: 10px 14px;
    color: #4b5563;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
  }

  .pd-size-table tr:last-child td { border-bottom: none; }

  /* ===== CHECKLIST (Material / Packaging / Certifications) ===== */
  .pd-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .pd-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #374151;
  }

  .pd-check-item i {
    color: #059669;
    font-size: 15px;
    flex-shrink: 0;
  }

  .pd-cert-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
  }

  .pd-cert-tag {
    background: var(--gray-bg);
    border: 1px solid var(--border);
    color: #374151;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
  }

  /* ===== FAQ ACCORDION ===== */
  .pd-faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
  }

  .pd-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    background: #fff;
    transition: background 0.2s;
  }

  .pd-faq-q:hover { background: var(--gray-bg); }

  .pd-faq-q i {
    color: var(--primary);
    transition: transform 0.25s;
    font-size: 12px;
    flex-shrink: 0;
    margin-left: 10px;
  }

  .pd-faq-item.open .pd-faq-q i { transform: rotate(180deg); }

  .pd-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--gray-bg);
  }

  .pd-faq-item.open .pd-faq-a {
    max-height: 200px;
  }

  .pd-faq-a-inner {
    padding: 14px 16px;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.7;
  }

  /* ===== RELATED PRODUCTS ===== */
  .pd-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  @media (max-width: 900px) {
    .pd-related-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 480px) {
    .pd-related-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  }

  .pd-related-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.25s, transform 0.25s;
    cursor: pointer;
    text-decoration: none;
    display: block;
  }

  .pd-related-card:hover {
    box-shadow: 0 8px 22px rgba(40,48,156,0.12);
    transform: translateY(-3px);
  }

  .pd-related-img {
    height: 130px;
    background: #f1f2f6;
    overflow: hidden;
  }

  .pd-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pd-related-body {
    padding: 10px 12px 12px;
  }

  .pd-related-name {
    font-size: 12.5px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
    line-height: 1.3;
  }

  .pd-related-moq {
    font-size: 11.5px;
    color: var(--gray-text);
  }

  /* ===== BOTTOM STICKY-ish ACTION BAR (final CTA) ===== */
  .pd-bottom-cta {
    background: linear-gradient(120deg, var(--primary), var(--dark));
    border-radius: 14px;
    padding: 30px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    color: #fff;
  }

  .pd-bottom-cta h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .pd-bottom-cta p {
    font-size: 13px;
    opacity: 0.85;
    margin: 0;
  }

  .pd-bottom-cta .pd-btn-primary {
    background: #fff;
    color: var(--primary);
    margin-left: 0;
  }

  .pd-bottom-cta .pd-btn-primary:hover { background: var(--secondary); color: #fff; }


/*=======================Certificates===============*/
.tb-cert-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d6a541;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.tb-cert-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 46px;
    height: 3px;
    background: #162a9a;
    border-radius: 2px;
}


   .certificate-box {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
    /*-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);*/
  }
 
  .certificate-box .certificate-track {
    display: flex;
    gap: 40px;
    align-items: center;
    width: max-content;
    animation: certScroll 25s linear infinite;
  }
 
  .certificate-box:hover .certificate-track {
    animation-play-state: paused;
  }
 
  .certificate-box .certificate-items {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px; 
  }
 
  .certificate-box .certificate-items img {
   transition: filter 0.3s, transform 0.3s;
    width: auto;
    object-fit: contain;
  }
 
  .certificate-box .certificate-items img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
  }
 
  /* Moves exactly one full set (50% of total track width since track = 2x sets) */
  @keyframes certScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }








.social-menu-floting{
    width: 50px;
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 999;
    right: 0;
    top: 25%;
    
    text-align: center;
}

.social-menu-floting a{
    color: #fff;
    display: block;
    border-bottom: 1px solid #e0e0e0;
    padding: 6px 0px;
    font-size: 20px;
    background: #d6a541;
}

.social-menu-floting a:hover{
    background: #edb544;
}

.social-menu-floting a:last-child{
    border-bottom: 0px;
}



/*====================about===========*/


  /* ============ SECTION SHELL ============ */
.timeline-section{
    position: relative;
    padding: 60px 0;
    background: #f7f7f9;
  }


  .timeline {
    position: relative;
   
    margin: 0 auto;
  }

  .timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background-image: linear-gradient(var(--border) 60%, transparent 0%);
    background-size: 2px 12px;
    background-repeat: repeat-y;
  }

  @media (min-width: 720px) {
    .timeline::before { left: 50%; transform: translateX(-1px); }
  }

  .t-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 36px;
    padding-left: 56px;
  }

  @media (min-width: 720px) {
    .t-row {
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      padding-left: 0;
    }
    .t-row:nth-child(odd)  .t-card { grid-column: 1; text-align: right; }
    .t-row:nth-child(even) .t-card { grid-column: 2; }
  }

  .t-dot {
    position: absolute;
    left: 24px;
    top: 4px;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--secondary);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--secondary);
    z-index: 2;
  }

  @media (min-width: 720px) {
    .t-dot { left: 50%; }
  }

  .t-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 22px;
    box-shadow: 0 4px 16px rgba(40,48,156,0.05);
  }

  .t-year {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
  }

  .t-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--ink);
  }

  .t-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
  }

  /* ============ 3 & 4. MISSION / VISION ============ */
  .mission-vision{
    padding: 60px 0px;
  }
  .mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  @media (max-width: 800px) {
    .mv-grid { grid-template-columns: 1fr; }
  }

  .mv-card {
    border-radius: 18px;
    padding: 38px 34px;
    position: relative;
    overflow: hidden;
  }

  .mv-card.mission {
    background: var(--primary);
    color: #fff;
  }

  .mv-card.vision {
    background: #fff;
    border: 1.5px solid var(--border);
    color: var(--ink);
  }

  .mv-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 22px;
  }

  .mv-card.mission .mv-icon { background: rgba(255,255,255,0.14); color: var(--secondary); }
  .mv-card.vision .mv-icon  { background: rgba(40,48,156,0.08); color: var(--primary); }

  .mv-card h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
  }

  .mv-card p {
    font-size: 14.5px;
    line-height: 1.85;
  }

  .mv-card.mission p { color: rgba(255,255,255,0.85); }
  .mv-card.vision p { color: var(--muted); }

  .mv-card.mission::after {
    content: '\201C';
    position: absolute;
    right: 18px;
    top: -28px;
    font-family: var(--serif);
    font-size: 160px;
    color: rgba(255,255,255,0.06);
    line-height: 1;
  }

  /* ============ 5. CORE VALUES ============ */

 .value-img {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}
  .value-img img{
    width: 100%;
}
  
  /* ============ 9. COMPANY DOCUMENTS ============ */
.documents-section{
  padding: 60px 0px;
}

  .docs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  @media (max-width: 900px) { .docs-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .docs-grid { grid-template-columns: 1fr; } }

  .doc-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 15px;
    text-align: center;
    transition: all 0.25s;
    text-decoration: none;
    display: block;
    background: #fff;
  }

  .doc-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 28px rgba(40,48,156,0.1);
    transform: translateY(-4px);
  }

  .doc-icon {
    background: rgba(40,48,156,0.07);
    color: var(--primary);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
  }

  .doc-card h5 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
  }

 
  .doc-card .doc-dl {
    margin-top: 12px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

.doc-dl a{
    background: #d6a541;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
}

/*====================================*/
 .ph-header {
    position: relative;
    background: linear-gradient(165deg, var(--primary) 0%, var(--dark) 60%, #131a72 100%);
    color: #fff;
    padding: 40px 0px;
    overflow: hidden;
    font-family: var(--sans);
  }
 
  .ph-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.045) 0px, rgba(255,255,255,0.045) 1px, transparent 1px, transparent 64px);
    pointer-events: none;
  }
 
  .ph-header::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36,189,227,0.22), transparent 70%);
    pointer-events: none;
  }
 
  .ph-wrap {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }
 
  .ph-title {
    font-size: 30px;
    font-weight: 600;
  }
 
  .ph-subtitle {
    font-size: 13.5px;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    line-height: 1.6;
  }
 
  /* ===== BREADCRUMB ===== */
  .ph-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 22px;
    font-size: 12.5px;
  }
 
  .ph-breadcrumb a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }
 
  .ph-breadcrumb a:hover { color: #fff; }
 
  .ph-breadcrumb a i.ph-home-icon {
    font-size: 11px;
  }
 
  .ph-breadcrumb .ph-sep {
    color: rgba(255,255,255,0.35);
    font-size: 10px;
  }
 
  .ph-breadcrumb .ph-current {
    color: var(--gold);
    font-weight: 600;
  }
 
  @media (max-width: 600px) {
    .ph-header { padding: 42px 0 24px; }
    .ph-breadcrumb { font-size: 11.5px; }
  }



.ci-hero {
    position: relative;
    padding: 60px 0px;
    overflow: hidden;
  }
 
  
 

  .ci-stat .num {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    line-height: 1;
  }
 
  .ci-stat .lab {
    font-size: 13px;
    color: #d6a541;
    margin-top: 6px;
    letter-spacing: 0.3px;
  }
 
  .ci-visual {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
  }
 
  .ci-visual img {
    height: 420px;
    object-fit: cover;
  }
 
 
  @media (max-width: 575.98px) {
    .ci-hero { padding: 70px 0 60px; }
    .ci-visual img { height: 280px; }
  }

/*=================blog page============*/

.blog-page-pills{
    justify-content: center;
    margin-bottom: 30px;
}

.blog-page-pills button{
  background: #f0f4ff;
  border: 1.5px solid #c7d4f5;
  color: #192185
}



/*=============blog-details-===============*/

  .bd-header {
    position: relative;
    background: linear-gradient(165deg, var(--primary) 0%, var(--dark) 60%, #131a72 100%);
    color: #fff;
    padding: 50px 0 26px;
    overflow: hidden;
  }

  .bd-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.045) 0px, rgba(255,255,255,0.045) 1px, transparent 1px, transparent 64px);
  }

  .bd-header-inner { position: relative; z-index: 1; }

  .bd-cat-pill {
    display: inline-block;
    background: rgba(255,255,255,0.95);
    color: var(--primary);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 5px;
    margin-bottom: 14px;
  }

  .bd-header h1 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.2;
    max-width: 760px;
    margin-bottom: 16px;
  }

  .bd-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.78);
    margin-bottom: 18px;
  }

  .bd-meta span { display: inline-flex; align-items: center; gap: 6px; }
  .bd-meta i { color: var(--secondary); font-size: 12px; }

  .bd-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12.5px;
  }

  .bd-breadcrumb a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .bd-breadcrumb a:hover { color: #fff; }
  .bd-breadcrumb .sep { color: rgba(255,255,255,0.35); font-size: 10px; }
  .bd-breadcrumb .current { color: var(--secondary); font-weight: 600; }

  /* ===== ARTICLE LAYOUT ===== */
  .bd-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 44px;
    padding: 50px 0 80px;
  }

  @media (max-width: 900px) {
    .bd-layout { grid-template-columns: 1fr; padding: 36px 0 60px; }
  }

  /* ===== FEATURED IMAGE ===== */
  .bd-feature-img {
    width: 100%;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 14px 36px rgba(40,48,156,0.12);
  }

  .bd-feature-img img { width: 100%; height: 100%; object-fit: cover; }

  @media (max-width: 600px) {
    .bd-feature-img { height: 220px; }
  }

  /* ===== ARTICLE BODY (typography) ===== */
  .bd-article p {
    font-size: 15px;
    line-height: 1.9;
    color: #3a3f55;
    margin-bottom: 20px;
  }

  .bd-article h2 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 25px;
    color: var(--ink);
    margin: 36px 0 16px;
  }

  .bd-article h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin: 28px 0 12px;
  }

  .bd-article ul {
    margin: 0 0 22px 0;
    padding-left: 0;
    list-style: none;
  }

  .bd-article ul li {
    position: relative;
    padding-left: 28px;
    font-size: 14.5px;
    line-height: 1.8;
    color: #3a3f55;
    margin-bottom: 10px;
  }

  .bd-article ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary);
    font-size: 12px;
  }

  .bd-pull-quote {
    border-left: 4px solid var(--secondary);
    background: var(--paper);
    padding: 22px 26px;
    border-radius: 0 10px 10px 0;
    margin: 28px 0;
  }

  .bd-pull-quote p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 19px;
    font-weight: 500;
    color: var(--primary);
    margin: 0;
    line-height: 1.6;
  }

  .bd-inline-img {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin: 26px 0;
  }

  .bd-inline-img img { width: 100%; height: auto; }

  /* ===== TAGS ===== */
  .bd-tags-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
  }

  .bd-tags-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
  }

  .bd-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(40,48,156,0.07);
    padding: 5px 13px;
    border-radius: 20px;
  }

  /* ===== SHARE ===== */
  .bd-share-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
  }

  .bd-share-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
  }

  .bd-share-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
  }

  .bd-share-icon:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

 

  /* ===== SIDEBAR ===== */
  .bd-sidebar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 24px;
  }

  .bd-sidebar-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
  }

  /* recent posts */
  .bd-related-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }

  .bd-related-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

  .bd-related-thumb {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .bd-related-thumb img { width: 100%; height: 100%; object-fit: cover; }

  .bd-related-info h5 {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 4px;
  }

  .bd-related-info span {
    font-size: 11px;
    color: var(--muted);
  }

  /* categories */
  .bd-cat-list { list-style: none; }

  .bd-cat-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: #3a3f55;
  }

  .bd-cat-list li:last-child { border-bottom: none; }

  .bd-cat-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }

  .bd-cat-list a:hover { color: var(--primary); }

  .bd-cat-count {
    font-size: 11.5px;
    color: var(--muted);
    background: var(--paper);
    padding: 2px 9px;
    border-radius: 12px;
  }

  /* newsletter sidebar box */
  .bd-newsletter-card {
    background: linear-gradient(150deg, var(--primary), var(--dark));
    color: #fff;
    border-radius: 14px;
    padding: 26px 22px;
  }

  .bd-newsletter-card h4 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .bd-newsletter-card p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .bd-newsletter-input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 7px;
    border: none;
    font-size: 13px;
    margin-bottom: 10px;
    font-family: var(--sans);
  }

  .bd-newsletter-btn {
    width: 100%;
    padding: 10px;
    border-radius: 7px;
    border: none;
    background: var(--secondary);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .bd-newsletter-btn:hover { background: #fff; color: var(--primary); }

  /* ===== RELATED ARTICLES (bottom grid) ===== */
  .bd-more-section {
    background: var(--paper);
    padding: 70px 0;
  }

  .bd-more-head {
    text-align: center;
    margin-bottom: 40px;
  }

  .bd-more-head h2 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 30px;
    color: var(--ink);
  }

  .bd-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  @media (max-width: 900px) { .bd-more-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .bd-more-grid { grid-template-columns: 1fr; } }

  .bd-more-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s, box-shadow 0.25s;
    display: block;
  }

  .bd-more-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(40,48,156,0.12);
  }

  .bd-more-img {
    height: 170px;
    position: relative;
    overflow: hidden;
  }

  .bd-more-img img { width: 100%; height: 100%; object-fit: cover; }

  .bd-more-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,0.95);
    color: var(--primary);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 5px;
  }

  .bd-more-body { padding: 16px 18px 20px; }

  .bd-more-meta {
    font-size: 11.5px;
    color: var(--muted);
    margin-bottom: 8px;
  }

  .bd-more-body h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
  }

  /* ===== BACK TO TOP ===== */
  .bd-top-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold, #C9962B);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    font-size: 16px;
    z-index: 50;
  }



  /*================Products page==============*/
  
  .sec-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 6px;
  }

  .sec-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 22px;
  }

  /* ===== 1. CATEGORY HERO ===== */
  .cat-hero {
    background: linear-gradient(135deg, #edf0f8 0%, #e0eaf5 100%);
    border-radius: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 340px;
  }

  .cat-hero-content {
    padding: 56px 0px;
    z-index: 2;
    position: relative;
  }

  .cat-hero h1 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(36px, 6vw, 60px);
    color: var(--primary);
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 8px;
  }

  .cat-hero .tagline {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
  }

  .cat-hero .desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 360px;
    margin-bottom: 20px;
  }

  .cat-hero-img {
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    object-position: center;
    width: 100%;
  }

  .cat-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.75);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
  }

  .cat-hero-badge i { color: var(--primary); font-size: 14px; }

  .btn-primary-ebg {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 11px 26px;
    border-radius: 7px;
    font-size: 13.5px;
    font-weight: 700;
    font-family: var(--sans);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
  }

  .btn-primary-ebg:hover { background: var(--dark); color: #fff; }

  /* ===== 2. ABOUT SECTION ===== */
  .about-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    width: 100%;
    min-height: 60px;
    background: #e2ebdd;
  }

  .about-chip i { color: var(--primary); font-size: 15px; }

  /* ===== 3. PRODUCT GRID ===== */
.view-all-btn{
    display: inline-block;
    border: 1px solid #cbcbcb;
    font-size: 13px;
    padding: 5px 15px;
    border-radius: 5px;
    color: #000;
}


  .prod-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.22s, box-shadow 0.22s;
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(40,48,156,0.11);
    color: inherit;
  }

  .prod-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--paper);
  }

  .prod-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
  .prod-card:hover .prod-card-img img { transform: scale(1.05); }

  .prod-card-body { padding: 12px 14px 14px; }

  .prod-card-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
  }

  .prod-card-code {
    font-size: 11.5px;
    color: var(--muted);
  }

  /* ===== 4. MATERIAL OPTIONS ===== */
  .material-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
  }

  .material-swatch {
    width: 100%;
  }

  .material-info {
    padding: 8px 10px;
  }

  .material-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    display: block;
  }

  .material-gsm {
    font-size: 11px;
    color: var(--muted);
  }

  .material-more {
    border: 1.5px dashed var(--border);
    border-radius: 10px;
    height: 100%;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s;
  }

  .material-more:hover { border-color: var(--primary); color: var(--primary); }

  /* ===== 5. MOQ INFO ===== */
  .moq-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .moq-card:hover { border-color: var(--primary); box-shadow: 0 8px 22px rgba(40,48,156,0.09); }

  .moq-card i { font-size: 22px; color: var(--primary); margin-bottom: 10px; display: block; }

  .moq-num {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    display: block;
    line-height: 1;
  }

  .moq-label {
    font-size: 13px;
    color: #d6a541;
    margin-top: 7px;
  }

  /* ===== 6. CUSTOM BRANDING ===== */
  .branding-chip {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 10px;
    text-align: center;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink);
    transition: all 0.2s;
  }

  .branding-chip i { font-size: 24px; color: var(--primary); display: block; margin-bottom: 8px; }

  .branding-chip:hover {
    border-color: var(--primary);
    background: rgba(40,48,156,0.05);
    color: var(--primary);
  }

  /* ===== 7. FACTORY CAPABILITY ===== */
  .factory-stat {
    text-align: center;
    padding: 6px 0;
  }

  .factory-stat .fnum {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
  }

  .factory-stat .flabel {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 4px;
  }

  .factory-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
  }

  .factory-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

  /* ===== 8. QUALITY CONTROL (pipeline) ===== */
  .qc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }

  .qc-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--paper);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
  }

  .qc-step-label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
  }

  .qc-arrow {
    color: var(--secondary);
    font-size: 18px;
    align-self: center;
    margin-bottom: 28px;
  }

  @media (max-width: 576px) {
    .qc-arrow { transform: rotate(90deg); }
  }

  /* ===== 9. PACKAGING ===== */
  .pkg-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: border-color 0.2s;
  }

  .pkg-card:hover { border-color: var(--primary); }

  .pkg-img {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
  }

  .pkg-img img { width: 100%; height: 100%; object-fit: cover; }

  .pkg-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    padding: 10px 8px;
  }

  /* ===== 10. EXPORT SUPPORT ===== */
  .export-chip {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink);
    transition: all 0.2s;
  }

  .export-chip i { font-size: 26px; color: var(--primary); display: block; margin-bottom: 8px; }
  .export-chip:hover { border-color: var(--primary); background: rgba(40,48,156,0.05); }

  /* ===== 11. FAQ ACCORDION ===== */
  .faq-item {
    border: 1px solid var(--border);
    border-radius: 9px;
    overflow: hidden;
    margin-bottom: 10px;
  }

  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    background: #fff;
    gap: 10px;
  }

  .faq-q:hover { background: var(--paper); }

.faq-q i {
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(40,48,156,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.2s, color 0.2s;
}

.faq-item.open .faq-q { background: rgba(40,48,156,0.03); }
.faq-item.open .faq-q i {
  transform: rotate(180deg);
  background: var(--primary);
  color: #fff;
}

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--paper);
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
  }

  .faq-item.open .faq-a { max-height: 120px; }

  .faq-a-inner { padding: 12px 16px 14px; }

  /* misc */
  .badge-category {
    display: inline-block;
    background: rgba(40,48,156,0.08);
    color: var(--primary);
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 5px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }




  .cat-nav-wrap {
    background: #fff;
    border-bottom: 1px solid #e7e6f0;
    border-top: 1px solid #e7e6f0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: sticky;
    top: 0;
    z-index: 100;
  }
 
  .cat-nav-wrap::-webkit-scrollbar { display: none; }
 
  .cat-nav {
    display: flex;
    align-items: center;
    width: max-content;
    min-width: 100%;
    padding: 0 12px;
  }
 
  .cat-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    text-decoration: none;
    color: #6b7280;
    font-size: 11.5px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
    font-family: 'Inter', sans-serif;
  }
 
  .cat-nav-item i {
    font-size: 20px;
    color: #9ca3af;
    transition: color 0.2s;
  }
 
  .cat-nav-item:hover {
    color: #28309C;
    border-bottom-color: #28309C;
  }
 
  .cat-nav-item:hover i { color: #28309C; }
 
  .cat-nav-item.active {
    color: #28309C;
    border-bottom-color: #28309C;
  }
 
  .cat-nav-item.active i { color: #28309C; }




  /*===============contact page============*/
  
  /* ===== QUICK INFO STRIP ===== */
  .info-strip {
    background: #fff;
    padding: 0;
    margin-top: 20px;
  }



  .info-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 10px;
    flex: 1 1 220px;
    text-decoration: none;
    color: var(--ink);
    transition: background 0.2s;
    border: 1px solid var(--border);
    border-radius: 10px;
    min-height: 100px;
  }

  .info-chip:hover { background: var(--paper); color: var(--ink); }

  .info-chip-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(40,48,156,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .info-chip-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 3px;
  }

  .info-chip-val {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
  }

  /* ===== MAIN LAYOUT ===== */
  .ct-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    padding: 56px 0 80px;
  }

  @media (max-width: 960px) {
    .ct-layout { grid-template-columns: 1fr; padding: 40px 0 60px; }
  }

  /* ===== FORM CARD ===== */
  .ct-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(40,48,156,0.06);
  }

  @media (max-width: 576px) {
    .ct-form-card { padding: 24px 18px; }
  }

  .ct-form-title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 24px;
    color: var(--ink);
    margin-bottom: 4px;
  }

  .ct-form-sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
  }

  .ct-form-card .form-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 5px;
  }

  .ct-form-card .form-control,
  .ct-form-card .form-select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    padding: 10px 13px;
    background: #fafafa;
    color: var(--ink);
    font-family: var(--sans);
  }

  .ct-form-card .form-control:focus,
  .ct-form-card .form-select:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(40,48,156,0.1);
  }

  .ct-form-card textarea.form-control { resize: vertical; min-height: 120px; }

  .ct-submit {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--sans);
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .ct-submit:hover { background: var(--dark); }

  .ct-secure {
    text-align: center;
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .ct-secure i { color: #059669; }

  /* ===== SIDEBAR ===== */
  .ct-sidebar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 22px;
  }

  .ct-sidebar-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
  }

  .ct-contact-row {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
  }

  .ct-contact-row:last-child { margin-bottom: 0; }

  .ct-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(40,48,156,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .ct-contact-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 2px;
  }

  .ct-contact-val {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    line-height: 1.4;
  }

  .ct-contact-val:hover { color: var(--primary); }

  /* ===== BUSINESS HOURS ===== */
  .bh-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
  }

  .bh-row:last-child { border-bottom: none; }

  .bh-day { font-weight: 600; color: var(--ink); }
  .bh-time { color: var(--muted); }
  .bh-closed { color: #ef4444; font-weight: 600; }

  /* ===== SOCIALS ===== */
  .ct-social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .ct-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    border: 1.5px solid var(--border);
    color: var(--ink);
    background: #fff;
  }

  .ct-social-btn:hover { border-color: var(--primary); color: var(--primary); }
  .ct-social-btn i { font-size: 15px; }

  /* ===== WHATSAPP CTA ===== */
  .ct-whatsapp-card {
    background: linear-gradient(135deg, #25D366, #128C4A);
    color: #fff;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
  }

  .ct-whatsapp-card h4 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .ct-whatsapp-card p {
    font-size: 12.5px;
    opacity: 0.9;
    margin-bottom: 16px;
    line-height: 1.6;
  }

  .ct-whatsapp-btn {
    background: #fff;
    color: #128C4A;
    border: none;
    padding: 11px 24px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
  }

  .ct-whatsapp-btn:hover { background: #e8fdf0; color: #128C4A; }

  /* ===== MAP ===== */
  .ct-map-section {
    padding: 60px 0;
  }


  .ct-map-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 28px rgba(40,48,156,0.08);
  }

  /* ===== OFFICE CARDS ===== */

.office-location-sec{
  background: #f5f6fa;
  padding: 60px 0px;
}


  .office-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    transition: box-shadow 0.25s, border-color 0.25s;
    height: 100%;
  }

  .office-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 22px rgba(40,48,156,0.1);
  }

  .office-card h5 {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .office-card h5 i { color: var(--primary); }

  .office-detail {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
  }

  .office-detail i { color: var(--primary); margin-top: 3px; width: 14px; flex-shrink: 0; }


  .lang-select{
    color:#fff;
    font-size:14px;
    font-weight:500;
}

.lang-select::after{
    margin-left:6px;
    vertical-align:middle;
}

.dropdown-menu{
    min-width: 180px;
    border-radius: 0px;
    padding: 0px 0;
    z-index: 9999;
}


.language .dropdown-item{
    font-size:14px;
    padding:10px 18px;
    transition:.3s;
    color: #000;
}

.dropdown-item:hover{
    background: #16236b;
    color:#fff;
}

.dropdown-item.active{
    background: #16236b;
    color:#fff;
}


/*=================Factory Page===================*/

  /* ===== SECTION WRAPPER ===== */
  section.fp-sec { padding: 60px 0; }
  section.fp-sec.bg-paper {background: var(--paper);}
  section.fp-sec.bg-dark { background: linear-gradient(150deg, var(--primary), var(--dark)); }

  /* ===== OVERVIEW ===== */
  .ov-feat-img {
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 14px 36px rgba(40,48,156,0.12);
    height: 100%; min-height: 280px;
  }
  .ov-feat-img img { width: 100%; height: 100%; object-fit: cover; }

  .ov-chip {
    display: inline-block;
    font-size: 11.5px; font-weight: 600;
    color: var(--primary); background: rgba(40,48,156,0.07);
    padding: 4px 12px; border-radius: 20px;
  }

  /* ===== VIDEO ===== */

#factory-video{
    background: var(--primary);
  }
  .fv-section {
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
  }

  @media (max-width: 768px) {
    .fv-section { grid-template-columns: 1fr; }
  }

  .fv-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    margin: 16px;
  }

  .fv-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    min-height: 220px;
  }

  .fv-tour-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--dark);
    color: #fff;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 6px;
  }

  .fv-overlay {
    position: absolute; inset: 0;
    background: rgba(20,24,47,0.35);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.25s;
  }

  .fv-overlay:hover { background: rgba(20,24,47,0.2); }

  .fv-play-btn {
    width: 68px; height: 68px; border-radius: 50%;
    background: #F47B20;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #fff;
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    padding-left: 4px;
  }

  .fv-overlay:hover .fv-play-btn {
    transform: scale(1.08);
    box-shadow: 0 10px 32px rgba(0,0,0,0.35);
  }

  .fv-content {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .fv-eyebrow {
    font-size: 11.5px; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    color: #F47B20; margin-bottom: 12px;
  }

  .fv-title {
    font-family: var(--serif);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600; line-height: 1.15;
    color: #fff; margin-bottom: 14px;
  }

  .fv-desc {
    font-size: 13.5px; color: rgba(255,255,255,0.75);
    line-height: 1.75; margin-bottom: 26px;
    max-width: 340px;
  }

  .fv-watch-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #F47B20;
    color: #fff;
    font-size: 13px; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 13px 26px; border-radius: 8px;
    border: none; cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    align-self: flex-start;
    font-family: var(--sans);
  }

  .fv-watch-btn:hover { background: #d9690f; color: #fff; transform: translateY(-2px); }

  #factoryVideoFrame { display: none; width: 100%; height: 100%; border: 0; min-height: 220px; }

  /* ===== PRODUCTION LINES / PROCESS ===== */
  .phase-wrap {
    border-radius: 14px; padding: 20px;
    margin-bottom: 14px;
  }
  .phase-label {
    font-size: 10.5px; font-weight: 800; letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 14px;
  }
  .phase-pre  { background: rgba(40,48,156,0.05); }
  .phase-pre  .phase-label { color: var(--primary); }
  .phase-main { background: rgba(36,189,227,0.06); }
  .phase-main .phase-label { color: #0f6e56; }
  .phase-post { background: rgba(15,110,86,0.05); }
  .phase-post .phase-label { color: #0f6e56; }
  .phase-ship { background: rgba(186,117,23,0.06); }
  .phase-ship .phase-label { color: #854F0B; }

  .proc-row { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }

  .proc-step {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 6px;
    background: #fff; 
    border: 1px solid var(--border);
    border-radius: 10px; 
    padding: 14px 12px;
    flex: 1 1 100px; 
    min-width: 100px; 
    max-width: 300px;
    min-height: 135px;
    text-align: center; 
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
  }
  .proc-step:hover { border-color: var(--primary); box-shadow: 0 6px 18px rgba(40,48,156,0.1); }
  .proc-step.active {
    border-color: var(--primary);
    background: rgba(40,48,156,0.05);
    box-shadow: 0 6px 18px rgba(40,48,156,0.13);
  }
  .proc-step.active .proc-step-name { color: var(--primary); }
  .proc-step-icon {
    width: 38px; height: 38px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
  }
  .proc-step-name { font-size: 11.5px; font-weight: 700; color: var(--ink); line-height: 1.3; }
  .proc-step-sub { font-size: 10.5px; color: var(--muted); line-height: 1.3; }
  .proc-qc {
    font-size: 9.5px; font-weight: 700;
    padding: 2px 8px; border-radius: 10px;
    display: inline-flex; align-items: center; gap: 4px;
  }
  .proc-arr { color: var(--secondary); font-size: 16px; flex-shrink: 0; }

  /* ===== PROCESS DETAIL MODAL-LIKE EXPAND ===== */
  .proc-detail {
    display: none; background: #fff;
    border: 1px solid var(--border); border-radius: 10px;
    padding: 14px 16px; margin-top: 10px;
    font-size: 13px; color: var(--muted); line-height: 1.75;
  }
  .proc-detail.show { display: block; }

  /* ===== MACHINES ===== */
  .machine-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: 10px; padding: 16px 12px; text-align: center;
    transition: border-color 0.2s, transform 0.2s;
  }
  .machine-card:hover { border-color: var(--secondary); transform: translateY(-3px); }
  .machine-card i { font-size: 24px; color: var(--secondary); margin-bottom: 8px; display: block; }
  .machine-name { font-size: 12.5px; font-weight: 700; color: var(--ink); }
  .machine-qty { font-size: 11.5px; color: var(--muted); margin-top: 3px; }

  /* ===== WORKERS ===== */
  .worker-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: 12px; padding: 20px 14px; text-align: center;
    transition: box-shadow 0.2s;
  }
  .worker-card:hover { box-shadow: 0 8px 22px rgba(40,48,156,0.1); }
  .worker-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(36,189,227,0.1); color: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin: 0 auto 10px;
  }
  .worker-count { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--primary); display: block; }
  .worker-role { font-size: 12px; font-weight: 600; color: var(--ink); margin-top: 3px; }

  /* ===== CAPACITY ===== */
  .cap-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px; padding: 26px 16px; text-align: center;
  }
  .cap-num { font-family: var(--serif); font-size: 32px; font-weight: 700;color: var(--gold); line-height: 1; }
  .cap-lab { font-size: 12px; color: rgba(255,255,255,0.72); margin-top: 6px; }
  .cap-icon { font-size: 22px; color: rgba(255,255,255,0.4); margin-bottom: 10px; display: block; }

  /* ===== PRODUCTION DETAIL CARDS (Cutting/Sewing/Printing/Embroidery/Finishing/Packing) ===== */
  .prod-detail-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: 14px; overflow: hidden;
    transition: box-shadow 0.25s;
    height: 100%;
  }
  .prod-detail-card:hover { box-shadow: 0 12px 30px rgba(40,48,156,0.1); }
  .prod-detail-img { height: 250px; overflow: hidden; background: var(--paper); position: relative; }
  .prod-detail-img img { width: 100%; height: 100%; object-fit: cover; }
  .prod-detail-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--primary); color: #fff;
    font-size: 10.5px; font-weight: 700;
    padding: 4px 10px; border-radius: 5px;
    letter-spacing: 0.5px;
  }
  .prod-detail-body { padding: 18px 18px 20px; }
  .prod-detail-body h4 { font-size: 14.5px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
  .prod-detail-body p { font-size: 12.5px; color: var(--muted); line-height: 1.75; margin-bottom: 10px; }
  .prod-detail-spec {
    display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px;
  }
  .prod-detail-spec span {
    font-size: 11px; font-weight: 600;
    background: var(--paper); border: 1px solid var(--border);
    color: var(--ink); padding: 3px 10px; border-radius: 6px;
  }

  /* ===== WAREHOUSE ===== */
  .wh-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: 14px; padding: 22px;
    display: flex; gap: 16px; align-items: flex-start;
    transition: box-shadow 0.2s;
    height: 100%;
  }
  .warehouse-img img{
    width: 100%;
    border-radius: 10px;
  }
  .wh-card:hover { box-shadow: 0 8px 22px rgba(40,48,156,0.09); }
  .wh-icon {
    width: 46px; height: 46px; border-radius: 10px;
    background: rgba(40,48,156,0.08); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .wh-card h5 { font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
  .wh-card p { font-size: 12.5px; color: var(--muted); line-height: 1.7; }

  /* ===== QC PIPELINE ===== */
  .qc-step-row {
    display: flex; align-items: center;
    background: #fff; border: 1px solid var(--border);
    border-radius: 12px; padding: 16px 18px;
    gap: 14px; margin-bottom: 10px;
    transition: border-color 0.2s;
  }
  .qc-step-row:hover { border-color: var(--primary); }
  .qc-step-num {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800; flex-shrink: 0;
  }
  .qc-step-text { font-size: 13.5px; font-weight: 600; color: var(--ink); flex: 1; }
  .qc-step-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
  .qc-aql {
    font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px;
    background: rgba(15,110,86,0.1); color: #0f6e56;
    white-space: nowrap; flex-shrink: 0;
  }

  /* ===== CONTAINER LOADING ===== */
  .cl-card {
    border-radius: 14px; overflow: hidden;
    background: #fff; border: 1px solid var(--border);
    height: 100%;
  }
  .cl-img { height: 200px; overflow: hidden; }
  .cl-img img { width: 100%; height: 100%; object-fit: cover; }
  .cl-body { padding: 18px; }
  .cl-body h5 { font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
  .cl-row { display: flex; gap: 8px; align-items: flex-start; font-size: 12.5px; color: var(--muted); margin-bottom: 6px; line-height: 1.6; }
  .cl-row i { color: var(--primary); font-size: 12px; margin-top: 2px; flex-shrink: 0; }




  /*================Export=============*/

  /* ===== SECTION TITLE ===== */
  .sec-title {
    font-size: 15px; 
    font-weight: 800; 
    letter-spacing: 2.5px; 
    text-transform: uppercase;
    color: var(--gold);
    padding-bottom: 12px; 
    border-bottom: 2px solid var(--border); 
    margin-bottom: 26px;
  }
  .sec-head-serif {
    font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 3vw, 32px); color: var(--ink); margin-bottom: 10px;
  }
  .sec-sub { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

  section.ex-sec { padding: 62px 0; }
  section.ex-sec.bg-paper { background: var(--paper); }
  section.ex-sec.bg-dark  { background: linear-gradient(150deg, var(--primary), var(--dark)); }

  /* ===== 1. EXPORT PROCESS STEPS ===== */
  .ep-step {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    position: relative;
  }
  .ep-step-num {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 800; margin-bottom: 12px; flex-shrink: 0;
    position: relative; z-index: 1;
  }
  .ep-connector {
    position: absolute; top: 23px; left: 50%; right: -50%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--secondary) 0, var(--secondary) 6px, transparent 6px, transparent 12px);
    z-index: 0;
  }
  .ep-step-title { font-size: 12.5px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
  .ep-step-sub   { font-size: 11.5px; color: var(--muted); line-height: 1.5; }

  /* ===== INFO CARD ===== */
  .info-card {
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    padding: 22px 20px; height: 100%;
    transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
  }
  .info-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 28px rgba(40,48,156,0.1);
    transform: translateY(-4px);
  }
  .info-card-icon {
    width: 46px; height: 46px; border-radius: 10px;
    background: rgba(40,48,156,0.08); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 14px;
  }
  .info-card h5 { font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
  .info-card p  { font-size: 12.5px; color: var(--muted); line-height: 1.75; }

  .info-card-cyan .info-card-icon { background: rgba(36,189,227,0.1); color: var(--secondary); }

  /* ===== FREIGHT CARD (Air / Sea) ===== */
  .freight-card {
    border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border);
    height: 100%;
  }
  .freight-img { height: 350px; overflow: hidden; position: relative; }
  .freight-img img { width: 100%; height: 100%; object-fit: cover; }
  .freight-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--primary); color: #fff;
    font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 5px;
    letter-spacing: 0.5px; text-transform: uppercase;
  }
  .freight-body { padding: 20px; background: #fff; }
  .freight-body h4 { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
  .freight-row { display: flex; gap: 8px; font-size: 12.5px; color: var(--muted); margin-bottom: 7px; align-items: flex-start; }
  .freight-row i { color: var(--primary); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
  .freight-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
  .freight-tag {
    font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px;
    background: var(--paper); border: 1px solid var(--border); color: var(--ink);
  }

  /* ===== FCL/LCL CARDS ===== */
  .shipment-card {
    border-radius: 14px; padding: 26px 22px; height: 100%;
    border: 1px solid var(--border); background: #fff;
    transition: all 0.22s;
  }
  .shipment-card:hover { border-color: var(--secondary); box-shadow: 0 10px 26px rgba(36,189,227,0.12); transform: translateY(-3px); }
  .shipment-card .sc-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: rgba(36,189,227,0.1); color: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 16px;
  }
  .shipment-card h4 { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
  .shipment-card .sc-sub { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
  .shipment-card ul { list-style: none; padding: 0; }
  .shipment-card ul li { font-size: 12.5px; color: var(--muted); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; }
  .shipment-card ul li:last-child { border-bottom: none; }
  .shipment-card ul li i { color: var(--secondary); font-size: 12px; margin-top: 2px; flex-shrink: 0; }

  /* ===== PACKING / CARTON / BARCODE ===== */
  .pck-card {
    background: #fff; border: 1px solid var(--border); border-radius: 12px;
    padding: 18px 16px; display: flex; gap: 14px; align-items: flex-start;
    height: 100%; transition: border-color 0.2s;
  }
  .pck-card:hover { border-color: var(--primary); }
  .pck-icon {
    width: 42px; height: 42px; border-radius: 9px; flex-shrink: 0;
    background: rgba(40,48,156,0.08); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 18px;
  }
  .pck-card h5 { font-size: 13.5px; font-weight: 800; color: var(--ink); margin-bottom: 5px; }
  .pck-card p  { font-size: 12px; color: var(--muted); line-height: 1.7; }

  /* ===== DOCUMENTS ===== */
  .doc-card {
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    padding: 22px 18px; text-align: center; height: 100%;
    transition: all 0.22s; cursor: default;
  }
  .doc-card:hover { border-color: var(--primary); box-shadow: 0 10px 26px rgba(40,48,156,0.09); transform: translateY(-4px); }
  .doc-icon {
    width: 50px; height: 50px; border-radius: 12px;
    background: rgba(40,48,156,0.07); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin: 0 auto 14px;
  }
  .doc-card h5 { font-size: 13px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
  .doc-card p  { font-size: 11.5px; color: var(--muted); line-height: 1.65; }
  .doc-badge {
    display: inline-block; margin-top: 10px;
    font-size: 10px; font-weight: 700; padding: 3px 10px;
    border-radius: 20px; background: rgba(40,48,156,0.07); color: var(--primary);
    letter-spacing: 0.3px;
  }

  /* ===== INCOTERMS (FOB/CIF/DDP/EXW) ===== */
  .inco-card {
    border-radius: 14px; padding: 24px 20px; height: 100%;
    border-top: 4px solid var(--primary);
    background: #fff; border-left: 1px solid var(--border);
    border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
    transition: box-shadow 0.22s, transform 0.22s;
  }
  .inco-card:hover { box-shadow: 0 12px 28px rgba(40,48,156,0.11); transform: translateY(-4px); }
  .inco-code {
    font-family: var(--serif); font-size: 30px; font-weight: 700;
    color: var(--primary); line-height: 1; margin-bottom: 8px;
  }
  .inco-name { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
  .inco-desc { font-size: 12.5px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
  .inco-resp { display: flex; flex-direction: column; gap: 5px; }
  .inco-resp-row { display: flex; gap: 6px; font-size: 11.5px; }
  .inco-resp-row i { font-size: 11px; margin-top: 2px; flex-shrink: 0; }
  .resp-seller { color: #0f6e56; }
  .resp-seller i { color: #0f6e56; }
  .resp-buyer  { color: var(--muted); }
  .resp-buyer  i { color: var(--muted); }

  /* ===== CUSTOMS ===== */
  .cust-step {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 18px 0; border-bottom: 1px solid var(--border);
  }
  .cust-step:last-child { border-bottom: none; }
  .cust-num {
    width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800;
  }
  .cust-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
  .cust-desc  { font-size: 12.5px; color: var(--muted); line-height: 1.7; }

  /* ===== INSURANCE ===== */
  .ins-card {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px; padding: 24px 20px; height: 100%;
  }
  .ins-card i { font-size: 28px; color: var(--secondary); display: block; margin-bottom: 12px; }
  .ins-card h5 { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 8px; }
  .ins-card p  { font-size: 12.5px; color: rgba(255,255,255,0.72); line-height: 1.75; }

  /* ===== TRACKING ===== */
  .track-step {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    flex: 1 1 130px;
  }
  .track-icon {
    width: 54px; height: 54px; border-radius: 50%;
    background: rgba(40,48,156,0.08); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
  }
  .track-label { font-size: 12px; font-weight: 700; color: var(--ink); text-align: center; }
  .track-arr { color: var(--secondary); font-size: 18px; align-self: center; padding-bottom: 22px; }

  /* ===== DESTINATION MARKETS ===== */
  .dest-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid var(--border);
    border-radius: 30px; padding: 9px 16px;
    font-size: 13px; font-weight: 600; color: var(--ink);
    transition: all 0.2s;
  }
  .dest-pill:hover { border-color: var(--primary); color: var(--primary); box-shadow: 0 4px 12px rgba(40,48,156,0.1); }
  .dest-pill i { color: var(--secondary); font-size: 14px; }

  /* ===== CTA ===== */
  .cta-box {
    background: linear-gradient(120deg, var(--primary), var(--dark));
    border-radius: 20px; padding: 54px 44px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 26px; position: relative; overflow: hidden;
  }
  .cta-box::after {
    content: ''; position: absolute; right: -60px; bottom: -60px;
    width: 260px; height: 260px; border-radius: 50%;
    background: radial-gradient(circle, rgba(36,189,227,0.28), transparent 70%);
  }
  .cta-box-text { position: relative; z-index: 1; }
  .cta-box h3 { font-family: var(--serif); font-size: 28px; font-weight: 600; color: #fff; margin-bottom: 8px; }
  .cta-box p  { font-size: 13.5px; color: rgba(255,255,255,0.78); max-width: 420px; line-height: 1.7; }
  .cta-btns { position: relative; z-index: 1; display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-white { background: #fff; color: var(--primary); border: none; padding: 12px 26px; border-radius: 8px; font-size: 13.5px; font-weight: 700; font-family: var(--sans); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s; cursor: pointer; }
  .btn-white:hover { background: var(--secondary); color: #fff; }
  .btn-outline-white { border: 1.5px solid rgba(255,255,255,0.45); color: #fff; padding: 12px 26px; border-radius: 8px; font-size: 13.5px; font-weight: 700; font-family: var(--sans); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s; cursor: pointer; background: transparent; }
  .btn-outline-white:hover { background: rgba(255,255,255,0.1); color: #fff; }





  /* ===== DIVISION TABS ===== */
  .div-tabs-wrap {
    background:#fff;
    border-bottom: 1px solid #e7e6f0;
    border-top: 1px solid #e7e6f0;
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 10px rgba(40,48,156,.07);
  }
  .div-tabs {
    display: flex; overflow-x: auto;
    scrollbar-width: none;
  }
  .div-tabs::-webkit-scrollbar { display: none; }

  .div-tab {
    flex: 0 0 auto;
    display: flex; align-items: center; gap: 10px;
    padding: 16px 28px;
    font-size: 13.5px; font-weight: 700;
    color: var(--muted);
    border-bottom: 3px solid transparent;
    cursor: pointer; transition: all .2s;
    white-space: nowrap; border-top: none; border-left: none; border-right: none;
    background: none; font-family: var(--sans);
  }
  .div-tab i { font-size: 18px; }
  .div-tab:hover { color: var(--primary); }
  .div-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(40,48,156,.03);
  }
  .div-tab-num {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--paper); color: var(--muted);
    font-size: 10px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
  }
  .div-tab.active .div-tab-num {
    background: var(--primary); color: #fff;
  }

  /* ===== DIVISION PANEL ===== */
  .div-panel { display: none; }
  .div-panel.active { display: block; animation: dvFade .3s ease; }
  @keyframes dvFade { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

  /* ===== DIVISION HERO BANNER ===== */
  .div-banner {
    padding: 48px 0 40px;
    position: relative; overflow: hidden;
  }
  .div-banner-1 { background: linear-gradient(135deg,#eef0fb 0%,#dde1f6 100%); }
  .div-banner-2 { background: linear-gradient(135deg,#fdf3ea 0%,#fde8d4 100%); }
  .div-banner-3 { background: linear-gradient(135deg,#eaf7f0 0%,#d4f0e0 100%); }

  .div-banner-icon {
    width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 16px;
  }
  .div-banner-1 .div-banner-icon { background: rgba(40,48,156,.12); color: var(--primary); }
  .div-banner-2 .div-banner-icon { background: rgba(245,130,60,.12); color: #c2621a; }
  .div-banner-3 .div-banner-icon { background: rgba(15,110,86,.12); color: #0f6e56; }

  .div-banner h1 {
   font-weight:600; 
   font-size: clamp(36px, 6vw, 50px); 
   margin-bottom:8px; 
   color:var(--ink); 
 }
  .div-banner p  { 
    font-size:13.5px; 
    color:var(--muted); 
    line-height:1.8; 
    max-width:540px; 
  }

  .div-chip {
    display: inline-flex; 
    align-items: center; 
    gap: 6px;
    font-size: 11.5px; 
    font-weight: 600; 
    padding: 4px 12px;
    border-radius: 20px; 
    margin-top: 14px;
  }
  .div-banner-1 .div-chip { background: rgba(40,48,156,.09); color: var(--primary); }
  .div-banner-2 .div-chip { background: rgba(194,98,26,.1); color: #c2621a; }
  .div-banner-3 .div-chip { background: rgba(15,110,86,.1); color: #0f6e56; }

  .div-banner-img {
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
    height: 280px;
  }
  .div-banner-img img { width:100%; height:100%; object-fit:cover; }

  /* ===== CATEGORY FILTER BAR ===== */
  .cat-filter-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0 0 0 0;
    overflow-x: auto; scrollbar-width: none;
  }
  .cat-filter-bar::-webkit-scrollbar { display: none; }

  .cat-filter-inner {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 0; white-space: nowrap;
  }

  .cat-filter-btn {
    padding: 7px 15px; 
    border-radius: 30px;
    border: 1.5px solid var(--border);
    background: #fff; 
    color: #374151;
    font-size: 12.5px; 
    font-weight: 500;
    cursor: pointer; 
    transition: all .2s;
    flex-shrink: 0;
  }
  .cat-filter-btn:hover { 
    border-color: var(--primary); 
    color: var(--primary); 
  }
  .cat-filter-btn.active {
    background: var(--primary); 
    border-color: var(--primary); 
    color: #fff;
  }

  /* ===== PRODUCT GRID ===== */
  .prod-grid { padding: 36px 0 60px; }

  .prod-card {
    background: #fff; 
    border: 1px solid var(--border);
    border-radius: 12px; 
    overflow: hidden;
    transition: transform .22s, box-shadow .22s;
    cursor: pointer; 
    height: 100%;
    text-decoration: none; 
    color: inherit; 
    display: block;
  }
  .prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(40,48,156,.11);
    color: inherit;
  }
  .prod-card-img {
    height: 200px; overflow: hidden; background: var(--paper);
    position: relative;
  }
  .prod-card-img img { width:100%; height:100%; object-fit:cover; transition: transform .35s; }
  .prod-card:hover .prod-card-img img { transform: scale(1.06); }

  .prod-cat-badge {
    position: absolute; top: 10px; left: 10px;
    font-size: 10.5px; font-weight: 700; padding: 3px 10px;
    border-radius: 5px; color: #fff; text-transform: uppercase; letter-spacing: .4px;
  }
  .badge-apparel { background: var(--primary); }
  .badge-fashion { background: #c2621a; }
  .badge-craft   { background: #0f6e56; }

  .prod-wish {
    position: absolute; top: 10px; right: 10px;
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255,255,255,.9); border: none;
    display: flex; align-items: center; justify-content: center;
    color: #9ca3af; font-size: 13px; cursor: pointer;
    transition: color .2s;
  }
  .prod-wish:hover { color: #ef4444; }

  .prod-card-body { padding: 14px 14px 16px; }
  .prod-card-name { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
  .prod-card-cat  { font-size: 11.5px; color: var(--muted); margin-bottom: 10px; }
  .prod-card-meta { display:flex; flex-direction:column; gap:4px; margin-bottom:12px; }
  .prod-meta-row  { display:flex; align-items:center; gap:6px; font-size:12px; color:#4b5563; }
  .prod-meta-row i { color: var(--primary); font-size:11px; width:14px; }

  .prod-card-actions { display:flex; gap:8px; }
  .btn-details {
    flex:1; padding:8px 4px; border-radius:7px;
    border: 1.5px solid var(--border); background:#fff;
    color: var(--ink); font-size:12px; font-weight:600;
    cursor:pointer; transition: all .2s; font-family:var(--sans);
    text-align:center;
  }
  .btn-details:hover { border-color:var(--primary); color:var(--primary); }
  .btn-quote {
    flex:1; padding:8px 4px; border-radius:7px; border:none;
    background: var(--primary); color:#fff; font-size:12px; font-weight:600;
    cursor:pointer; transition:background .2s; font-family:var(--sans);
    display:flex; align-items:center; justify-content:center; gap:5px;
  }
  .btn-quote:hover { background: var(--dark); }

  /* no result */
  .no-result {
    text-align:center; padding: 60px 20px; color:var(--muted);
    font-size:14px;
  }
  .no-result i { font-size:48px; display:block; margin-bottom:14px; color:var(--border); }

  /* ===== CTA ===== */
  .div-cta {
    background: linear-gradient(120deg,var(--primary),var(--dark));
    border-radius: 18px; padding:50px 40px;
    display:flex; align-items:center; justify-content:space-between;
    flex-wrap:wrap; gap:24px; position:relative; overflow:hidden;
    color:#fff;
  }
  .div-cta::after {
    content:''; position:absolute; right:-60px; bottom:-60px;
    width:240px; height:240px; border-radius:50%;
    background:radial-gradient(circle,rgba(36,189,227,.3),transparent 70%);
  }
  .div-cta-text { position:relative; z-index:1; }
  .div-cta-text h3 { font-family:var(--serif); font-size:26px; font-weight:600; margin-bottom:6px; }
  .div-cta-text p  { font-size:13px; color:rgba(255,255,255,.78); max-width:400px; line-height:1.7; }
  .div-cta-btns { position:relative; z-index:1; display:flex; gap:12px; flex-wrap:wrap; }
  .btn-white {
    background:#fff; color:var(--primary); border:none;
    padding:12px 24px; border-radius:8px; font-size:13px; font-weight:700;
    font-family:var(--sans); text-decoration:none;
    display:inline-flex; align-items:center; gap:8px; cursor:pointer;
    transition: background .2s;
  }
  .btn-white:hover { background:var(--secondary); color:#fff; }
  .btn-outline-w {
    border:1.5px solid rgba(255,255,255,.45); color:#fff;
    padding:12px 24px; border-radius:8px; font-size:13px; font-weight:700;
    font-family:var(--sans); text-decoration:none;
    display:inline-flex; align-items:center; gap:8px; cursor:pointer;
    background:transparent; transition:background .2s;
  }
  .btn-outline-w:hover { background:rgba(255,255,255,.1); color:#fff; }

/* ============================================================
   MERCHANDISING & APPAREL DESIGN SECTIONS
   ============================================================ */
.merch-hero,
.services-section,
.process-section,
.team-section,
.studio-section,
.people-section {
  --navy-deep: #0a1626;
  --navy: #0d1e35;
  --gold: #c9a24b;
  --gold-soft: #d9bd7d;
  --text-muted: #b8c2d1;
}

.merch-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.merch-hero .bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark gradient so text stays readable over the photo */
.merch-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    var(--navy-deep) 0%,
    rgba(10,22,38,0.92) 32%,
    rgba(10,22,38,0.55) 55%,
    rgba(10,22,38,0.15) 75%,
    rgba(10,22,38,0.05) 100%);
  z-index: 1;
}

.merch-hero .container {
  position: relative;
  z-index: 2;
}

.merch-title {
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.05;
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
  margin-bottom: 0;
}

.merch-title .light {
  font-weight: 400;
  display: block;
}

.merch-tagline {
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.merch-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 420px;
  margin-bottom: 2rem;
}

.feature-item {
  text-align: center;
  color: #fff;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem;
  font-size: 1.3rem;
  color: var(--gold-soft);
  background: rgba(201,162,75,0.08);
  transition: transform .25s ease, background .25s ease;
}

.feature-item:hover .feature-icon {
  transform: translateY(-4px);
  background: rgba(201,162,75,0.18);
}

.feature-label {
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: #e8ecf1;
}

.content-pad {
  padding: 3rem 1.5rem;
}

@media (min-width: 992px) {
  .content-pad {
    padding: 100px 0px;
  }
}

@media (max-width: 767.98px) {
  .merch-hero {
    min-height: auto;
  }
  .merch-hero::before {
    background: linear-gradient(180deg,
      rgba(10,22,38,0.75) 0%,
      rgba(10,22,38,0.92) 55%,
      var(--navy-deep) 100%);
  }
  .merch-desc {
    max-width: 100%;
  }
  .feature-item {
    margin-bottom: 1.5rem;
  }
}

/* ===== Merchandising Services section ===== */
.services-section {
  background: #ffffff;
  padding: 4.5rem 0;
}

.services-heading {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  text-align: center;
  margin-bottom: 0.9rem;
}

.services-divider {
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  position: relative;
}

.services-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.services-subtitle {
  text-align: center;
  color: #5a6472;
  font-size: 0.95rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e9ebf0;
  box-shadow: 0 2px 10px rgba(10,22,38,0.05);
  overflow: hidden;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(10,22,38,0.12);
}

/* Desktop - 8 cards per row */
.service-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.service-row .col {
  width: 100%;
}

/* Tablet - 4 cards per row */
@media (max-width: 991.98px) {
  .service-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile - 2 cards per row */
@media (max-width: 575.98px) {
  .service-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.service-card .service-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/4;
  overflow: hidden;
}

.service-card .service-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card .service-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  font-size: 1rem;
  z-index: 2;
  margin-left: 9px;
  margin-top: -20px;
  position: relative;
}

.service-card .service-body {
  padding: 1.5rem 0.85rem 1.3rem;
}

.service-card .service-title {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-card .service-underline {
  width: 26px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 10px;
}

.service-card .service-desc {
  color: #7a8291;
  font-size: 0.78rem;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .services-section {
    padding: 3rem 0;
  }
}

/* ===== Merchandising Management Process section ===== */
.process-section {
  background: #f8f8fb;
  padding: 4.5rem 0 3.5rem;
}

.process-heading {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  text-align: center;
  margin-bottom: 0.8rem;
}

.process-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 3rem;
  position: relative;
}

.process-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.process-scroll {
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.process-track {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 920px;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  height: 0;
  border-top: 2px dashed var(--gold);
  z-index: 0;
  opacity: 0.6;
}

.process-step {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.4rem;
}

.process-arrow {
  flex: 0 0 18px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 0 6px #f8f8fb;
}

.process-number {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}

.process-title {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.3;
  margin-bottom: 0.4rem;
  min-height: 2.2em;
}

.process-desc {
  color: #7a8291;
  font-size: 0.74rem;
  line-height: 1.45;
  max-width: 110px;
}

@media (max-width: 767.98px) {
  .process-section {
    padding: 3.5rem 0 2.5rem;
  }
  .process-divider {
    margin-bottom: 2rem;
  }
}

/* ===== Meet Our Merchandising Team section ===== */
.team-section {
  background: #fbfbfc;
  padding: 4.5rem 0;
}

.team-heading {
  text-align: center;
  font-weight: 400;
  color: var(--navy);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  letter-spacing: 0.5px;
  margin-bottom: 0.9rem;
}

.team-heading strong {
  font-weight: 800;
}

.team-divider {
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  position: relative;
}

.team-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.team-subtitle {
  text-align: center;
  color: #5a6472;
  font-size: 0.95rem;
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.team-card {
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e9ebf0;
  box-shadow: 0 2px 10px rgba(10,22,38,0.05);
  overflow: hidden;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(10,22,38,0.12);
}

.team-card .team-photo-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-card .team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card .team-body {
  padding: 1.1rem 0.8rem 1.3rem;
  text-align: center;
}

.team-card .team-name {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.team-card .team-underline {
  width: 26px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 0.6rem;
}

.team-card .team-role {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2px;
}

@media (max-width: 575.98px) {
  .team-section {
    padding: 3rem 0;
  }
}

/* ===== Design Studio section ===== */
.studio-section {
  background: var(--navy-deep);
  padding: 4.5rem 0;
}

.studio-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  height: 100%;
  min-height: 280px;
}

.studio-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.studio-photo-wrap:hover img {
  transform: scale(1.06);
}

.studio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,38,0) 35%, rgba(10,22,38,0.92) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.6rem;
  opacity: 0;
  transition: opacity .4s ease;
}

.studio-photo-wrap:hover .studio-overlay {
  opacity: 1;
}

.studio-overlay-text {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  transform: translateY(12px);
  transition: transform .4s ease;
}

.studio-overlay-text span {
  display: block;
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.studio-photo-wrap:hover .studio-overlay-text {
  transform: translateY(0);
}

.studio-card {
  background: #e9eaec;
  border-radius: 6px;
  padding: 2.4rem 2.2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.studio-heading {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.studio-text {
  color: #3a4048;
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 1.3rem;
}

.studio-flow {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.2px;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .studio-photo-wrap {
    min-height: 260px;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .studio-section {
    padding: 3rem 0;
  }
  .studio-card {
    padding: 1.8rem 1.4rem;
  }
}

/* ===== People Gallery section ===== */
.people-section {
  background: #ffffff;
  padding: 4.5rem 0 5.5rem;
}

.people-heading {
  text-align: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: #7a1e1e;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  margin-bottom: 0.6rem;
}

.people-subtitle {
  text-align: center;
  color: #9aa1ab;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 3rem;
}

.people-grid {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.people-col {
  flex: 1 1 0;
}

.people-col.offset-down {
  margin-top: 2.5rem;
}

.people-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/5;
  background: #e2e3e5;
}

.people-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.people-photo-wrap:hover img {
  transform: scale(1.12);
}

.people-photo-wrap.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a6472;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}

@media (max-width: 767.98px) {
  .people-grid {
    flex-wrap: wrap;
  }
  .people-col {
    flex: 1 1 calc(50% - 0.625rem);
  }
  .people-col.offset-down {
    margin-top: 0;
  }
}

/* =====================================================
   ABOUT PAGE WIREFRAME REDESIGN STYLES (THEMED)
===================================================== */

/* 1. About Intro Box */
.about-intro-section {
  padding: 4rem 0 2.5rem;
  background: #ffffff;
}

.about-intro-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 3.5rem 3rem;
  text-align: center;
  max-width: 1020px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(15,39,68,0.05);
  position: relative;
}

.about-intro-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: #0f2744;
  margin-bottom: 1.5rem;
}

.about-intro-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #475569;
  margin-bottom: 0;
}

/* 2. Our Journey Timeline */
.journey-section {
  padding: 4rem 0 4.5rem;
  background: #f8fafc;
}

.journey-header {
  text-align: center;
  margin-bottom: 3.25rem;
}

.journey-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: #0f2744;
  margin-bottom: 0.5rem;
}

.journey-subtitle {
  font-size: 0.98rem;
  color: #64748b;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  position: relative;
}

.journey-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, #e2e8f0, #c59b27, #0f2744, #c59b27, #e2e8f0);
  z-index: 1;
}

.journey-step {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #0f2744;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 6px 18px rgba(15,39,68,0.08);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.journey-step:hover .journey-icon-wrap {
  transform: translateY(-6px);
  border-color: #c59b27;
  background: #0f2744;
  box-shadow: 0 10px 25px rgba(197,155,39,0.25);
}

.journey-icon-wrap i {
  font-size: 1.8rem;
  color: #c59b27;
  transition: color 0.3s ease, transform 0.3s ease;
}

.journey-step:hover .journey-icon-wrap i {
  color: #ffffff;
  transform: scale(1.08);
}

.journey-year {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f2744;
  margin-bottom: 0.35rem;
}

.journey-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.4;
  max-width: 150px;
}

/* 3. Mission, Vision & Values */
.mvv-section {
  padding: 4.5rem 0;
  background: #ffffff;
}

.mvv-header {
  text-align: center;
  margin-bottom: 3.25rem;
}

.mvv-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: #0f2744;
  margin-bottom: 0.5rem;
}

.mvv-subtitle {
  font-size: 0.98rem;
  color: #64748b;
}

.mvv-card {
  background: linear-gradient(145deg, #091a2f 0%, #0f2744 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 3.25rem 2.25rem;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15,39,68,0.12);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
  height: 100%;
}

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15,39,68,0.22);
  border-color: rgba(197,155,39,0.4);
}

.mvv-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(197,155,39,0.15);
  border: 1.5px solid #c59b27;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.mvv-card:hover .mvv-card-icon {
  transform: scale(1.08);
  background: #c59b27;
}

.mvv-card-icon i {
  font-size: 1.8rem;
  color: #c59b27;
  transition: color 0.3s ease;
}

.mvv-card:hover .mvv-card-icon i {
  color: #ffffff;
}

.mvv-card-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.mvv-card-desc {
  font-size: 0.94rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin: 0;
}

/* 4. Board of Directors */
.board-section {
  padding: 4.5rem 0 5.5rem;
  background: #f8fafc;
}

.board-header {
  text-align: center;
  margin-bottom: 3.25rem;
}

.board-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: #0f2744;
  margin-bottom: 0.5rem;
}

.board-subtitle {
  font-size: 0.98rem;
  color: #64748b;
  max-width: 680px;
  margin: 0 auto;
}

.director-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-shadow: 0 4px 18px rgba(15,39,68,0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.director-card:hover {
  transform: translateY(-6px);
  border-color: #c59b27;
  box-shadow: 0 14px 35px rgba(15,39,68,0.1);
}

.director-photo-wrap {
  width: 100%;
  aspect-ratio: 4/4.2;
  background: #0f2744;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.director-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.director-card:hover .director-photo-wrap img {
  transform: scale(1.04);
}

.director-role {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f2744;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.director-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 1.25rem;
}

.btn-director-details {
  background: #0f2744;
  color: #ffffff;
  border: 1.5px solid #0f2744;
  padding: 0.5rem 2rem;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-director-details:hover {
  background: #c59b27;
  border-color: #c59b27;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(197,155,39,0.3);
}

/* Director Modal */
.director-modal .modal-content {
  border-radius: 16px;
  border: none;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15,39,68,0.25);
}

.director-modal .modal-header {
  background: #0f2744;
  color: #ffffff;
  border-bottom: none;
  padding: 1.4rem 2rem;
}

.director-modal .modal-title {
  color: #ffffff;
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.4rem;
}

.director-modal .btn-close {
  filter: invert(1);
}

.director-modal .modal-body {
  padding: 2.25rem 2.5rem;
}

.director-modal-photo {
  width: 100%;
  max-width: 230px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(15,39,68,0.12);
}

.director-modal-name {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: #0f2744;
  margin-bottom: 0.25rem;
}

@media (max-width: 991.98px) {
  .journey-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2rem;
  }
  .journey-grid::before {
    display: none;
  }
  .about-intro-title, .journey-title, .mvv-title, .board-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 575.98px) {
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-intro-card {
    padding: 2rem 1.25rem;
  }
}

.director-modal-role {
  font-size: 1rem;
  font-weight: 600;
  color: #c59b27;
  margin-bottom: 1rem;
}

.director-modal-bio {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #475569;
}

@media (max-width: 991.98px) {
  .journey-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2.5rem;
  }
  .journey-grid::before {
    display: none;
  }
  .mvv-card {
    min-height: auto;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-intro-card {
    padding: 2rem 1.25rem;
  }
}

/* =====================================================
   FACTORY PAGE WIREFRAME STYLES (THEMED)
===================================================== */
.our-factory-section {
  padding: 4.5rem 0 4rem;
  background: #ffffff;
}

.our-factory-header {
  text-align: center;
  margin-bottom: 3.25rem;
}

.our-factory-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: #0f2744;
  margin-bottom: 0.5rem;
}

.our-factory-subtitle {
  font-size: 0.98rem;
  color: #64748b;
  max-width: 680px;
  margin: 0 auto;
}

.factory-video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, #091a2f 0%, #0f2744 100%);
  cursor: pointer;
  aspect-ratio: 3/4.2;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(15,39,68,0.06);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.factory-video-card:hover {
  transform: translateY(-8px);
  border-color: #c59b27;
  box-shadow: 0 16px 40px rgba(15,39,68,0.18);
}

.factory-video-poster {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #091a2f 0%, #0f2744 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.factory-video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.factory-video-card:hover .factory-video-poster img {
  transform: scale(1.05);
}

.factory-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 39, 68, 0.25) 0%, rgba(15, 39, 68, 0.75) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.3s ease;
}

.factory-video-card:hover .factory-video-overlay {
  background: linear-gradient(180deg, rgba(15, 39, 68, 0.4) 0%, rgba(9, 26, 47, 0.88) 100%);
}

.factory-video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #0f2744;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  padding-left: 4px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.factory-video-card:hover .factory-video-play-btn {
  transform: scale(1.12);
  background: #c59b27;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(197,155,39,0.4);
}

.factory-video-caption h5 {
  color: #ffffff;
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.factory-video-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.factory-video-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #c59b27;
  color: #ffffff;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 2;
}

/* Factory Video Modal */
#factoryVideoModal .modal-content {
  border-radius: 16px;
  overflow: hidden;
  border: none;
  background: #091a2f;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

#factoryVideoModal .modal-header {
  background: #0f2744;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.75rem;
}

#factoryVideoModal .modal-title {
  color: #ffffff;
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.35rem;
}

#factoryVideoModal .btn-close {
  filter: invert(1);
}

/* =====================================================
   CONTACT US PAGE WIREFRAME STYLES (THEMED)
===================================================== */

/* 1. Quick Action Pills */
.contact-quick-pills {
  padding: 3rem 0 1.5rem;
}

.contact-pill-card {
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.4rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #ffffff;
  text-decoration: none;
  color: #0f2744;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  min-height: 86px;
  box-shadow: 0 4px 18px rgba(15,39,68,0.04);
}

.contact-pill-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15,39,68,0.09);
  border-color: #c59b27;
  color: #0f2744;
}

.contact-pill-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #0f2744;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.contact-pill-card:hover .contact-pill-icon {
  background: #0f2744;
  color: #ffffff;
  transform: scale(1.05);
}

.contact-pill-card.is-whatsapp .contact-pill-icon {
  background: #e8f7ee;
  color: #25d366;
}

.contact-pill-card.is-whatsapp:hover .contact-pill-icon {
  background: #25d366;
  color: #ffffff;
}

.contact-pill-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  margin-bottom: 2px;
  display: block;
}

.contact-pill-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f2744;
  letter-spacing: 0.2px;
  word-break: break-all;
  line-height: 1.3;
}

/* 2. Directory Box */
.contact-directory-box {
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.25rem 2.5rem;
  background: #ffffff;
  margin: 1.5rem 0 3rem;
  box-shadow: 0 6px 24px rgba(15,39,68,0.04);
}

.contact-directory-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid #f1f5f9;
}

.contact-directory-header h4 {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: #0f2744;
  margin: 0;
}

.contact-directory-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s ease;
}

.contact-directory-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-directory-row:first-child {
  padding-top: 0;
}

.contact-directory-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fdf8eb;
  border: 1.5px solid #f3e5b8;
  color: #c59b27;
  font-size: 1.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.contact-directory-content h6 {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.08rem;
  font-weight: 700;
  color: #0f2744;
  margin-bottom: 0.25rem;
}

.contact-directory-content p {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 0;
  line-height: 1.5;
}

/* 3. How Can We Help Form */
.contact-form-section {
  padding: 1rem 0 4rem;
}

.contact-form-container {
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 3.5rem 3rem 3rem;
  background: #ffffff;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 10px 35px rgba(15,39,68,0.06);
}

.contact-form-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: #0f2744;
  text-align: center;
  margin-bottom: 0.4rem;
}

.contact-form-subtitle {
  font-size: 0.96rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.45rem;
  display: block;
}

.contact-form-label .req {
  color: #ef4444;
}

.contact-input {
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.8rem 1.1rem;
  font-size: 0.94rem;
  color: #0f2744;
  outline: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-input:focus {
  border-color: #c59b27;
  background: #ffffff;
  box-shadow: 0 0 0 3.5px rgba(197,155,39,0.15);
}

.contact-textarea {
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  font-size: 0.94rem;
  color: #0f2744;
  outline: none;
  min-height: 150px;
  resize: vertical;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-textarea:focus {
  border-color: #c59b27;
  background: #ffffff;
  box-shadow: 0 0 0 3.5px rgba(197,155,39,0.15);
}

.btn-contact-submit {
  background: #0f2744;
  color: #ffffff;
  border: 2px solid #0f2744;
  padding: 0.85rem 3.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(15,39,68,0.18);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-contact-submit:hover {
  background: #c59b27;
  color: #ffffff;
  border-color: #c59b27;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197,155,39,0.3);
}

/* 4. Where to Find Us Section */
.contact-locations-section {
  padding: 4.5rem 0 5.5rem;
  background: #f8fafc;
}

.contact-locations-header {
  text-align: center;
  margin-bottom: 3.25rem;
}

.contact-locations-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c59b27;
  margin-bottom: 0.4rem;
  display: block;
}

.contact-locations-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: #0f2744;
  margin: 0;
}

.contact-location-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15,39,68,0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-location-card:hover {
  transform: translateY(-6px);
  border-color: #c59b27;
  box-shadow: 0 14px 35px rgba(15,39,68,0.1);
}

.contact-map-frame {
  width: 100%;
  height: 200px;
  background: #0f2744;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  border-bottom: 1px solid #f1f5f9;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-location-body {
  padding: 1.6rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.contact-location-name {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: #0f2744;
  margin-bottom: 0.9rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid #f1f5f9;
}

.contact-location-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #475569;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.contact-location-item i {
  color: #c59b27;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-location-item a {
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-location-item a:hover {
  color: #0f2744;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .contact-form-container {
    padding: 2rem 1.25rem;
  }
  .contact-directory-box {
    padding: 1.5rem 1.25rem;
  }
  .contact-locations-title, .contact-form-title {
    font-size: 1.9rem;
  }
}

/* =====================================================
   INVESTORS PAGE WIREFRAME STYLES
===================================================== */

/* 1. Why Invest Section */
.inv-why-sec {
  padding: 4rem 0 3rem;
  background: #ffffff;
}

.inv-why-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.inv-why-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #111b2b;
  margin-bottom: 0.5rem;
}

.inv-why-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 2.2rem 1.4rem 1.8rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.inv-why-card:hover {
  transform: translateY(-6px);
  border-color: #c59b27;
  box-shadow: 0 12px 30px rgba(17,27,43,0.08);
}

.inv-why-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fdf8eb;
  border: 1.5px solid #e9d598;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #c59b27;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.inv-why-card:hover .inv-why-icon-box {
  transform: scale(1.08);
  background: #c59b27;
  color: #ffffff;
  border-color: #c59b27;
}

.inv-why-card h5 {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #111b2b;
  margin-bottom: 0.65rem;
}

.inv-why-card p {
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 0;
}

/* 2. Investment Opportunities Section */
.inv-opp-sec {
  padding: 3rem 0 4.5rem;
  background: #f8fafc;
}

.inv-opp-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.inv-opp-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #111b2b;
  margin-bottom: 0.5rem;
}

.inv-opp-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.inv-opp-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 14px 32px rgba(17,27,43,0.09);
}

.inv-opp-img-wrap {
  position: relative;
  width: 100%;
  height: 190px;
  background: #111b2b;
  overflow: hidden;
}

.inv-opp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.inv-opp-card:hover .inv-opp-img-wrap img {
  transform: scale(1.05);
}

.inv-opp-badge-icon {
  position: absolute;
  bottom: -20px;
  left: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0f2744;
  color: #c59b27;
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.inv-opp-body {
  padding: 2.1rem 1.4rem 1.4rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.inv-opp-body h5 {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #111b2b;
  margin-bottom: 0.6rem;
}

.inv-opp-body p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.inv-opp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f2744;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.inv-opp-link i {
  transition: transform 0.2s ease;
}

.inv-opp-link:hover {
  color: #c59b27;
}

.inv-opp-link:hover i {
  transform: translateX(4px);
}

/* 3. Featured Investment Projects Section */
.inv-projects-sec {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #091a2f 0%, #0f2744 100%);
  color: #ffffff;
}

.inv-projects-header {
  text-align: center;
  margin-bottom: 3rem;
}

.inv-projects-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.inv-project-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inv-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.inv-project-img {
  width: 100%;
  height: 185px;
  background: #1e293b;
  overflow: hidden;
  position: relative;
}

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

.inv-project-card:hover .inv-project-img img {
  transform: scale(1.05);
}

.inv-project-body {
  padding: 1.4rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  color: #111b2b;
}

.inv-project-tag {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.inv-project-name {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #111b2b;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.inv-project-details {
  border-top: 1px solid #f1f5f9;
  padding-top: 0.75rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.inv-project-row {
  font-size: 0.84rem;
  color: #475569;
  margin-bottom: 0.35rem;
  line-height: 1.45;
}

.inv-project-row strong {
  color: #1e293b;
  font-weight: 600;
}

.btn-inv-im {
  background: #c59b27;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  border: none;
  text-align: center;
  text-decoration: none;
  width: 100%;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.btn-inv-im:hover {
  background: #b0881c;
  color: #ffffff;
  transform: translateY(-2px);
}

/* 4. Our Investors Section */
.inv-investors-sec {
  padding: 4.5rem 0 5.5rem;
  background: #ffffff;
}

.inv-investors-header {
  text-align: center;
  margin-bottom: 3rem;
}

.inv-investors-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: #111b2b;
  margin-bottom: 0.5rem;
}

.inv-investor-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.75rem 1.25rem 1.4rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
}

.inv-investor-card:hover {
  transform: translateY(-5px);
  border-color: #c59b27;
  box-shadow: 0 10px 25px rgba(17,27,43,0.08);
}

.inv-investor-logo-box {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
}

.inv-investor-logo-box img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.inv-investor-card:hover .inv-investor-logo-box img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);
}

.inv-investor-monogram {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f2744, #1d406b);
  color: #c59b27;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.inv-investor-name {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.12rem;
  font-weight: 700;
  color: #111b2b;
  margin-bottom: 0.35rem;
}

.inv-investor-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.22rem 0.65rem;
  border-radius: 20px;
  margin-bottom: 0.65rem;
}

.inv-investor-date-badge i {
  color: #c59b27;
  font-size: 0.8rem;
}

.inv-investor-desc {
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.45;
  margin-bottom: 0.9rem;
  flex-grow: 1;
}

.inv-investor-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f2744;
  text-decoration: none;
  padding: 0.35rem 0.8rem;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  transition: all 0.2s ease;
}

.inv-investor-link:hover {
  background: #0f2744;
  color: #ffffff;
  border-color: #0f2744;
}

@media (max-width: 991.98px) {
  .inv-why-title, .inv-opp-title, .inv-projects-title, .inv-investors-title {
    font-size: 1.9rem;
  }
}

/* =====================================================
   HOMEPAGE CARGO SHIPPING & LOGISTICS (THEMED)
===================================================== */
.cargo-logistics-section {
  padding: 4.5rem 0 5rem;
  background: #ffffff;
}

.cargo-logistics-header {
  text-align: center;
  margin-bottom: 3.25rem;
}

.cargo-logistics-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.cargo-logistics-logo-wrap img {
  max-height: 85px;
  width: auto;
  object-fit: contain;
}

.cargo-logistics-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: #0f2744;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cargo-logistics-subtitle {
  font-size: 0.98rem;
  color: #64748b;
  max-width: 680px;
  margin: 0 auto;
}

.cargo-pillar-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 2.25rem 1.6rem 2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 18px rgba(15,39,68,0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.cargo-pillar-card:hover {
  transform: translateY(-6px);
  border-color: #c59b27;
  box-shadow: 0 14px 35px rgba(15,39,68,0.1);
}

.cargo-pillar-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0f2744;
  color: #c59b27;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 14px rgba(15,39,68,0.18);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.cargo-pillar-card:hover .cargo-pillar-icon-box {
  transform: scale(1.08);
  background: #c59b27;
  color: #ffffff;
}

.cargo-pillar-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f2744;
  margin-bottom: 0.65rem;
}

.cargo-pillar-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

.cargo-export-banner {
  background: linear-gradient(135deg, #091a2f 0%, #0f2744 100%);
  border-radius: 14px;
  padding: 2.25rem 2.75rem;
  margin-top: 3.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(15,39,68,0.15);
}

.cargo-export-banner-content h4 {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.45rem;
}

.cargo-export-banner-content p {
  font-size: 0.92rem;
  color: #cbd5e1;
  margin: 0;
  max-width: 680px;
  line-height: 1.5;
}

.btn-shipping-info {
  background: #c59b27;
  color: #ffffff;
  border: 2px solid #c59b27;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(197,155,39,0.3);
}

.btn-shipping-info:hover {
  background: #b0881c;
  border-color: #b0881c;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197,155,39,0.45);
}

/* =====================================================
   HOMEPAGE 3-CARD MEDIA SHOWCASE
===================================================== */
.home-media-showcase-sec {
  padding: 3.5rem 0 4.5rem;
  background: #f8fafc;
}

.home-media-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, #091a2f 0%, #0f2744 100%);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(15,39,68,0.05);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-media-card:hover {
  transform: translateY(-6px);
  border-color: #c59b27;
  box-shadow: 0 16px 36px rgba(15,39,68,0.15);
  color: #ffffff;
}

.home-media-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.home-media-card:hover .home-media-poster {
  transform: scale(1.05);
}

.home-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,39,68,0.3) 0%, rgba(9,26,47,0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2;
}

.home-media-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #0f2744;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.home-media-card:hover .home-media-icon-box {
  transform: scale(1.12);
  background: #c59b27;
  color: #ffffff;
}

.home-media-card h5 {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.home-media-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

@media (max-width: 767.98px) {
  .cargo-export-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .btn-shipping-info {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   CERTIFIED & COMPLIANT / OUR PARTNERS CAROUSEL WITH ARROWS
   ============================================================ */
.cert-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 50px;
}

.cert-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #d4a437;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(212, 164, 55, 0.38);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.cert-nav-btn:hover {
  background: #0f2744;
  color: #d4a437;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 6px 20px rgba(15, 39, 68, 0.4);
}

.cert-prev {
  left: 0;
}

.cert-next {
  right: 0;
}

.cert-item-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  height: 85px;
  transition: transform 0.3s ease;
}

.cert-item-card img {
  max-height: 65px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.06));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.cert-item-card:hover img {
  transform: scale(1.12);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
}

@media (max-width: 575.98px) {
  .cert-carousel-wrapper {
    padding: 10px 38px;
  }
  .cert-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
}

/* ============================================================
   PRODUCT GALLERY VIEW ALL BUTTON
   ============================================================ */
.btn-view-all-gold {
  background: #d4a437;
  color: #0f2744 !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 38px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(212, 164, 55, 0.28);
  transition: all 0.3s ease;
  border: 1px solid #d4a437;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}

.btn-view-all-gold:hover {
  background: #0f2744;
  color: #d4a437 !important;
  border-color: #0f2744;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 39, 68, 0.35);
}

.btn-view-all-gold:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================================
   SPLIT SOURCING: WHY BANGLADESH & WHY EUROPE BANGLA GROUP
   ============================================================ */
.split-sourcing-section {
  width: 100%;
  overflow: hidden;
}

.split-col-blue {
  background: #081a4b;
  color: #ffffff;
  padding: 60px 45px;
  height: 100%;
}

.split-col-green {
  background: #073816;
  color: #ffffff;
  padding: 60px 45px;
  height: 100%;
}

.split-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.split-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 28px;
}

.split-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.split-list-item .item-icon {
  font-size: 1.25rem;
  color: #d4a437;
  flex-shrink: 0;
  margin-top: 1px;
}

.split-list-item h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.split-list-item p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
  margin-bottom: 0;
}

.split-map-card {
  background: #cbd5e1;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  min-height: 290px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.split-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 290px;
  border: 0;
}

.split-map-card .map-overlay-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.92);
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #081a4b;
  letter-spacing: 2px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .split-col-blue, .split-col-green {
    padding: 40px 25px;
  }
}

/* ============================================================
   3-CARD STUDIO VIDEO LIGHTBOX SHOWCASE
   ============================================================ */
.studio-media-sec {
  background: #f8fafc;
  padding: 60px 0;
}

.studio-media-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.studio-media-card {
  position: relative;
  background: #cbd5e1;
  border-radius: 8px;
  overflow: hidden;
  height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.4s ease;
  width: 100%;
}

.studio-media-card.center-card {
  height: 330px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.studio-media-card img.bg-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.studio-media-card:hover img.bg-poster {
  transform: scale(1.08);
}

.studio-media-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(15,39,68,0.88) 100%);
  transition: background 0.3s ease;
}

.studio-media-card:hover .card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(15,39,68,0.96) 100%);
}

.studio-media-card .card-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  width: 100%;
}

.studio-media-card .play-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #d4a437;
  color: #0f2744;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 12px;
  box-shadow: 0 4px 18px rgba(212, 164, 55, 0.4);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.studio-media-card:hover .play-icon-circle {
  transform: scale(1.14);
  background: #ffffff;
  color: #d4a437;
}

.studio-media-card h4 {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .studio-media-grid {
    flex-direction: column;
  }
  .studio-media-card.center-card {
    height: 270px;
  }
}

/* ============================================================
   MANAGEMENT TEAM & DIVISION-SPECIFIC MANAGEMENT STRUCTURE
   ============================================================ */
.mgmt-page-wrap {
  background: #f8fafc;
  padding: 50px 0 80px 0;
}

.mgmt-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.mgmt-section-header .section-eyebrow {
  color: var(--gold, #c59b27);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.82rem;
  display: inline-block;
  margin-bottom: 6px;
}

.mgmt-section-header h2 {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--navy, #0f2744);
  margin-bottom: 10px;
}

.mgmt-section-header p {
  color: #64748b;
  font-size: 0.95rem;
  max-width: 720px;
  margin: 0 auto;
}

/* Team Grid on Management Page */
.mgmt-team-sec {
  background: #ffffff;
  padding: 60px 0 70px 0;
  border-bottom: 1px solid #e2e8f0;
}

.mgmt-team-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 26px 20px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(15, 39, 68, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.mgmt-team-card:hover {
  transform: translateY(-6px);
  border-color: #c59b27;
  box-shadow: 0 12px 28px rgba(15, 39, 68, 0.1);
}

.mgmt-team-photo-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid #c59b27;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(197, 155, 39, 0.25);
}

.mgmt-team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mgmt-team-monogram {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f2744;
  letter-spacing: 1px;
}

.mgmt-team-role {
  font-size: 0.78rem;
  font-weight: 700;
  color: #c59b27;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.mgmt-team-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f2744;
  margin-bottom: 6px;
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
}

.mgmt-team-since {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  color: #64748b;
  background: #f1f5f9;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  font-weight: 500;
}

.mgmt-team-bio-snip {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.45;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.btn-mgmt-details {
  background: transparent;
  border: 1.5px solid #0f2744;
  color: #0f2744;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 22px;
  border-radius: 24px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-mgmt-details:hover {
  background: #0f2744;
  color: #ffffff;
  border-color: #0f2744;
}

/* Division Management Blocks */
.mgmt-div-block {
  margin-bottom: 65px;
}

.mgmt-div-header-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.mgmt-div-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 2rem;
  font-weight: 800;
  color: #0f2744;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.mgmt-div-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 18px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 3px 12px rgba(0,0,0,0.04);
  border: 1px solid #e2e8f0;
}

.mgmt-div-brand-logo .brand-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.4rem;
}

.mgmt-div-brand-logo .brand-name-box {
  text-align: left;
  line-height: 1.15;
}

.mgmt-div-brand-logo .brand-main-title {
  font-weight: 800;
  font-size: 1.15rem;
  color: #0f2744;
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  letter-spacing: -0.3px;
}

.mgmt-div-brand-logo .brand-sub-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #c59b27;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Structure Card */
.mgmt-structure-card {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 36px 32px 30px 32px;
  box-shadow: 0 10px 30px rgba(15, 39, 68, 0.05);
}

.mgmt-structure-card-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.55rem;
  font-weight: 800;
  color: #0f2744;
  text-align: center;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.mgmt-structure-card-sub {
  font-size: 0.84rem;
  color: #64748b;
  font-style: italic;
  text-align: center;
  margin-bottom: 28px;
}

/* Tree Flow */
.mgmt-tree-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.mgmt-tree-node {
  background: #ffffff;
  border: 1.5px solid #0f2744;
  color: #0f2744;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 9px 36px;
  border-radius: 6px;
  text-align: center;
  min-width: 250px;
  box-shadow: 0 2px 6px rgba(15,39,68,0.06);
  transition: transform 0.2s ease;
}

.mgmt-tree-node:hover {
  transform: scale(1.02);
}

.mgmt-tree-node.exec-lead {
  background: linear-gradient(135deg, #ffffff 0%, #fcf9f2 100%);
  border: 2px solid #c59b27;
  min-width: 340px;
  max-width: 620px;
  padding: 12px 28px;
  box-shadow: 0 4px 14px rgba(197, 155, 39, 0.15);
}

.mgmt-tree-node.exec-lead .node-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f2744;
  margin-bottom: 3px;
}

.mgmt-tree-node.exec-lead .node-desc {
  font-size: 0.77rem;
  font-style: italic;
  color: #854d0e;
  font-weight: 500;
  margin-bottom: 0;
}

.mgmt-tree-arrow {
  color: #c59b27;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  justify-content: center;
}

/* Strip Ribbons */
.mgmt-strip-banner {
  background: linear-gradient(90deg, #f8fafc 0%, #eef2f6 50%, #f8fafc 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #c59b27;
  text-transform: uppercase;
  margin: 24px 0 18px 0;
}

.mgmt-strip-banner.services-strip {
  color: #0f2744;
  margin: 28px 0 16px 0;
}

/* Pillars Grid */
.mgmt-pillars-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.mgmt-pillars-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.mgmt-pillar-box {
  background: #fbfcfe;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.mgmt-pillar-box:hover {
  border-color: #c59b27;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(15,39,68,0.06);
}

.mgmt-pillar-title {
  background: #e9f0f8;
  border-radius: 5px;
  padding: 8px 6px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f2744;
  text-align: center;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}

.mgmt-pillar-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mgmt-pillar-items li {
  font-size: 0.76rem;
  color: #475569;
  line-height: 1.35;
  padding-left: 14px;
  position: relative;
}

.mgmt-pillar-items li::before {
  content: "•";
  position: absolute;
  left: 2px;
  color: #c59b27;
  font-size: 1rem;
  line-height: 1;
}

/* Services Grid */
.mgmt-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mgmt-service-box {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 10px 8px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f2744;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}

.mgmt-service-box:hover {
  border-color: #c59b27;
  background: #fefdf9;
  color: #0f2744;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .mgmt-pillars-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .mgmt-pillars-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .mgmt-structure-card {
    padding: 24px 16px;
  }
  .mgmt-pillars-5, .mgmt-pillars-6 {
    grid-template-columns: 1fr;
  }
  .mgmt-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mgmt-tree-node, .mgmt-tree-node.exec-lead {
    min-width: 100%;
    padding: 10px 16px;
  }
}

@media (max-width: 575.98px) {
  .mgmt-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   APPAREL / FASHION / GLOBAL CRAFT HERO BACKGROUND VIDEO
   ============================================================ */
.ap-hero-sec, .fh-hero-sec, .gc-hero-sec {
  position: relative;
  overflow: hidden;
  padding: 60px 0 70px 0;
  color: #ffffff;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-color: #0b192c;
}

.hero-bg-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-video-wrap video.hero-bg-video,
.hero-bg-video-wrap img.hero-fallback-poster {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.02);
  object-fit: cover;
}

.hero-bg-video-wrap img.hero-fallback-poster {
  z-index: 0;
}

.hero-bg-video-wrap video.hero-bg-video {
  z-index: 1;
}

.hero-bg-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.ap-hero-sec .hero-bg-video-overlay {
  background: linear-gradient(90deg, rgba(11, 25, 44, 0.94) 0%, rgba(15, 39, 68, 0.88) 55%, rgba(15, 39, 68, 0.70) 100%);
}

.fh-hero-sec .hero-bg-video-overlay {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 27, 46, 0.88) 55%, rgba(67, 24, 45, 0.72) 100%);
}

.gc-hero-sec .hero-bg-video-overlay {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(20, 38, 28, 0.88) 55%, rgba(26, 46, 34, 0.72) 100%);
}

.hero-content-relative {
  position: relative;
  z-index: 3;
  width: 100%;
}

.btn-hero-watch-video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-hero-watch-video:hover {
  background: #ffffff;
  color: #0f2744;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.ap-hero-card .btn-hero-watch-video {
  background: #f1f5f9;
  border: 1.5px solid #cbd5e1;
  color: #0f2744;
}

.ap-hero-card .btn-hero-watch-video:hover {
  background: #0f2744;
  color: #ffffff;
  border-color: #0f2744;
}

.btn-hero-watch-video .play-pulse-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #c59b27;
  color: #0f2744;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.btn-hero-watch-video:hover .play-pulse-circle {
  background: #0f2744;
  color: #c59b27;
}

.ap-hero-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.ap-hero-accent {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: #c59b27;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.ap-hero-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  color: #1e293b;
}

.ap-hero-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f2744;
  margin-bottom: 16px;
  line-height: 1.35;
}

.ap-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 20px;
}

.ap-hero-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
}

.ap-hero-badge-item i {
  color: #c59b27;
  font-size: 0.95rem;
}

.ap-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-ap-green {
  background: #16a34a;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 18px;
  border-radius: 6px;
  border: 1px solid #16a34a;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-ap-green:hover {
  background: #15803d;
  color: #ffffff;
}

.btn-ap-ghost {
  background: transparent;
  color: #0f2744;
  border: 1.5px solid #cbd5e1;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 18px;
  border-radius: 6px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-ap-ghost:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: #0f2744;
}

.ap-hero-video-box {
  background: #0b192c;
  border-radius: 12px;
  height: 290px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid rgba(197, 155, 39, 0.3);
}

.ap-hero-video-box img.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: transform 0.4s ease;
}

.ap-hero-video-box:hover img.poster-img {
  transform: scale(1.05);
}

.ap-hero-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(15, 39, 68, 0.4);
  color: #ffffff;
  text-align: center;
}

.ap-hero-video-title {
  position: absolute;
  top: 18px;
  color: #ff4d4f;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  margin: 0;
}

.ap-video-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #c59b27;
  color: #0f2744;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 18px rgba(197, 155, 39, 0.5);
  transition: transform 0.3s ease, background 0.3s ease;
}

.ap-hero-video-box:hover .ap-video-play-btn {
  transform: scale(1.15);
  background: #ffffff;
  color: #c59b27;
}

/* SECTION 2: OUR KEY STRENGTH */
.ap-sec {
  padding: 50px 0;
}

.ap-sec-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f2744;
  text-align: center;
  margin-bottom: 24px;
}

.ap-strength-card {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 26px 20px;
  box-shadow: 0 4px 16px rgba(15, 39, 68, 0.04);
}

.ap-strength-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.ap-strength-item {
  text-align: center;
  padding: 6px;
  transition: transform 0.25s ease;
}

.ap-strength-item:hover {
  transform: translateY(-4px);
}

.ap-strength-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #0f2744;
  transition: all 0.25s ease;
}

.ap-strength-item:hover .ap-strength-icon {
  background: #0f2744;
  color: #c59b27;
  border-color: #0f2744;
}

.ap-strength-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f2744;
  line-height: 1.3;
}

/* SECTION 3: SOURCING OVERVIEW */
.ap-overview-lead-box {
  background: #f1f5f9;
  border-radius: 8px;
  padding: 20px 28px;
  font-size: 0.95rem;
  color: #334155;
  font-weight: 500;
  max-width: 920px;
  margin: 0 auto 30px auto;
  text-align: center;
  line-height: 1.6;
  border: 1px solid #e2e8f0;
}

.ap-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ap-stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 28px 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.ap-stat-card:hover {
  transform: translateY(-4px);
  border-color: #c59b27;
}

.ap-stat-icon {
  font-size: 2rem;
  color: #2563eb;
  margin-bottom: 8px;
}

.ap-stat-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f2744;
  line-height: 1.1;
  margin-bottom: 4px;
}

.ap-stat-lbl {
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
}

/* SECTION 4: APPAREL PRODUCTS */
.ap-products-sec {
  background: #f8fafc;
  padding: 55px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.ap-filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.ap-filter-btn {
  background: #64748b;
  color: #ffffff;
  border: none;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 20px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.ap-filter-btn:hover, .ap-filter-btn.active {
  background: #0f2744;
  color: #c59b27;
}

.ap-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.ap-prod-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: all 0.3s ease;
  height: 100%;
}

.ap-prod-card:hover {
  border-color: #c59b27;
  box-shadow: 0 6px 20px rgba(15, 39, 68, 0.08);
  transform: translateY(-3px);
}

.ap-prod-img {
  width: 80px;
  height: 95px;
  background: #f1f5f9;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.ap-prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ap-prod-card:hover .ap-prod-img img {
  transform: scale(1.08);
}

.ap-prod-info {
  flex-grow: 1;
}

.ap-prod-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f2744;
  margin-bottom: 3px;
  line-height: 1.25;
}

.ap-prod-sub {
  font-size: 0.74rem;
  color: #64748b;
  margin-bottom: 8px;
}

.btn-ap-rfq-sm {
  background: #0f2744;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  border: none;
  transition: background 0.2s;
}

.btn-ap-rfq-sm:hover {
  background: #c59b27;
  color: #0f2744;
}

/* SECTION 5: RAW MATERIALS SOURCING */
.ap-raw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ap-raw-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.ap-raw-card:hover {
  border-color: #c59b27;
  box-shadow: 0 8px 22px rgba(15, 39, 68, 0.08);
  transform: translateY(-3px);
}

.ap-raw-body {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  flex-grow: 1;
}

.ap-raw-img {
  width: 75px;
  height: 90px;
  background: #64748b;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.ap-raw-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ap-raw-info {
  flex-grow: 1;
}

.ap-raw-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f2744;
  margin-bottom: 4px;
  line-height: 1.25;
}

.ap-raw-desc {
  font-size: 0.74rem;
  color: #64748b;
  line-height: 1.35;
  margin: 0;
}

.btn-ap-quote {
  background: #64748b;
  color: #ffffff;
  border: none;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 4px;
  width: 100%;
  text-align: center;
  transition: all 0.2s ease;
}

.btn-ap-quote:hover {
  background: #0f2744;
  color: #c59b27;
}

/* SECTION 6: FACTORY NETWORK GALLERY */
.ap-factory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ap-factory-card {
  background: #cbd5e1;
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.ap-factory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.ap-factory-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(15,39,68,0.88) 100%);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
}

/* SECTION 7: FACTORY NETWORK CTA BAR */
.ap-factory-cta-bar {
  background: #e2e8f0;
  border-radius: 8px;
  padding: 22px 28px;
  margin: 30px 0 45px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ap-factory-cta-bar h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f2744;
  margin-bottom: 2px;
}

.ap-factory-cta-bar p {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0;
}

.ap-factory-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-cta-gray {
  background: #64748b;
  color: #ffffff;
  border: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.2s;
}

.btn-cta-gray:hover {
  background: #0f2744;
  color: #ffffff;
}

/* SECTION 8: WHY BUYERS TRUST */
.ap-trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.ap-trust-item {
  text-align: center;
  padding: 12px 6px;
}

.ap-trust-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #0f2744;
}

.ap-trust-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f2744;
  line-height: 1.3;
}

/* SECTION 9: QC & COMPLIANCE (2 COLS) */
.ap-qc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ap-qc-box {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 6px 20px rgba(15, 39, 68, 0.04);
  display: flex;
  flex-direction: column;
}

.ap-qc-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.ap-qc-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ap-qc-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #334155;
  font-weight: 600;
}

.ap-qc-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #16a34a;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ap-qc-photo {
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 18px;
}

.ap-qc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ap-comp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ap-comp-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: #334155;
  font-weight: 600;
}

.ap-comp-list li i {
  color: #16a34a;
  font-size: 1.15rem;
}

.btn-ap-navy {
  background: #1e3a8a;
  color: #ffffff;
  border: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 6px;
  align-self: flex-start;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-ap-navy:hover {
  background: #0f2744;
  color: #c59b27;
}

/* SECTION 10: SHIPPING & LOGISTICS */
.ap-logistics-sec {
  padding: 50px 0 20px 0;
  text-align: center;
}

.ap-logistics-brand-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 12px auto;
  background: #ffffff;
  border: 2px solid #0f2744;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.ap-logistics-brand-logo i {
  font-size: 2rem;
  color: #0f2744;
}

.ap-logistics-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f2744;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.ap-logistics-sub {
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 34px;
}

.ap-logistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.ap-logistics-item {
  text-align: center;
  padding: 10px;
}

.ap-logistics-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #0f2744;
  color: #c59b27;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px auto;
  box-shadow: 0 4px 12px rgba(15, 39, 68, 0.2);
  transition: transform 0.25s ease;
}

.ap-logistics-item:hover .ap-logistics-circle {
  transform: scale(1.1);
  background: #c59b27;
  color: #0f2744;
}

.ap-logistics-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f2744;
  margin-bottom: 8px;
}

.ap-logistics-text {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

/* SECTION 11: EXPORT BANNER */
.ap-export-banner {
  background: #0f2744;
  border-radius: 12px;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 39, 68, 0.2);
}

.ap-export-banner h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.ap-export-banner p {
  font-size: 0.84rem;
  color: #94a3b8;
  margin: 0;
  max-width: 680px;
}

.btn-export-gold {
  background: #c59b27;
  color: #0f2744;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-export-gold:hover {
  background: #ffffff;
  color: #0f2744;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .ap-strength-grid, .ap-trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ap-prod-grid, .ap-raw-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .ap-stat-grid, .ap-logistics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ap-factory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ap-qc-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .ap-strength-grid, .ap-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ap-stat-grid, .ap-logistics-grid, .ap-factory-grid, .ap-prod-grid, .ap-raw-grid {
    grid-template-columns: 1fr;
  }
  .ap-export-banner {
    padding: 20px;
  }
}

/* ============================================================
   FASHION HOUSE DIVISION PAGE (WIRE-FRAME LAYOUT)
   ============================================================ */
.fh-hero-sec {
  /* Inherits full video background structure from .ap-hero-sec, .fh-hero-sec, .gc-hero-sec */
}

.fh-hero-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.fh-hero-accent {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.7rem;
  font-weight: 800;
  color: #e11d48;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.fh-hero-video-box {
  background: #0b192c;
  border-radius: 12px;
  height: 290px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid rgba(225, 29, 72, 0.3);
}

.fh-hero-video-box img.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: transform 0.4s ease;
}

.fh-hero-video-box:hover img.poster-img {
  transform: scale(1.05);
}

.fh-hero-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(15, 39, 68, 0.4);
  color: #ffffff;
  text-align: center;
}

.fh-hero-video-title {
  position: absolute;
  top: 18px;
  color: #e11d48;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  margin: 0;
}

/* FEATURED PRODUCTS CAROUSEL CARD */
.fh-featured-sec {
  background: #ffffff;
  padding: 55px 0;
  border-bottom: 1px solid #e2e8f0;
}

.fh-featured-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 39, 68, 0.05);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.fh-featured-card:hover {
  border-color: #c59b27;
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(15, 39, 68, 0.1);
}

.fh-featured-img-wrap {
  position: relative;
  height: 220px;
  background: #f8fafc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fh-featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.fh-card-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1e3a8a;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.fh-card-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: none;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.fh-card-wishlist-btn:hover {
  background: #e11d48;
  color: #ffffff;
}

.fh-featured-body {
  padding: 18px 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.fh-featured-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f2744;
  margin-bottom: 12px;
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
}

.fh-specs-list {
  font-size: 0.78rem;
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
  flex-grow: 1;
}

.fh-specs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.35;
}

.fh-specs-row strong {
  color: #0f2744;
  font-weight: 700;
}

.fh-color-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.fh-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(0,0,0,0.15);
}

.fh-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.btn-fh-details {
  background: transparent;
  color: #0f2744;
  border: 1.5px solid #0f2744;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-fh-details:hover {
  background: #0f2744;
  color: #ffffff;
}

.btn-fh-quote {
  background: #1e3a8a;
  color: #ffffff;
  border: 1.5px solid #1e3a8a;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.2s;
}

.btn-fh-quote:hover {
  background: #0f2744;
  border-color: #0f2744;
  color: #c59b27;
}

/* FOUNDATION COLLECTION SECTION */
.fh-foundation-sec {
  background: #e2e8f0;
  padding: 60px 0;
  text-align: center;
}

.fh-foundation-brand {
  margin-bottom: 16px;
}

.fh-foundation-brand img {
  height: 55px;
  object-fit: contain;
}

.fh-foundation-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f2744;
  margin-bottom: 4px;
}

.fh-foundation-sub {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 35px;
}

.fh-foundation-transform-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 30px auto;
  flex-wrap: wrap;
}

.fh-stack-art {
  position: relative;
  width: 220px;
  height: 250px;
}

.fh-stack-card {
  position: absolute;
  width: 170px;
  height: 210px;
  background: #64748b;
  border-radius: 12px;
  border: 2px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.fh-stack-card:nth-child(1) {
  top: 0;
  left: 0;
  transform: rotate(-10deg);
}

.fh-stack-card:nth-child(2) {
  top: 15px;
  left: 20px;
  transform: rotate(-2deg);
  background: #78716c;
}

.fh-stack-card:nth-child(3) {
  top: 30px;
  left: 45px;
  transform: rotate(8deg);
  background: #475569;
}

.fh-stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fh-transform-arrow {
  font-size: 3rem;
  color: #0f2744;
  font-weight: 900;
}

.fh-output-grid {
  display: grid;
  grid-template-columns: repeat(2, 120px);
  gap: 14px;
}

.fh-output-card {
  width: 120px;
  height: 110px;
  background: #64748b;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.fh-output-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CUSTOM BRANDING & PRIVATE LABEL */
.fh-branding-card {
  background: #fdfaf3;
  border: 1px solid #e7dfd0;
  border-radius: 12px;
  padding: 30px 24px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.04);
  margin-bottom: 35px;
}

.fh-branding-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.55rem;
  font-weight: 800;
  color: #1f4d2e;
  margin-bottom: 12px;
}

.fh-branding-desc {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-fh-collab {
  background: #1f4d2e;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 6px;
  border: none;
  transition: background 0.2s;
}

.btn-fh-collab:hover {
  background: #0f2744;
  color: #c59b27;
}

.fh-branding-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.fh-brand-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
}

.fh-brand-feat-item i {
  font-size: 1.1rem;
  color: #1f4d2e;
}

.fh-branding-img-box {
  border-radius: 10px;
  overflow: hidden;
  height: 200px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.fh-branding-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 4 TRUST PILLARS STRIP */
.fh-trust-strip {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px 10px;
  gap: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  margin-bottom: 45px;
}

.fh-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 14px;
  border-right: 1px solid #e2e8f0;
}

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

.fh-trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.fh-trust-title {
  font-size: 0.86rem;
  font-weight: 800;
  color: #0f2744;
  margin-bottom: 2px;
}

.fh-trust-desc {
  font-size: 0.74rem;
  color: #64748b;
  line-height: 1.35;
  margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .fh-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .fh-trust-item {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 14px;
  }
  .fh-trust-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 575.98px) {
  .fh-trust-strip {
    grid-template-columns: 1fr;
  }
  .fh-branding-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   GLOBAL CRAFT DIVISION PAGE (WIRE-FRAME LAYOUT)
   ============================================================ */
.gc-hero-sec {
  /* Inherits full video background structure from .ap-hero-sec, .fh-hero-sec, .gc-hero-sec */
}

.gc-hero-title {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.gc-hero-accent {
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: 1.7rem;
  font-weight: 800;
  color: #dc2626;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.gc-hero-video-box {
  background: #0b192c;
  border-radius: 12px;
  height: 290px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid rgba(220, 38, 38, 0.3);
}

.gc-hero-video-box img.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: transform 0.4s ease;
}

.gc-hero-video-box:hover img.poster-img {
  transform: scale(1.05);
}

.gc-hero-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(15, 39, 68, 0.4);
  color: #ffffff;
  text-align: center;
}

.gc-hero-video-title {
  position: absolute;
  top: 18px;
  color: #dc2626;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  margin: 0;
}

/* MEET THE MAKERS (6 ARTISAN PORTRAIT CARDS) */
.gc-makers-sec {
  background: #ffffff;
  padding: 55px 0 65px 0;
}

.gc-makers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.gc-maker-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
  height: 100%;
}

.gc-maker-card:hover {
  transform: translateY(-6px);
  border-color: #c59b27;
  box-shadow: 0 10px 24px rgba(15, 39, 68, 0.1);
}

.gc-maker-img-wrap {
  height: 200px;
  background: #cbd5e1;
  overflow: hidden;
  position: relative;
}

.gc-maker-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gc-maker-region-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(15, 39, 68, 0.88);
  color: #c59b27;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.gc-maker-body {
  padding: 12px 10px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.gc-maker-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f2744;
  margin-bottom: 2px;
  font-family: var(--font-display, "Playfair Display", Georgia, serif);
}

.gc-maker-craft {
  font-size: 0.72rem;
  color: #16a34a;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.gc-maker-story {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.35;
  margin: 0;
}

@media (max-width: 1199.98px) {
  .gc-makers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575.98px) {
  .gc-makers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}