 :root {
      --primary: #c9a84c;
      --primary-light: #e8c96a;
      --dark: #111111;
      --dark2: #1a1a1a;
      --mid: #333333;
      --light-gray: #f5f5f3;
      --border: #e0e0e0;
      --text-muted: #888;
      --text-body: #444;
       --primary-accent: #c9a84c;
      --dark-bg: #0e0e0e;
      --divider: rgba(201, 168, 76, 0.35);
      --muted:   #7a7a7a;
      --white:   #f5f5f5;
      --green:#00af88;
    }
    *, *::before, *::after { box-sizing: border-box; }
    body { font-family: 'Barlow', sans-serif; color: var(--text-body); background: #fff; margin: 0; padding-top: 90px; }
    h1,h2,h3,h4,h5,h6 { font-family: 'Barlow Condensed', sans-serif; }
::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--dark2); }
    ::-webkit-scrollbar-thumb { background: var(--primary); }
    /* ══ NAVBAR ══ */
    /* .navbar-tc {
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: 0;
      position: sticky;
      top: 0;
      z-index: 1050;
    } */
     .navbar-tc{
        position:fixed;
        top:0;
        left:0;
        width:100%;
        z-index:9999;
        transition:all 0.3s ease;
        padding:0;
        background:transparent;
      }

      /* Sticky after scroll */
      .navbar-tc.sticky{
        background:#fff;
        padding:5px 0;
        box-shadow:0 5px 10px rgba(0,0,0,0.05);
      }
    .navbar-tc .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
    }
    .navbar-tc .brand {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 1.3rem;
      letter-spacing: 2px;
      color: var(--dark);
      text-decoration: none;
      text-transform: uppercase;
      white-space: nowrap;
    }
    /* desktop links */
    .navbar-tc .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .navbar-tc .nav-links a {
      font-size: 0.90rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(0,0,0,0.55);
      font-weight: 600;
      padding: 0 14px;
      text-decoration: none;
      white-space: nowrap;
      text-shadow: none;
    }
    .navbar-tc .nav-links a:hover { color: var(--primary); }
    .nav-links li a.active{color: rgba(0,0,0,1);font-weight:600;}
    /* hamburger */
    .navbar-toggler-tc {
      display: none;
      background: none;
      border: 1px solid #ccc;
      padding: 6px 10px;
      cursor: pointer;
      border-radius: 3px;
    }
    .navbar-toggler-tc .bar {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--dark);
      margin: 4px 0;
      transition: all 0.3s;
    }
    /* mobile drawer */
    .mobile-menu {
      display: none;
      background: #fff;
      border-top: 1px solid var(--border);
      padding: 0;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu a {
      display: block;
      padding: 14px 20px;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--dark);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
    }
    .mobile-menu a:hover { color: var(--primary); background: var(--light-gray); }
    .mobile-menu .btn-contact-mob {
      display: block;
      background: var(--dark);
      color: #fff;
      text-align: center;
      padding: 16px 20px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
    }
    .mobile-menu .btn-contact-mob:hover { background: var(--primary); }

    @media (max-width: 991px) {
      .navbar-toggler-tc { display: block; }
      .navbar-tc .nav-links { display: none; }
      .btn-contact-desk { display: none !important; }
    }

    /* CTA button */
    .btn-contact {
      background: var(--primary);
      color: #fff !important;
      font-size: 0.90rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 700;
      padding: 12px 20px;
      border-radius: 36px;
      text-decoration: none;
      white-space: nowrap;
    }
    .btn-contact:hover { background: var(--dark); }

    /* ══ HERO SLIDER ══ */
    .hero-slider {
      position: relative;
      overflow: hidden;
      min-height: 580px;
    }
    @media (max-width: 767px) { .hero-slider { min-height: 420px; } }

    .hero-slides {
      display: flex;
      transition: transform 0.75s cubic-bezier(0.77,0,0.18,1);
      height: 100%;
    }
    .hero-slide {
      min-width: 100%;
      min-height: 640px;
      position: relative;
      display: flex;
      align-items: center;
      background-size: cover;
      background-position: center;
    }
    @media (max-width: 767px) { .hero-slide { min-height: 420px; } }

    .hero-slide::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.30) 100%);
    }
    .slide-1 { background-image: url('../../images/banner1112.webp'); }
    .slide-2 { background-image: url('../../images/banner113.jpg'); }
    .slide-3 { background-image: url('../../images/banner114.jpg'); }

    .slide-content {
      position: relative;
      z-index: 2;
    }
    .slide-label {
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 14px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s 0.2s, transform 0.6s 0.2s;
    }
    .slide-title {
      font-size: clamp(2.4rem, 5vw, 4.4rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.05;
      text-transform: uppercase;
      letter-spacing: 1px;
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s 0.35s, transform 0.6s 0.35s;
    }
    .slide-text {
      color: rgba(255,255,255,0.75);
      font-size: 1.2rem;
      max-width: 600px;
      margin: 16px 0 30px;
      line-height: 1.65;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s 0.5s, transform 0.6s 0.5s;
    }
    .slide-btns {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.6s 0.65s, transform 0.6s 0.65s;
    }
    /* Animate active slide content */
    .hero-slide.active .slide-label,
    .hero-slide.active .slide-title,
    .hero-slide.active .slide-text,
    .hero-slide.active .slide-btns {
      opacity: 1;
      transform: translateY(0);
    }

    /* Slider controls */
    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      color: #fff;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.2s;
      backdrop-filter: blur(4px);
    }
    .slider-arrow:hover { background: var(--primary); border-color: var(--primary); }
    .slider-arrow.prev { left: 20px; }
    .slider-arrow.next { right: 20px; }

    /* Dots */
    .slider-dots {
      position: absolute;
      bottom: 22px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 10;
    }
    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.35);
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
      border: none;
      padding: 0;
    }
    .dot.active { background: var(--primary); transform: scale(1.3); }

    /* Slide counter */
    .slide-counter {
      position: absolute;
      bottom: 22px;
      right: 24px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 2px;
      color: rgba(255,255,255,0.45);
      z-index: 10;
    }
    .slide-counter span { color: #fff; }

    /* ══ BUTTONS ══ */
    .btn-gold {
      background: var(--primary);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 12px 26px;
      border-radius: 0;
      border: none;
      text-decoration: none;
      display: inline-block;
    }
    .btn-gold:hover { background: var(--primary-light); color: #fff; }
    .btn-outline-light-tc {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255,255,255,0.5);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 12px 26px;
      border-radius: 0;
      text-decoration: none;
      display: inline-block;
    }
    .btn-outline-light-tc:hover { border-color: #fff; color: #fff; }

    /* ══ SERVICES STRIP ══ */
.services-strip {
    padding: 80px 0;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}

.service-item {
    text-align: center;
    padding: 40px 25px;
    border-radius: 14px;
    background: #fff;
    transition: all 0.35s ease;
    cursor: pointer;
    height: 100%;
}

/* Hover Effect */
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    background: #f8f9fa;
}

.service-item .icon {
    font-size: 2.5rem;
    color: #212529;
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.service-item:hover .icon {
    transform: scale(1.15);
    color:var(--primary);
}

.service-item h5 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #212529;
    margin-bottom: 15px;
}

.service-item p {
    color: #6c757d;
    line-height: 1.8;
    margin: 0;
}

/* Mobile Space */
@media (max-width: 575px) {
    .services-strip {
        padding: 60px 0;
    }

    .service-item {
        padding: 35px 18px;
    }
}
.stats-wrap{
  border-top:1px solid rgba(255,255,255,0.08);
}

.stat-row{
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
  align-items:center;
}

.stat-row span{
  letter-spacing:2px;
  color:rgba(255,255,255,0.45);
}

.stat-row strong{
  color:#fff;
  font-weight:500;
  letter-spacing:1px;
}

/* MAP FRAME */
.map-frame{
  background:#11151d;
  border:1px solid rgba(255,255,255,0.08);
  padding:14px;
  position:relative;
  overflow:hidden;
  box-shadow:
    0 0 40px rgba(0,0,0,0.6),
    inset 0 0 40px rgba(255,255,255,0.02);
}

/* inner frame */
.map-frame::before{
  content:"";
  position:absolute;
  inset:10px;
  border:1px solid rgba(255,255,255,0.05);
  pointer-events:none;
}

.world-map{
  width:100%;
  display:block;
  filter:grayscale(100%) brightness(0.7) contrast(1.1);
  opacity:0.9;
}

/* route lines */
.route-lines{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

/* glowing dots */
.route-dot{
  position:absolute;
  width:8px;
  height:8px;
  background:#d8b15a;
  border-radius:50%;
  box-shadow:0 0 12px #d8b15a;
}

.dot-1{
  top:34%;
  left:23%;
}

.dot-2{
  top:31%;
  left:50%;
}

.dot-3{
  top:36%;
  left:75%;
}

.dot-4{
  top:63%;
  left:56%;
}

/* Responsive */
@media(max-width:991px){

  .section-title{
    font-size:32px;
  }

  .map-frame{
    margin-top:10px;
  }

}
  
   .welcome-section{
      position:relative;
      overflow:hidden;
      padding:110px 0;
      background:#f7f7f5;
    }

    .welcome-image{
      position:relative;
      overflow:hidden;
      height:100%;
      min-height:620px;
    }

    .welcome-image img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:0.5s ease;
    }

    .welcome-image:hover img{
      transform:scale(1.04);
    }

    .experience-badge{
      position:absolute;
      right:35px;
      bottom:80px;
      background:rgba(17,17,17,0.92);
      color:#fff;
      padding:28px 34px;
      min-width:220px;
      border-left:4px solid var(--gold);
    }

    .experience-badge h2{
      font-size:4rem;
      line-height:1;
      font-weight:800;
      color:var(--gold);
      margin-bottom:10px;
    }

    .experience-badge p{
      margin:0;
      font-size:0.9rem;
      letter-spacing:2px;
      text-transform:uppercase;
      color:rgba(255,255,255,0.7);
    }

    /* CONTENT */

    .welcome-content{
      padding-left:70px;
    }

    .section-subtitle{
      color:var(--gold);
      font-size:0.75rem;
      text-transform:uppercase;
      letter-spacing:3px;
      font-weight:700;
      margin-bottom:20px;
    }

    .section-title{
      font-size:4.5rem;
      line-height:0.95;
      font-weight:800;
      color:var(--dark);
      margin-bottom:30px;
      text-transform:uppercase;
    }

    .section-desc{
      font-size:1rem;
      margin-bottom:25px;
      color:#5f5f5f;
    }


    .welcome-stats{
      border-top:1px solid var(--border);
      padding-top:35px;
      margin-top:10px;
    }

    .stat-box h3{
      font-size:3rem;
      line-height:1;
      color:var(--dark);
      font-weight:800;
      margin-bottom:10px;
    }

    .stat-box span{
      color:#666;
      text-transform:uppercase;
      letter-spacing:2px;
      font-size:0.75rem;
      font-weight:600;
    }


    /* RESPONSIVE */

    @media(max-width:1199px){

      .section-title{
        font-size:3.8rem;
      }

      .welcome-content{
        padding-left:40px;
      }

    }

    @media(max-width:991px){

      .welcome-section{
        padding:80px 0;
      }

      .welcome-content{
        padding-left:0;
        padding-top:50px;
      }

      .welcome-image{
        min-height:500px;
      }

      .section-title{
        font-size:3.2rem;
      }

    }

    @media(max-width:767px){

      .welcome-section{
        padding:60px 0;
      }

      .welcome-image{
        min-height:380px;
      }

      .experience-badge{
        left:20px;
        bottom:20px;
        padding:22px 25px;
        min-width:180px;
      }

      .experience-badge h2{
        font-size:3rem;
      }

      .section-title{
        font-size:2.5rem;
      }

      .section-desc{
        font-size:0.95rem;
        line-height:1.8;
      }

      .stat-box{
        margin-bottom:30px;
      }

      .stat-box h3{
        font-size:2.5rem;
      }

    }

/* ══ SECTION LABEL ══ */
    .section-label { font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 6px; }

    /* ══ MINERAL ASSETS ══ */
    .minerals-section { background: var(--light-gray); padding: 80px 0; }
    .minerals-section h2, h2 { font-size: 2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); margin-bottom: 36px; }
    .mineral-card { background: #fff; border: 1px solid var(--border); overflow: hidden; transition: box-shadow 0.25s; height: 100%; }
    .mineral-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); }
    .mineral-card .card-img-placeholder { width: 100%; height: 160px; background: var(--mid); display: flex; align-items: center; justify-content: center; }
    .mineral-card .card-img-placeholder i { font-size: 2rem; color: rgba(255,255,255,0.25); }
    .mineral-card .card-body { padding: 18px 20px 20px; }
    .mineral-card h5 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--dark); margin-bottom: 6px; }
    .mineral-card p { font-size: 0.77rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }
    .mineral-meta { display: flex; gap: 12px; font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 12px; }
    .mineral-meta span { color: var(--dark); }
.mineral-card img{ width: 100%;}
    /* ══ LEASING MODEL ══ */
    .leasing-section { padding: 80px 0; background: #fff; }
    .leasing-section h2 { font-size: 2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); margin-bottom: 14px; }
    .step-item { display: flex; gap: 20px; margin-bottom: 28px; }
    .step-num { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 800; color: rgba(0,0,0,0.07); line-height: 1; min-width: 48px; }
	.step-num2 { font-family: 'Barlow Condensed', sans-serif; font-size: 4rem; font-weight: 800; color:#c9a84c; line-height: 1; min-width: 48px; }
    .step-content h5 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--dark); margin-bottom: 4px; }
    .step-content p { line-height: 1.55; margin: 0; }

    /* ══ GLOBAL ARTERIES ══ */
    .arteries-section { background: var(--dark); padding: 80px 0; color: #fff; }
    .arteries-section h2 { font-size: 2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 16px; }
    .arteries-section p { color: rgba(255,255,255,0.55); line-height: 1.7; }
    .map-box { background: var(--dark2); border: 1px solid #333; min-height: 340px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
    .map-svg { width: 100%; opacity: 0.5; padding: 20px; }
    .map-cta { position: absolute; bottom: 24px; left: 24px; }

    /* ══ INDUSTRIAL INTEGRITY ══ */
    .integrity-section { padding: 80px 0; background: #fff; text-align: center; }
    .integrity-section h2 { font-size: 2rem; font-weight: 800; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
    .integrity-section .lead { color: var(--text-muted); max-width: 750px; margin: 0 auto 50px; line-height: 1.7; }
    .integrity-item { padding: 10px 24px; }
    .integrity-item .icon { font-size: 1.6rem; color: var(--primary); margin-bottom: 14px; }
    .integrity-item h5 { font-size: 0.92rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--dark); margin-bottom: 8px; }
    .integrity-item p { color: var(--text-muted); line-height: 1.6; margin: 0; }

    /* ══ PULSE ══ */
    .pulse-section { padding: 80px 0; background: var(--light-gray); }
    .pulse-img-placeholder { width: 100%; height: 340px; background: #222; display: flex; align-items: center; justify-content: center; }
    .pulse-content { padding: 20px 0 20px 40px; }
    @media (max-width: 991px) { .pulse-content { padding: 30px 0 0; } }
    .pulse-content .badge-tc { display: inline-block; background: var(--dark); color: var(--primary); font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; margin-bottom: 18px; }
    .pulse-content h3 { font-size: 1.6rem; font-weight: 800; text-transform: uppercase; color: var(--dark); margin-bottom: 12px; }
    .pulse-content p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
    .pulse-feature { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 0.8rem; color: var(--text-body); }
    .pulse-feature i { color: var(--primary); margin-top: 2px; font-size: 0.85rem; }

    /* ══ AUTHORITY ══ */
    .authority-section { padding: 80px 0; background: #fff; }
    .authority-section h2 { font-size: 2rem; font-weight: 800; text-transform: uppercase; color: var(--dark); line-height: 1.1; margin-bottom: 16px; }
    .authority-section p {color: var(--text-muted); line-height: 1.7; }
    .authority-stat .val { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; color: var(--dark); }
    .authority-stat .lbl { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
    .quote-box { background: var(--green); color: #fff; padding: 36px 32px; height: 100%; border-radius: 36px; }
    .quote-box blockquote { font-size: 1.5rem; line-height: 1.7; color: rgba(255,255,255,0.8); border: none; padding: 0; margin-bottom: 22px; }
    .author-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--mid); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: rgba(255,255,255,0.3); }
    .author-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #fff; }
    .author-title { color: rgba(255,255,255,0.7); letter-spacing: 1px; text-transform: uppercase; }

    /* ══ MARKET ══ */
    .market-section { padding: 80px 0; background: var(--light-gray); }
    .market-section h2 { font-size: 2rem; font-weight: 800; text-transform: uppercase; color: var(--dark); margin-bottom: 0; }
    .all-reports { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--dark); text-decoration: none; border-bottom: 1px solid var(--dark); }
    .all-reports:hover { color: var(--primary); border-color: var(--primary); }
    .report-card { background: #fff; border: 1px solid var(--border); padding: 24px 22px; height: 100%; }
    .report-card .date { letter-spacing: 1.5px; text-transform: uppercase; color: var(--primary); font-weight: 700; margin-bottom: 10px; }
    .report-card h5 { font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: 10px; }
    .report-card p {  color: var(--text-muted); line-height: 1.55; margin-bottom: 18px; }
    .report-link { letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; color: var(--dark); text-decoration: none; border-bottom: 1px solid var(--dark); }
    .report-link:hover { color: var(--primary); border-color: var(--primary); }

    /* ══ CTA ══ */
    .cta-section { background: var(--dark); padding: 90px 0; text-align: center; }
    .cta-section h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; text-transform: uppercase; color: #fff; letter-spacing: 1px; margin-bottom: 14px; }
    .cta-section p { font-size: 1.2rem; color: rgba(255,255,255,0.55); max-width: 750px; margin: 0 auto 32px; line-height: 1.7; }

    /* ══ FOOTER ══ */
    .footer-main { background: var(--dark); border-top: 1px solid #2a2a2a; padding: 52px 0 36px; }
    .footer-brand { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.1rem; letter-spacing: 2px; color: #fff; text-transform: uppercase; margin-bottom: 12px; }
    .footer-desc {  color: rgba(255,255,255,0.55); line-height: 1.65; }
    .footer-heading {font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 9px; }
    .footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; }
    .footer-links a:hover { color: var(--primary); }
    .footer-bottom { background: #0d0d0d; padding: 16px 0; }
    .footer-bottom p, .footer-bottom p a { color: rgba(255,255,255,0.55); margin: 0; }
    .social-links a { color: rgba(255,255,255,0.35); font-size: 0.9rem; margin-left: 14px; text-decoration: none; }
    .social-links a:hover { color: var(--primary); }

    /* ══ PROGRESS BAR ══ */
    .slider-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: var(--primary);
      z-index: 10;
      width: 0%;
      transition: width linear;
    }
        .grid-wrapper {
      width: 100%;
      margin: 0 auto;
    }
 
    /* ── Commodity image card ── */
    .commodity-card {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      width: 100%;
      /* aspect-ratio drives height responsively */
      aspect-ratio: 16 / 9;
      cursor: pointer;
      display: block;
    }
 
    /* On md+ the top row cards are taller */
    @media (min-width: 768px) {
      .commodity-card.card-top   { aspect-ratio: 4 / 3; }
      .commodity-card.card-bottom { aspect-ratio: 1 / 1; }
    }
 
    /* On lg+ stretch even more */
    @media (min-width: 992px) {
      .commodity-card.card-top   { aspect-ratio: 16 / 9; max-height: 220px; }
      .commodity-card.card-bottom { aspect-ratio: 4 / 3; min-height: 500px;}
    }
 
    .commodity-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease, filter 0.4s ease;
      filter: brightness(0.72) saturate(0.85);
    }
 
    .commodity-card:hover img {
      transform: scale(1.06);
      filter: brightness(0.9) saturate(1.1);
    }
 
    .card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1rem 1.25rem 1.25rem;
      background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
    }
 
    .card-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.3rem, 3vw, 1.8rem);
      letter-spacing: 0.08em;
      margin-bottom: 0.25rem;
      color: #fff;
      line-height: 1;
    }
 
    .card-desc {
      color: var(--text-muted);
      line-height: 1.5;
      max-width: 280px;
      margin: 0;
    }
 
    /* ── CTA Panel ── */
    .cta-panel {
      background-color: #0e0e0e;
      border: 1px solid #2a2a2a;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(1.5rem, 4vw, 2.25rem);
      /* match sibling card heights */
      min-height: 200px;
      height: 100%;
    }
 
    .eyebrow {
      font-size: clamp(0.55rem, 1.1vw, 0.65rem);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--primary-accent);
      margin-bottom: 0.6rem;
    }
 
    .cta-heading {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      letter-spacing: 0.04em;
      line-height: 1.05;
      color: var(--text-primary);
      margin-bottom: 0.75rem;
    }
 
    .cta-desc {
      font-size: clamp(0.72rem, 1.3vw, 0.8rem);
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 1.4rem;
      max-width: 260px;
    }
 
    .btn-trading {
      display: inline-block;
      align-self: flex-start;
      border: 1px solid var(--primary-accent);
      color: var(--primary-accent);
      background: transparent;
      font-family: 'Barlow', sans-serif;
      font-size: clamp(0.58rem, 1.1vw, 0.66rem);
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.6rem 1.1rem;
      transition: background 0.22s, color 0.22s;
      text-decoration: none;
      white-space: nowrap;
    }
 
    .btn-trading:hover {
      background: var(--primary-accent);
      color: #000;
    }
 
    /* ── Mobile: uniform card heights ── */
    @media (max-width: 575px) {
      .commodity-card,
      .commodity-card.card-top,
      .commodity-card.card-bottom {
        aspect-ratio: 16 / 9;
      }
      .cta-panel { min-height: 180px; padding: 1.4rem; }
      .cta-desc { max-width: 100%; }
      .btn-trading { width: 100%; text-align: center; }
    }
 
    /* ── Small tablet (sm): 2-col grid ── */
    @media (min-width: 576px) and (max-width: 767px) {
      .commodity-card { aspect-ratio: 4 / 3; }
    }
     .stats-bar {
      width: 100%;
      background-color: var(--primary);
      padding: clamp(0.2rem, 3vw, .75rem) 0;
    }
 
    .stats-inner {
      margin: 0 auto;
      padding: 0 1.5rem;
    }
 
    /* ── Stat item ── */
    .stat-item {
      text-align: center;
      padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 3vw, 2rem);
      position: relative;
    }
 
    /* Vertical divider between items */
    .stat-item + .stat-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 15%;
      height: 70%;
      width: 1px;
      background: var(--divider);
    }
 
    /* Remove divider on mobile (stacked) */
    @media (max-width: 575px) {
      .stat-item + .stat-item::before {
        display: none;
      }
      /* Horizontal rule between stacked items */
      .stat-item + .stat-item {
        border-top: 1px solid var(--divider);
        margin-top: 0.25rem;
        padding-top: 1rem;
      }
    }
 
    .stat-value {
      font-family: 'Bebas Neue', sans-serif;
      font-weight: bold;
      font-size: clamp(1.8rem, 5vw, 1.8rem);
      letter-spacing: 0.06em;
      color: var(--primary-accent);
      line-height: 1;
      margin-bottom: 0.4rem;
      /* subtle glow */
      text-shadow: 0 0 28px rgba(201,168,76,0.25);
    }
 
    .stat-label {
      font-size: clamp(0.6rem, 1.2vw, 0.8rem);
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color:#fff;
    }
 
    /* count-up animation trigger */
    .stat-value.animate {
      animation: fadeUp 0.6s ease both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .stat-item:nth-child(2) .stat-value { animation-delay: 0.1s; }
    .stat-item:nth-child(3) .stat-value { animation-delay: 0.2s; }

     .hero {
      position: relative;
      min-height: 480px;
      background:
        linear-gradient(to bottom, rgba(14,14,14,.45) 0%, rgba(14,14,14,.75) 70%, var(--dark) 100%),
        url('https://images.unsplash.com/photo-1578496479914-7ef3b0193be3?w=1600&q=80') center/cover no-repeat;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 3rem 0 2.5rem;
    }
    .hero-eyebrow {
      letter-spacing: 3px;
      color: var(--primary);
      text-transform: uppercase;
      margin-bottom: .5rem;
    }
    .hero-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: clamp(2.8rem, 6vw, 5rem);
      line-height: 1;
      text-transform: uppercase;
      color: var(--white);
    }
    .hero-sub {
      max-width: 600px;
      color: var(--white);
      margin: 2rem 0;
      line-height: 1.5;
    }
    .btn-hero-primary {
      background: var(--primary);
      color: #000;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 700;
      border: none;
      padding: 10px 20px;
      border-radius: 2px;
      cursor: pointer;
      transition: background .2s;
    }
    .btn-hero-primary:hover { background: var(--primary-light); }
    .btn-hero-outline {
      background: transparent;
      color: var(--text);
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
      border: 1px solid var(--border);
      padding: 9px 20px;
      border-radius: 2px;
      cursor: pointer;
      transition: all .2s;
    }
    .btn-hero-outline:hover { border-color: var(--primary); color: var(--primary); }
 
    .hero-stats {
      margin-top: 2.5rem;
      display: flex;
      gap: 3rem;
    }
    .hero-stat-val {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.6rem;
      color: var(--white);
      letter-spacing: 1px;
    }
    .hero-stat-label {
      font-family: 'Share Tech Mono', monospace;
      font-size: 9px;
      letter-spacing: 2px;
      color: var(--muted);
      text-transform: uppercase;
    }
 
    /* ── SECTION LABELS ── */

    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      text-transform: uppercase;
      color: var(--white);
      letter-spacing: 1px;
    }
 
    /* ── MINERAL SHOWROOM ── */
    .showroom { background: var(--dark2); padding: 3rem 0; }
    .showroom-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: .5rem;
      margin-bottom: 1.5rem;
    }
    .live-badge {
      font-family: 'Share Tech Mono', monospace;
      font-size: 9px;
      letter-spacing: 2px;
      color: var(--muted);
    }
    .live-dot { width:7px; height:7px; border-radius:50%; background: var(--green); display:inline-block; margin-right:5px; animation: pulse 1.5s infinite; }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
 
    .mineral-card {
      background: var(--dark3);
      border: 1px solid var(--border);
      border-radius: 3px;
      overflow: hidden;
      transition: border-color .25s, transform .25s;
    }
    .mineral-card:hover { border-color: var(--primary); transform: translateY(-3px); }
    .mineral-img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      display: block;
      background: var(--mid);
    }
    .mineral-img-placeholder {
      width: 100%;
      height: 220px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
    }
    .mineral-tag {
      font-family: 'Share Tech Mono', monospace;
      font-size: 9px;
      letter-spacing: 1.5px;
      color: #000;
      background: var(--primary);
      padding: 2px 7px;
      border-radius: 1px;
      display: inline-block;
    }
    .mineral-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--dark);
      letter-spacing: .5px;
    }
    .mineral-change-up { color: var(--green); font-size: 11px; font-weight: 600; }
    .mineral-change-dn { color: var(--red);   font-size: 11px; font-weight: 600; }
    .mineral-meta {
      font-size: 14px;
      color: var(--muted);
      letter-spacing: 1px;
      margin-top: .1rem;
    }
    .mineral-price {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      color: var(--primary);
      margin-top: .4rem;
    }
    .mineral-unit { font-size: 10px; color: var(--muted); font-family: 'Share Tech Mono', monospace; }
    .mineral-body { padding: .75rem; }
 
    /* ── EXTRACTION INTELLIGENCE ── */
    .extraction { background: var(--dark3); padding: 4rem 0; }
    .extraction-badge {
      background: var(--primary);
      color: #000;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 3.5rem;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .extraction-panel {
      background: var(--dark);
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 1.5rem;
      position: relative;
      overflow: hidden;
    }
    .extraction-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(200,168,75,.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .quote-block {
      border-left: 2px solid var(--primary);
      padding-left: 1rem;
      margin-top: 1rem;
      font-size: 12px;
      font-style: italic;
      color: var(--muted);
    }
    .feature-icon {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1rem;
    }
    .feature-title {
      font-weight: 700;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: .5px;
    }
    .feature-desc { color: var(--muted); }
 
    /* ── SUPPLY CHAIN ── */
    .supply { background: var(--dark2); padding: 4rem 0; }
    .map-wrapper {
      background: var(--dark3);
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 1rem;
      position: relative;
      min-height: 300px;
      overflow: hidden;
    }
    .map-svg { width: 100%; opacity: .5; filter: brightness(0.7) sepia(.3) hue-rotate(180deg); }
    .map-overlay-card {
      background: rgba(14,14,14,.9);
      border: 1px solid var(--primary);
      border-radius: 2px;
      padding: .5rem .75rem;
      position: absolute;
      font-family: 'Share Tech Mono', monospace;
      font-size: 10px;
      color: var(--text);
      min-width: 140px;
    }
    .map-overlay-card .label { color: var(--primary); font-size: 9px; letter-spacing: 2px; }
    .oc-left  { top: 12%; left: 2%; }
    .oc-right { bottom: 20%; right: 2%; }
    .map-legend { display: flex; gap: 1.5rem; justify-content: center; margin-top: 1rem; flex-wrap: wrap; }
    .legend-item { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--muted); display: flex; align-items: center; gap: .4rem; }
    .legend-dot { width: 8px; height: 8px; border-radius: 50%; }
 
    /* ── COMPLIANCE ── */
    .compliance { background: var(--dark); padding: 4rem 0; }
    .compliance-card {
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.5rem;
      height: 100%;
      transition: border-color .25s;
    }
    .compliance-card:hover { border-color: var(--primary); }
    .compliance-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1.2rem;
      margin-bottom: .75rem;
    }
    .compliance-title {
      font-weight: 700;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: .4rem;
    }
 
    /* ── TECH SPECS ── */
    .techspecs { background: var(--dark2); padding: 4rem 0; }
    .specs-table {
      width: 100%;
      border-collapse: collapse;
    }
    .specs-table thead tr th {
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--dark);
      padding: .6rem 1rem;
      border-bottom: 1px solid var(--border);
      font-weight: 400;
      background: var(--dark3);
    }
    .specs-table tbody tr {
      border-bottom: 1px solid var(--border);
      transition: background .15s;
    }
    .specs-table tbody tr:hover { background: var(--dark3); }
    .specs-table tbody tr td {
      padding: .9rem 1rem;
      color: var(--text);
    }
    .specs-table tbody tr td:first-child {

    }
    .btn-download {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: 9px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 2px;
      cursor: pointer;
      transition: all .2s;
      white-space: nowrap;
    }
    .btn-download:hover { border-color: var(--primary); color: var(--primary); }
 
    /* ── INSTITUTIONAL INQUIRY ── */
    .inquiry { background: var(--dark3); padding: 4rem 0; }
    .inquiry-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: clamp(1.5rem, 3vw, 2rem);
      text-transform: uppercase;
      color: var(--white);
      letter-spacing: 1px;
    }
    .inquiry-sub { color: var(--muted); font-size: 12px; max-width: 400px; margin-top: .4rem; }
    .contact-item { display: flex; align-items: center; gap: .6rem; font-size: 13px; color: var(--text); margin-bottom: .5rem; }
    .contact-item i { color: var(--primary); }
 
  
 
    /* ── RESPONSIVE ── */
    @media (max-width: 991px) {
      .hero-stats { gap: 2rem; }
    }
    @media (max-width: 767px) {
      .hero { min-height: 380px; }
      .showroom-header { flex-direction: column; align-items: flex-start; }
      .hero-stats { gap: 1.5rem; }
    }
    @media (max-width: 575px) {
      .hero-stats { flex-direction: column; gap: .75rem; }
      .specs-table thead { display: none; }
      .specs-table tbody tr td { display: block; }
    }





#properties {
   color: #222729; 
}

#properties h2 {
    font-size: 46px;
    font-weight: 400;
    letter-spacing: .1em;
}

#properties p {
    font-size: 20px;
    font-weight: 200;
    line-height: 1.8;
}

.property-container {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.property-container img {
    max-width: 100%;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    height: 100%;
}

.property-container:hover img {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.property-title, .property-title-sm {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #ffffff;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
}

.property-title h3 {
    font-size: 36px;
}

.property-title-sm h3 {
    font-size: 20px;
}

.property-title-sm span {
    font-size: 12px;
}

.property-button, .property-button-sm {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 9000;
}
.property-container a{ text-decoration: none; color:#fff;}
.property-button-sm a {
    font-size: 12px;
}

.property-icon {
    position: absolute;
    bottom: 16px;
    right: 30px;
    z-index: 9000;
}

.property-icon i {
    font-size: 22px;
    color: #ffffff;
}



    .inner-hero {
      position: relative;
      min-height: 420px;
      background:
        linear-gradient(to right, rgba(14,14,14,.92) 40%, rgba(14,14,14,.55) 100%),
        url('https://images.unsplash.com/photo-1578496479914-7ef3b0193be3?w=1600&q=80') center/cover no-repeat;
      display: flex;
      align-items: flex-end;
      padding: 4rem 0 3.5rem;
    }
    .inner-hero.minerals-hero{background:
        linear-gradient(to right, rgba(14,14,14,.92) 40%, rgba(14,14,14,.55) 100%),
        url('../../images/minerals-hero.png') center/cover no-repeat !important; }
     .inner-hero.hero-contact{background:
        linear-gradient(to right, rgba(14,14,14,.92) 40%, rgba(14,14,14,.55) 100%),
        url('../../images/contact.png') center/cover no-repeat !important; }  
     .inner-hero.hero-career{background:
        linear-gradient(to right, rgba(14,14,14,.92) 40%, rgba(14,14,14,.55) 100%),
        url('../../images/career.png') center/cover no-repeat !important; }   
      .inner-hero.hero-globalTrade{background:
        linear-gradient(to right, rgba(14,14,14,.92) 40%, rgba(14,14,14,.55) 100%),
        url('../../images/hero-globalTrade.png') center/cover no-repeat !important; }
    .inner-hero.hero-leasing{background:
        linear-gradient(to right, rgba(14,14,14,.92) 40%, rgba(14,14,14,.55) 100%),
        url('../../images/leasing.png') center/cover no-repeat !important; }
    .inner-hero.realestate{background:
        linear-gradient(to right, rgba(14,14,14,.92) 40%, rgba(14,14,14,.55) 100%),
        url('../../images/hero_realestate.jpg') center/cover no-repeat !important; }
    .inner-hero-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: clamp(2.6rem, 5.5vw, 4.8rem);
      line-height: .95;
      text-transform: uppercase;
      color: var(--white);
      letter-spacing: 1px;
      margin-bottom: 1.1rem;
    }
    .inner-hero-sub {
      max-width: 440px;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 1.6rem;
    }
    .inner-hero-btn {
      background: var(--primary);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 12px 26px;
      border-radius: 0;
      border: none;
      text-decoration: none;
      display: inline-block;
    }
    .inner-hero-btn:hover { background: var(--primary-light); color: #fff; }
 
    /* ── LABELS / TITLES ── */
    .section-eyebrow {
      font-family: 'Share Tech Mono', monospace;
      letter-spacing: 3px;
      color: var(--dark);
      text-transform: uppercase;
      margin-bottom: .3rem;
    }
    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--white);
      letter-spacing: 1px;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      line-height: 1.05;
    }
 
    /* ── DIVIDER ── */
    .tc-divider { border: none; border-top: 1px solid var(--border); margin: 0; }
 
    /* ── INDUSTRIAL FIDELITY ── */
    .fidelity { background: var(--white); }
    .fidelity .section-eyebrow { color: #000; }
    .fidelity .section-title { color: #0e0e0e; }
    .fidelity-body { color: #444; line-height: 1.7; }
    .fidelity-divider { width: 3px; height: 100%; background: var(--primary); border-radius: 2px; min-height: 100px; flex-shrink: 0; }
    .fidelity-stat-val {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 2.2rem;
      color: #0e0e0e;
      letter-spacing: .5px;
    }
    .fidelity-stat-label {
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    .mineral-photo {
      width: 100%;
      height: 340px;
      object-fit: cover;
      border-radius: 2px;
      filter: grayscale(100%) contrast(1.1);
      display: block;
      background: #ccc;
    }
    .mineral-photo-placeholder {
      width: 100%;
      height: 340px;
      background: linear-gradient(135deg,#2a2a2a,var(--dark));
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
    }
 
    /* ── TIMELINE ── */
    .timeline-sec { background: var(--dark); padding: 5rem 0; }
    .timeline-wrap { position: relative; display: flex; gap: 0; }
    .timeline-wrap::before {
      content: '';
      position: absolute;
      top: 10px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--border);
      z-index: 0;
    }
    .timeline-item { flex: 1; position: relative; padding-top: 2rem; padding-right: 1rem; }
    .timeline-dot {
      width: 12px;
      height: 12px;
      border-radius: 2px;
      background: var(--border);
      position: absolute;
      top: 4px;
      left: 0;
      z-index: 1;
    }
    .timeline-item.active .timeline-dot { background: var(--primary); }
    .timeline-year {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--muted);
      margin-bottom: .2rem;
    }
    .timeline-item.active .timeline-year { color: var(--primary); }
    .timeline-item-title {
      font-family: 'Barlow Condensed', sans-serif;
      color: #fff;
      font-weight: 700;
      font-size: 1.05rem;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: .3rem;
    }
    .timeline-item.active .timeline-item-title { color: var(--primary); }
    .timeline-desc {color: #fff; line-height: 1.55; }
 
    /* ── EXECUTIVE ── */
    .executive { background:var(--white); padding: 5rem 0; }
    .exec-meta {
      font-family: 'Share Tech Mono', monospace;
      font-size: 9px;
      letter-spacing: 2px;
      color: var(--muted);
      text-transform: uppercase;
      text-align: right;
    }
    .exec-card {
      background: var(--dark3);
      border: 1px solid var(--border);
      border-radius: 3px;
      overflow: hidden;
      transition: border-color .25s, transform .25s;
      height: 100%;
    }
    .exec-card:hover { border-color: var(--primary); transform: translateY(-4px); }
    .exec-photo-wrap {
      width: 100%;
      aspect-ratio: 3/4;
      overflow: hidden;
      background: var(--mid);
    }
    .exec-photo-placeholder {
      width: 100%;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      font-size: 5rem;
      padding-bottom: 1rem;
      filter: grayscale(100%);
    }
    .exec-photo-placeholder img{ max-height: 450px;}
    .exec-photo-placeholder.ceo { background: linear-gradient(180deg,#1a1a1a 0%,#2e2e2e 100%); }
    .exec-photo-placeholder.coo { background: linear-gradient(180deg,#141414 0%,#262626 100%); }
    .exec-photo-placeholder.cto { background: linear-gradient(180deg,#111 0%,#1e1e1e 100%); }
    .exec-body { padding: 1rem; border-top: 1px solid var(--border); }
    .exec-role {
      letter-spacing: 2.5px;
      color: var(--dark);
      text-transform: uppercase;
      margin-bottom: .2rem;
    }
    .exec-name {
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--dark);
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: .3rem;
    }
    .exec-desc {color: var(--muted); line-height: 1.55; }
 
    /* ── GLOBAL FOOTPRINT ── */
    .footprint { background: var(--dark); padding: 5rem 0; }
    .footprint-stat {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: .65rem 0;
      border-bottom: 1px solid var(--border);
    }
    .footprint-stat:first-child { border-top: 1px solid var(--border); }
    .footprint-stat-label {color: var(--dark); }
    .footprint-stat-val {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      color: var(--dark);
    }
    .map-panel {
      background: var(--dark3);
      border: 1px solid var(--border);
      border-radius: 3px;
      overflow: hidden;
      position: relative;
    }
    .status-label {
      font-family: 'Share Tech Mono', monospace;
      font-size: 9px;
      letter-spacing: 2px;
      color: var(--muted);
    }
    .status-val { color: var(--green); font-family: 'Share Tech Mono', monospace; font-size: 10px; }
    .map-svg-fp { width: 100%; opacity: .45; filter: brightness(.65) sepia(.2) hue-rotate(180deg); }
 
    /* ── DECARBONIZING ── */
    .decarb { background: var(--light-bg); padding: 5rem 0; }
    .decarb-inner {
      background: #fff;
      border-radius: 4px;
      padding: 3rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 40px rgba(0,0,0,.06);
    }
    .decarb-inner::after {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 200px; height: 100%;
      background: var(--light-bg);
      clip-path: polygon(30% 0,100% 0,100% 100%,0 100%);
    }
    .decarb-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      font-family: 'Share Tech Mono', monospace;
      font-size: 9px;
      letter-spacing: 2px;
      color: var(--primary);
      text-transform: uppercase;
      margin-bottom: .5rem;
    }
    .decarb-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      text-transform: uppercase;
      color: #0e0e0e;
      letter-spacing: 1px;
      margin-bottom: .8rem;
    }
    .decarb-body { color: #555; line-height: 1.7; max-width: 540px; margin-bottom: 1.5rem; }
    .decarb-feature {
      display: flex;
      align-items: flex-start;
      gap: .7rem;
      margin-bottom: .5rem;
    }
    .decarb-icon {
      width: 32px; height: 32px;
      border: 1px solid var(--primary);
      border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      color: var(--primary); font-size: .9rem; flex-shrink: 0;
    }
    .decarb-feat-title {font-weight: 600; color: #1a1a1a; }
    .decarb-feat-desc {color: #777; }
 
    /* ── SECURE YOUR STAKE ── */
    .stake { background: var(--dark3); padding: 6rem 0; text-align: center; }
    .stake-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: clamp(2.4rem, 5vw, 4.5rem);
      text-transform: uppercase;
      color: var(--white);
      letter-spacing: 2px;
      margin-bottom: .8rem;
    }
    .stake-sub { color: var(--muted); font-size: 13px; max-width: 460px; margin: 0 auto 2rem; }
       .section-space {
      padding: 90px 0;
    }

    .section-title {
      font-size: 2.6rem;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--dark);
      margin-bottom: 20px;
    }

    .section-subtitle {
      letter-spacing: 3px;
      color: var(--primary);
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .hero {
      position: relative;
      min-height: 90vh;
      background:
      linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
      url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
      display: flex;
      align-items: center;
      color: #fff;
    }

    .hero-content {
      max-width: 650px;
    }

    .hero h1 {
      font-size: 5rem;
      line-height: .95;
      font-weight: 800;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .hero p {
      font-size: 1rem;
      line-height: 1.8;
      color: rgba(255,255,255,.8);
      margin-bottom: 35px;
    }

    .hero-btns {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .btn-outline-light-custom {
      border: 1px solid rgba(255,255,255,.3);
      color: #fff;
      padding: 14px 30px;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: .8rem;
      font-weight: 700;
    }

    .btn-outline-light-custom:hover {
      background: #fff;
      color: #000;
    }

    .asset-card {
      border: 1px solid var(--border);
      background: #fff;
      transition: .3s;
      height: 100%;
    }

    .asset-card:hover {
      transform: translateY(-5px);
    }

    .asset-card img {
      width: 100%;
      height: 230px;
      object-fit: cover;
    }

    .asset-body {
      padding: 20px;
    }

    .asset-location {
      font-size: .7rem;
      text-transform: uppercase;
      color: var(--primary);
      letter-spacing: 2px;
      margin-bottom: 10px;
    }

    .asset-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 20px;
    }

    .dark-section {
      background: var(--dark-bg);
      color: #fff;
    }

    .dark-section .section-title {
      color: #fff;
    }

    .feature-box {
      padding: 25px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .feature-box h5 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .feature-box p {
      color: rgba(255,255,255,.65);
      margin: 0;
      line-height: 1.7;
    }

    .map-box {
      background: #ececec;
      min-height: 400px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #777;
      text-transform: uppercase;
      letter-spacing: 3px;
      font-weight: 700;
    }

    .smart-grid {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 20px;
      margin-top: 30px;
    }

    .smart-item {
      border: 1px solid var(--border);
      padding: 25px;
      background: #fff;
    }

    .investment-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      padding: 40px;
    }

    .investment-card h2 {
      font-size: 4rem;
      color: #fff;
      font-weight: 800;
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 30px;
      margin-top: 50px;
    }

    .timeline-card {
      border-top: 2px solid var(--primary);
      padding-top: 20px;
    }

    .timeline-card h5 {
      font-size: .8rem;
      letter-spacing: 2px;
      color: var(--primary);
      text-transform: uppercase;
      margin-bottom: 15px;
    }

    .timeline-card h3 {
      font-size: 1.8rem;
      font-weight: 700;
    }

    .contact-box {
      background: #fff;
      padding: 40px;
    }

    .form-control,
    .form-select {
      border-radius: 0;
      min-height: 50px;
      border: 1px solid var(--border);
    }
     @media(max-width:991px){

      .hero h1{
        font-size:3.3rem;
      }

      .timeline{
        grid-template-columns:repeat(2,1fr);
      }

      .section-space{
        padding:70px 0;
      }
    }

    @media(max-width:767px){

      .hero{
        min-height:auto;
        padding:100px 0;
      }

      .hero h1{
        font-size:2.5rem;
      }

      .section-title{
        font-size:2rem;
      }

      .timeline{
        grid-template-columns:1fr;
      }

      .smart-grid{
        grid-template-columns:1fr;
      }

      .investment-card{
        margin-top:40px;
      }
    }

     .framework-card {
      border: 1px solid var(--border);
      padding: 30px;
      background: #fff;
      height: 100%;
      transition: .3s;
      border-radius: 12px;
    }

    .framework-card:hover {
      transform: translateY(-6px);
      border-color: var(--primary);
    }

    .framework-number {
      color: var(--primary);
      font-size: 2rem;
      letter-spacing: 2px;
      font-weight: 900;
      margin-bottom: 20px;
    }

    .framework-card h4 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .asset-large {
      position: relative;
      overflow: hidden;
      min-height: 450px;
      max-height: 514px;
    }

    .asset-large img,
    .asset-small img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .5s;
    }

    .asset-large:hover img,
    .asset-small:hover img {
      transform: scale(1.08);
    }

    .asset-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
      display: flex;
      align-items: flex-end;
      padding: 35px;
    }

    .asset-overlay h3 {
      color: #fff;
      font-size: 3rem;
      font-weight: 800;
      margin: 0;
    }

    .asset-small {
      position: relative;
      overflow: hidden;
      height: 245px;
    }

    .asset-small .asset-overlay h4 {
      color: #fff;
      font-size: 1.6rem;
      font-weight: 700;
      margin: 0;
    }

    .dark-section {
      background: var(--dark-bg);
      color: #fff;
    }

    .dark-section .section-title {
      color: #fff;
    }

    .monitor-box {
      border: 1px solid rgba(255,255,255,.08);
      background: #050505;
      padding: 40px;
    }

    .monitor-grid {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 25px;
      margin-top: 30px;
    }

    .monitor-grid h2 {
      font-size: 2.2rem;
      color: var(--primary);
      margin-bottom: 5px;
    }

    .legal-box {
      border: 1px solid var(--border);
      padding: 35px 25px;
      text-align: center;
      height: 100%;
      background: #fff;
    }

    .legal-box h5 {
      font-size: 1.3rem;
      font-weight: 700;
    }

    .stats-box {
      background: #fff;
      padding: 30px;
      border-left: 3px solid var(--primary);
      height: 100%;
    }

    .stats-box h2 {
      font-size: 4rem;
      font-weight: 800;
      margin: 0;
    }

    .chart-box {
      border: 1px solid var(--border);
      padding: 40px;
      background: #fff;
      margin-top: 40px;
    }

    .chart-bars {
      display: flex;
      align-items: flex-end;
      gap: 14px;
      height: 320px;
      margin-top: 30px;
    }

    .chart-group {
      display: flex;
      gap: 5px;
      flex: 1;
      align-items: flex-end;
    }

    .bar-gold {
      background: #8c7209;
      width: 50%;
    }

    .bar-gray {
      background: #888;
      width: 50%;
    }

    .brand-strip {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      justify-content: center;
      padding-top: 40px;
      color: #bbb;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .consult-section {
      background: linear-gradient(to right, #111, #1a1a1a);
      color: #fff;
    }

    .consult-form {
      background: #fff;
      padding: 50px;
      color: var(--dark);
    }
   .contact-card {
      border: 1px solid var(--border);
      padding: 40px;
      height: 100%;
      transition: .3s;
      background: #fff;
    }

    .contact-card:hover {
      transform: translateY(-6px);
      border-color: var(--primary);
    }

    .contact-card h4 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .contact-card p {
      margin-bottom: 10px;
      color: var(--text-muted);
    }

    /* ===== FORM ===== */

    .contact-form-wrap {
      background: var(--light-gray);
      padding: 60px;
    }

    .form-control,
    .form-select {
      border-radius: 0;
      min-height: 56px;
      border: 1px solid var(--border);
      padding-left: 18px;
      box-shadow: none !important;
    }

    textarea.form-control {
      min-height: 160px;
      padding-top: 16px;
    }

    .btn-submit {
      background: var(--dark);
      color: #fff;
      border: none;
      padding: 16px 40px;
      font-size: .8rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 700;
      transition: .3s;
    }

    .btn-submit:hover {
      background: var(--primary);
    }

    /* ===== MAP ===== */

    .map-box {
      height: 450px;
      overflow: hidden;
    }

    .map-box iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    .value-card {
      border: 1px solid var(--border);
      padding: 40px;
      height: 100%;
      transition: .3s;
      background: #fff;
    }

    .value-card:hover {
      transform: translateY(-6px);
      border-color: var(--primary);
    }

    .value-icon {
      width: 60px;
      height: 60px;
      background: rgba(201,168,76,.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1.5rem;
      margin-bottom: 25px;
    }

    .value-card h4 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    /* ===== STATS ===== */

    .stats-section {
      background: var(--dark-bg);
      color: #fff;
    }

    .stats-box {
      text-align: center;
      padding: 20px;
    }

    .stats-box h2 {
      font-size: 4rem;
      color: var(--primary);
      font-weight: 800;
      margin-bottom: 10px;
    }

    .stats-box p {
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: .75rem;
      color: rgba(255,255,255,.65);
      margin: 0;
    }

    /* ===== JOBS ===== */

    .job-card {
      border: 1px solid var(--border);
      padding: 35px;
      margin-bottom: 25px;
      transition: .3s;
      background: #fff;
    }

    .job-card:hover {
      border-color: var(--primary);
      transform: translateY(-4px);
    }

    .job-type {
      color: var(--primary);
      text-transform: uppercase;
      font-size: .72rem;
      letter-spacing: 2px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .job-card h3 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .job-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 25px;
      color: var(--text-muted);
      font-size: .92rem;
    }

    .btn-apply {
      background: var(--dark);
      color: #fff;
      text-decoration: none;
      padding: 12px 26px;
      text-transform: uppercase;
      font-size: .72rem;
      letter-spacing: 2px;
      font-weight: 700;
      display: inline-block;
      transition: .3s;
    }

    .btn-apply:hover {
      background: var(--primary);
      color: #fff;
    }

    /* ===== CULTURE ===== */

    .culture-section {
      background: var(--light-gray);
    }

    .culture-img {
      overflow: hidden;
      height: 100%;
    }

    .culture-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .culture-content {
      padding: 60px;
    }
     .maritime-section {
      min-height: 100vh;
      overflow: hidden;
    }

    .maritime-row {
      min-height: 100vh;
    }

    /* LEFT IMAGE */

    .maritime-image {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
    }

    .maritime-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* RIGHT CONTENT */

    .maritime-content {
      background: #f5f5f5;
      display: flex;
      align-items: center;
      padding:80px;
    }
    .small-label {
      font-size: 0.72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 25px;
    }

    .main-title {
      font-size: 4rem;
      line-height: 0.95;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 45px;
      color: #202020;
    }

    .info-block {
      margin-bottom: 32px;
      padding-bottom: 28px;
      border-bottom: 1px solid var(--border);
    }

    .info-label {
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 12px;
      font-weight: 600;
    }

    .info-value {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #2b2b2b;
    }

    .tracking-status {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .status-dot {
      width: 10px;
      height: 10px;
      background: var(--green);
      border-radius: 50%;
      margin-top: 4px;
    }

    .description {
      color: #555;
      line-height: 1.9;
      font-size: 0.95rem;
      margin: 35px 0 45px;
    }

    .btn-manifest {
      display: inline-block;
      background: #000;
      color: #fff;
      text-decoration: none;
      padding: 16px 34px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: 0.3s;
    }

    .btn-manifest:hover {
      background: var(--gold);
      color: #fff;
    }

    /* RESPONSIVE */

    @media (max-width: 1199px) {

      .main-title {
        font-size: 3.2rem;
      }

      .maritime-content {
        padding: 60px;
      }

    }

    @media (max-width: 991px) {

      .maritime-row {
        min-height: auto;
      }

      .maritime-image,
      .maritime-content {
        min-height: auto;
      }

      .maritime-image {
        height: 600px;
      }

      .maritime-content {
        padding: 70px 40px;
      }

      .content-inner {
        max-width: 100%;
      }

    }

    @media (max-width: 767px) {

      .maritime-image {
        height: 420px;
      }

      .maritime-content {
        padding: 50px 25px;
      }

      .main-title {
        font-size: 2.5rem;
      }

      .info-value {
        font-size: 1.6rem;
      }

      .description {
        font-size: 0.9rem;
      }

    }
    .transit-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 18px;
      align-items: stretch;
    }

    /* LEFT CARD */

    .main-transit-card {
      position: relative;
      overflow: hidden;
      min-height: 520px;
      background: #000;
    }

    .main-transit-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.5s ease;
      filter: grayscale(100%);
    }

    .main-transit-card:hover img {
      transform: scale(1.04);
    }

    .main-overlay {
      position: absolute;
      inset: 0;
      background:
      linear-gradient(to top,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.35) 45%,
      rgba(0,0,0,0.05) 100%);
    }

    .main-content {
      position: absolute;
      left: 32px;
      bottom: 30px;
      max-width: 520px;
      z-index: 2;
    }

    .small-label {
      color: var(--gold);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .main-title {
      color: #fff;
      font-size: 3rem;
      line-height: 1;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .main-desc {
      color: rgba(255,255,255,0.82);
      line-height: 1.8;
      font-size: 0.95rem;
      margin: 0;
    }

    /* RIGHT COLUMN */

    .side-column {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .service-card {
      flex: 1;
      padding: 42px 34px;
      border: 1px solid var(--border);
      background: #f3f3f3;
      transition: 0.35s ease;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .service-card.dark {
      background: #161616;
      border-color: #1f1f1f;
    }

    .service-card:hover {
      transform: translateY(-4px);
    }

    .service-icon {
      margin-bottom: 24px;
      color: var(--gold);
      width: 36px;
      height: 36px;
    }

    .service-icon svg {
      width: 100%;
      height: 100%;
      fill: currentColor;
    }

    .service-title {
      font-size: 2rem;
      line-height: 1;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 18px;
      color: #111;
    }

    .service-card.dark .service-title {
      color: #fff;
    }

    .service-desc {
      font-size: 0.95rem;
      line-height: 1.9;
      color: #555;
      margin: 0;
    }

    .service-card.dark .service-desc {
      color: rgba(255,255,255,0.75);
    }

    /* RESPONSIVE */

    @media (max-width: 1199px) {

      .main-title {
        font-size: 2.5rem;
      }

      .service-title {
        font-size: 1.7rem;
      }

    }

    @media (max-width: 991px) {

      .transit-grid {
        grid-template-columns: 1fr;
      }

      .main-transit-card {
        min-height: 480px;
      }

      .side-column {
        flex-direction: row;
      }

      .service-card {
        min-height: 260px;
      }

    }

    @media (max-width: 767px) {

      .transit-section {
        padding: 40px 0;
      }

      .main-transit-card {
        min-height: 400px;
      }

      .main-content {
        left: 22px;
        right: 22px;
        bottom: 24px;
      }

      .main-title {
        font-size: 2rem;
      }

      .main-desc {
        font-size: 0.9rem;
      }

      .side-column {
        flex-direction: column;
      }

      .service-card {
        padding: 32px 26px;
        min-height: auto;
      }

      .service-title {
        font-size: 1.5rem;
      }

    }
    .hub-card{
      text-align:center;
      padding:0 40px;
      position:relative;
      height:100%;
    }

    .hub-card.with-border::after{
      content:"";
      position:absolute;
      right:0;
      top:0;
      width:1px;
      height:100%;
      background:var(--border);
    }

    .city-name{
      font-size:2.3rem;
      text-transform:uppercase;
      font-weight:500;
      color:var(--dark);
      margin-bottom:30px;
    }

    .address{
      font-size:1.1rem;
      line-height:1.8;
      color:#555;
      margin-bottom:28px;
      font-weight:400;
    }

    .phone{
      font-family:'Barlow Condensed',sans-serif;
      font-size:2rem;
      letter-spacing:2px;
      color:var(--gold);
      margin-bottom:45px;
      font-weight:500;
    }

    .hub-code{
      font-family:'Barlow Condensed',sans-serif;
      font-size:1.6rem;
      letter-spacing:2px;
      text-transform:uppercase;
      color:#2d2d2d;
      font-weight:500;
    }

    /* RESPONSIVE */

    @media(max-width:991px){

      .section-title{
        margin-bottom:60px;
        font-size:1.1rem;
        letter-spacing:7px;
      }

      .hub-card{
        padding:40px 20px;
      }

      .hub-card.with-border::after{
        display:none;
      }

      .city-name{
        font-size:2rem;
      }

      .phone{
        font-size:1.7rem;
      }

      .hub-code{
        font-size:1.4rem;
      }

    }

    @media(max-width:767px){

      .trading-hubs-section{
        padding:70px 0;
      }

      .section-title{
        font-size:1rem;
        letter-spacing:5px;
        margin-bottom:40px;
      }

      .city-name{
        font-size:1.8rem;
      }

      .address{
        font-size:1rem;
      }

      .phone{
        font-size:1.5rem;
        margin-bottom:30px;
      }

      .hub-code{
        font-size:1.2rem;
      }

    }

.leasing-section ul li {list-style:(../../images/tick-mark.png);}