/*--------------------------------------------------------------
    # Global CSS Variables & Core Styles
    --------------------------------------------------------------*/
    :root {
      --primary-navy: #0A194A;
      --primary-navy-dark: #050E2B;
      --accent-cyan: #3fbbc0;
      --accent-cyan-hover: #329ca0;
      --highlight-red: #ee2219;
      --highlight-red-hover: #c91810;
      
      --bg-main: #ffffff;
      --bg-surface: #ffffff;
      --bg-light: #f8fafc;
      --bg-dark: #070d1f;
      
      --text-main: #212529;
      --text-muted: #64748b;
      --text-light: #ffffff;
      
      --font-heading: 'Plus Jakarta Sans', 'Raleway', sans-serif;
      --font-body: 'Inter', 'Poppins', sans-serif;
      --font-logo: 'Gidugu', sans-serif;
      
      --radius-sm: 6px;
      --radius-md: 12px;
      --radius-lg: 20px;
      
      --shadow-sm: 0 4px 12px rgba(10, 25, 74, 0.06);
      --shadow-md: 0 10px 25px rgba(10, 25, 74, 0.10);
      --shadow-lg: 0 18px 40px rgba(10, 25, 74, 0.16);
    }

    /* CRITICAL FIX FOR STICKY SCROLL: Ancestors must allow visible overflow */
    html, body {
      max-width: 100%;
      overflow-x: clip;
    }

    html, body, main, .main {
      color: var(--text-main);
      background-color: var(--bg-main);
      font-family: var(--font-body);
      line-height: 1.6;
      margin: 0;
      padding: 0;
      scroll-behavior: smooth;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      color: var(--primary-navy);
      font-weight: 700;
    }

    a {
      color: var(--accent-cyan);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    a:hover {
      color: var(--accent-cyan-hover);
    }

    /* Section Offsets for Header Navigation */
    section, div[id] {
      scroll-margin-top: 95px;
      overflow: visible !important;
    }

    /*--------------------------------------------------------------
    # Header & Topbar (White Background, Red/Blue Logo)
    --------------------------------------------------------------*/
    .header {
      background-color: #ffffff !important;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      position: sticky;
      top: 0;
      z-index: 997;
      transition: all 0.3s ease;
    }

    .topbar {
      background-color: var(--primary-navy);
      color: rgba(255, 255, 255, 0.9);
      font-size: 13px;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .topbar i { color: var(--accent-cyan); }

    .branding {
      padding: 12px 0;
      background-color: #ffffff;
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .logo-container img {
      height: 52px;
      width: auto;
      object-fit: contain;
    }
    .logo-text-group {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .logo-text {
      /* font-family: var(--font-logo);
      font-size: 32px;
      color: var(--primary-navy);
      letter-spacing: 0.5px;
      font-weight: 700; */
      font-family: "Gidugu", sans-serif;
      font-weight: 400;
      font-style: normal;
      font-size: 32px;
      color: #0a194a;
    }
    .logo-text-sm {
      font-family: 'Play', sans-serif;
      /* font-size: 12px;
      font-weight: 600;
      color: var(--highlight-red);
      letter-spacing: 1px;
      font-style: italic; */
      font-weight: 400;
      font-style: italic;
      font-size: 12px;
      color: #ee2219;
      letter-spacing: 1px;
    }

    .navmenu ul {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      align-items: center;
      gap: 6px;
    }
    .navmenu a {
      color: var(--primary-navy);
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 600;
      border-radius: var(--radius-sm);
      transition: all 0.25s ease;
      text-transform: uppercase;
    }
    .navmenu a:hover,
    .navmenu .active {
      color: var(--highlight-red);
      background-color: rgba(238, 34, 25, 0.06);
    }

    .header .cta-btn {
      color: #ffffff;
      background: var(--highlight-red);
      font-size: 13px;
      font-weight: 700;
      padding: 10px 22px;
      border-radius: var(--radius-sm);
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(238, 34, 25, 0.3);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .header .cta-btn:hover {
      background: var(--highlight-red-hover);
      transform: translateY(-2px);
      color: #ffffff;
    }

    /*--------------------------------------------------------------
    # Hero Carousel
    --------------------------------------------------------------*/
    .hero { padding: 0; position: relative; }
    .hero .carousel-item {
      height: 70vh;
      min-height: 480px;
      position: relative;
      background-size: cover;
      background-position: center;
    }
    .hero .overlay {
      position: absolute;
      inset: 0;
      /* background: linear-gradient(135deg, rgba(10, 25, 74, 0.88) 0%, rgba(5, 14, 43, 0.78) 100%); */
      background: linear-gradient(135deg, rgba(10, 25, 74, 0.4) 0%, rgba(5, 14, 43, 0.4) 100%);
      z-index: 1;
    }
    .hero .carousel-content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #ffffff;
      padding: 0 20px;
    }
    .hero h2 {
      font-size: 42px;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 18px;
      line-height: 1.2;
      max-width: 850px;
    }
    .hero p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 28px;
      max-width: 720px;
    }
    .hero .btn-get-started {
      background: var(--highlight-red);
      color: #ffffff;
      padding: 12px 36px;
      font-weight: 700;
      border-radius: var(--radius-sm);
      display: inline-block;
      box-shadow: 0 6px 20px rgba(238, 34, 25, 0.4);
      transition: all 0.3s ease;
    }
    .hero .btn-get-started:hover {
      background: var(--accent-cyan);
      transform: translateY(-2px);
      color: #ffffff;
    }

    /* Hero Arrow Controls */
    .hero .carousel-control-prev,
    .hero .carousel-control-next {
      width: 54px;
      height: 54px;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(6px);
      border-radius: 50%;
      z-index: 10;
      opacity: 0.9;
      border: 2px solid #ffffff;
      margin: 0 20px;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero .carousel-control-prev:hover,
    .hero .carousel-control-next:hover {
      background: var(--highlight-red);
      border-color: var(--highlight-red);
      opacity: 1;
      transform: translateY(-50%) scale(1.1);
    }
    .hero .carousel-control-prev-icon,
    .hero .carousel-control-next-icon {
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
      width: 22px;
      height: 22px;
    }

    /*--------------------------------------------------------------
    # Shared Section Titles & Layout
    --------------------------------------------------------------*/
    .section-title {
      text-align: center;
      padding-bottom: 40px;
      position: relative;
    }
    .section-title h2 {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -0.5px;
      margin-bottom: 12px;
      text-transform: uppercase;
      color: var(--primary-navy);
      position: relative;
      display: inline-block;
    }
    .section-title h2::after {
      content: "";
      position: absolute;
      display: block;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--accent-cyan), var(--highlight-red));
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }
    .section-title p {
      color: var(--text-muted);
      font-size: 15px;
      max-width: 700px;
      margin: 15px auto 0 auto;
    }

    section { padding: 60px 0; position: relative; }
    .light-background { background-color: var(--bg-light); }
    .white-background { background-color: #ffffff; }

    /* Featured Services */
    .featured-services .service-item {
      background: var(--bg-surface);
      border-radius: var(--radius-md);
      padding: 35px 25px;
      height: 100%;
      border: 1px solid rgba(10, 25, 74, 0.08);
      box-shadow: var(--shadow-sm);
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    .featured-services .service-item::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--primary-navy);
      transition: all 0.3s ease;
    }
    .featured-services .service-item:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }
    .featured-services .service-item:hover::before {
      height: 100%;
      z-index: -1;
      background: var(--primary-navy);
    }
    .featured-services .service-item .icon i {
      font-size: 38px;
      color: var(--highlight-red);
      margin-bottom: 18px;
      transition: all 0.3s ease;
    }
    .featured-services .service-item h4 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .featured-services .service-item p {
      font-size: 14px;
      color: var(--text-muted);
      transition: all 0.3s ease;
    }
    .featured-services .service-item:hover h4,
    .featured-services .service-item:hover p,
    .featured-services .service-item:hover .icon i {
      color: #ffffff !important;
    }

    /* Call To Action */
    .call-to-action {
      background: linear-gradient(135deg, var(--primary-navy) 0%, #152a6b 100%);
      color: #ffffff;
      padding: 60px 0;
    }
    .call-to-action h3 {
      color: #ffffff;
      font-size: 30px;
      font-weight: 800;
      margin-bottom: 15px;
    }
    .call-to-action p {
      color: rgba(255, 255, 255, 0.88);
      font-size: 16px;
      margin-bottom: 25px;
    }
    .call-to-action .cta-btn {
      background: #ffffff;
      color: var(--primary-navy);
      font-size: 15px;
      font-weight: 700;
      padding: 12px 35px;
      border-radius: var(--radius-sm);
      display: inline-block;
      transition: all 0.3s ease;
    }
    .call-to-action .cta-btn:hover {
      background: var(--highlight-red);
      color: #ffffff;
      transform: scale(1.05);
    }

    /* About Section */
    .about .content ul { list-style: none; padding: 0; margin: 20px 0; }
    .about .content ul li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px;
      font-size: 15px;
    }
    .about .content ul i {
      color: var(--accent-cyan);
      font-size: 20px;
      margin-top: 2px;
    }

    /* Stats */
    .stats .stats-item {
      background: var(--bg-surface);
      padding: 30px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(10, 25, 74, 0.06);
    }
    .stats .stats-item i {
      font-size: 38px;
      color: var(--accent-cyan);
      margin-right: 20px;
    }
    .stats .stats-item span {
      font-size: 36px;
      font-weight: 800;
      color: var(--primary-navy);
    }

    /* Features */
    .features .icon-box {
      margin-top: 18px;
      padding: 18px;
      border-radius: var(--radius-sm);
      transition: all 0.3s ease;
      background: #ffffff;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(10, 25, 74, 0.05);
    }
    .features .icon-box:hover {
      transform: translateX(8px);
      box-shadow: var(--shadow-md);
    }
    .features .icon-box i {
      color: #ffffff;
      background-color: var(--primary-navy);
      width: 48px;
      height: 48px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-right: 16px;
      flex-shrink: 0;
    }
    .features .icon-box h4 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .features .icon-box p {
      font-size: 13px;
      color: var(--text-muted);
      margin: 0;
    }

    /*--------------------------------------------------------------
    # FULL STICKY SMOOTH SCROLL COMPONENT (.ssx-root)
    --------------------------------------------------------------*/
    .ssx-root {
      background: #000000;
      color: #ffffff;
      position: relative;
      z-index: 10;
      overflow: visible !important;
    }
    .ssx-root * { box-sizing: border-box; }
    .ssx-root .ssx-main { background: #000000; overflow: visible !important; }
    .ssx-root .ssx-wrapper { overflow: visible !important; }

    /* Sticky hero cards stacking */
    .ssx-root .ssx-hero {
      color: #ffffff;
      height: 85vh;
      min-height: 450px;
      width: 100%;
      background: #020617;
      display: grid;
      place-content: center;
      position: sticky;
      top: 90px;
      z-index: 2;
    }

    .ssx-root .ssx-hero--light {
      background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
      color: #ffffff;
      border-top-right-radius: 1.5rem;
      border-top-left-radius: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.15);
    }

    .ssx-root .ssx-hero--lg {
      background: linear-gradient(135deg, #0A194A 0%, #050E2B 100%);
      border-top: 1px solid var(--accent-cyan);
    }

    .ssx-root .ssx-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 54px 54px;
      -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 70%, transparent 100%);
      mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 70%, transparent 100%);
    }

    .ssx-root .ssx-hero h1 {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -0.5px;
      text-align: center;
      letter-spacing: -0.015em;
      line-height: 1.25;
      margin: 0;
      position: relative;
      color: #ffffff;
    }

    /* .ssx-root .ssx-hero--md h1 { font-size: 2.25rem; }
    .ssx-root .ssx-hero--lg h1 { font-size: 2.8rem; } */

    /* Gallery Section 1 (Skewed Images + Sticky Center Title) */
    .ssx-root .ssx-gallery {
      color: #ffffff;
      width: 100%;
      background: #020617;
      padding: 80px 0;
      overflow: visible !important;
    }

    .ssx-root .ssx-gallery-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .ssx-root .ssx-gallery-grid--padded {
      padding: 0 2rem;
    }

    .ssx-root .ssx-sticky-center {
      position: sticky;
      top: 120px;
      height: 60vh;
      /* display: flex; */
      align-items: center;
      justify-content: center;
    }
   

    .ssx-root .ssx-sticky-center h1 {
      font-size: 32px;
      padding: 0 2rem;
      font-weight: 800;
      text-align: center;
      line-height: 1.2;
      color: #ffffff;
      margin: 0;
      padding: 40px 20px 20px 20px;
    }
    .ssx-root .ssx-sticky-center p {
      padding: 40px 20px 20px 40px;
      text-align: justify;
      color: #B6B8BA;
    }

    .ssx-root .ssx-img-col { display: grid; gap: 1.5rem; }
    .ssx-root .ssx-figure { display: grid; place-content: center; margin: 0; }
    .ssx-root .ssx-figure--skew-neg { transform: skewX(-10deg); }
    .ssx-root .ssx-figure--skew-pos { transform: skewX(10deg); }

    .ssx-root .ssx-figure img {
      width: 22rem;
      height: 18rem;
      vertical-align: bottom;
      object-fit: cover;
      border-radius: var(--radius-md);
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
      transition: all 300ms ease;
    }

    .ssx-root .ssx-figure--sticky {
      position: sticky;
      top: 120px;
      height: 60vh;
    }

    .ssx-root .ssx-figure--sticky img {
      width: 22rem;
      height: 22rem;
      border-radius: var(--radius-md);
    }

    .ssx-root .ssx-caption {
      position: sticky;
      top: 120px;
      height: 60vh;
      display: grid;
      place-content: center;
    }

    .ssx-root .ssx-caption h1 {
      font-size: 2.2rem;
      padding: 0 2rem;
      font-weight: 700;
      text-align: center;
      color: #ffffff;
      line-height: 1.3;
      margin: 0;
    }
    .ssx-root .ssx-caption p {
      padding: 40px 20px 20px 10px;
      text-align: justify;
      color: #B6B8BA;
    }

    /* Dedicated Key Clients Showcase Box inside Sticky Scroll */
    .ssx-clients-card {
      background: linear-gradient(135deg, #0f1c3f 0%, #08112b 100%);
      border: 1px solid var(--accent-cyan);
      border-radius: var(--radius-lg);
      padding: 40px;
      margin: 40px auto;
      max-width: 1100px;
      text-align: center;
      box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    }
    .ssx-clients-card h3 {
      color: #ffffff;
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 12px;
    }
    .client-badge-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
      margin-top: 20px;
    }
    .client-badge {
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(6px);
      padding: 10px 22px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 15px;
      color: #ffffff;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
    }
    .client-badge:hover {
      background: var(--highlight-red);
      border-color: var(--highlight-red);
      transform: translateY(-3px);
    }

    /*--------------------------------------------------------------
    # Services & Sticky Info Card
    --------------------------------------------------------------*/
    .sticky-info-card {
      position: sticky;
      top: 110px;
      background: #ffffff;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
      padding: 28px;
      border: 1px solid rgba(10, 25, 74, 0.08);
    }
    .sticky-info-card h4 {
      font-size: 18px;
      margin-bottom: 16px;
      color: var(--primary-navy);
    }
    .sticky-info-card ul {
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
    }
    .sticky-info-card ul li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 0;
      border-bottom: 1px dashed #e2e8f0;
      font-size: 13px;
      color: var(--text-muted);
    }
    .sticky-info-card ul li i {
      color: var(--accent-cyan);
      font-size: 16px;
    }

    .services .service-item {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 25px 20px;
      height: 100%;
      border: 1px solid rgba(10, 25, 74, 0.06);
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      text-align: center;
    }
    .services .service-item:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }
    .services .service-item .icon {
      width: 60px;
      height: 60px;
      background: var(--bg-light);
      color: var(--primary-navy);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px auto;
      font-size: 24px;
      box-shadow: var(--shadow-sm);
    }
    .services .service-item h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .services .service-item ul {
      text-align: left;
      list-style: none;
      padding: 0;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 15px;
    }
    .services .service-item ul li {
      position: relative;
      padding-left: 15px;
      margin-bottom: 6px;
    }
    .services .service-item ul li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--accent-cyan);
    }

    /* Mini Product Slider */
    .mini-product-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(10, 25, 74, 0.06);
      transition: all 0.3s ease;
      text-align: center;
    }
    .mini-product-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }
    .mini-product-img {
      height: 180px;
      position: relative;
      background: #f8fafc;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .mini-product-img img {
      max-height: 85%;
      max-width: 85%;
      object-fit: contain;
      transition: transform 0.4s ease;
    }
    .mini-product-card:hover .mini-product-img img {
      transform: scale(1.08);
    }
    .mini-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: var(--primary-navy);
      color: #ffffff;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 12px;
      text-transform: uppercase;
    }
    .mini-product-body {
      padding: 15px;
    }
    .mini-product-body h5 {
      font-size: 15px;
      margin-bottom: 4px;
    }
    .mini-product-body p {
      font-size: 12px;
      color: var(--text-muted);
      margin: 0;
    }

    .slider-arrow-btn {
      width: 42px;
      height: 42px;
      background: #ffffff;
      border: 2px solid var(--primary-navy);
      color: var(--primary-navy);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 16px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }
    .slider-arrow-btn:hover {
      background: var(--highlight-red);
      border-color: var(--highlight-red);
      color: #ffffff;
    }

    /*--------------------------------------------------------------
    # Product Portfolio & Tab Navigation Sidebar
    --------------------------------------------------------------*/
    .product-showcase-wrap {
      display: flex;
      gap: 24px;
      align-items: flex-start;
    }
    .product-cat-nav {
      position: sticky;
      top: 110px;
      width: 250px;
      flex-shrink: 0;
      background: #ffffff;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      padding: 20px 0;
      border: 1px solid rgba(10, 25, 74, 0.06);
    }
    .product-cat-nav h5 {
      padding: 0 20px 10px 20px;
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .product-cat-nav ul { list-style: none; padding: 0; margin: 0; }
    .product-cat-nav li a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 20px;
      color: var(--text-main);
      font-size: 14px;
      font-weight: 600;
      border-left: 3px solid transparent;
      transition: all 0.25s ease;
    }
    .product-cat-nav li a:hover,
    .product-cat-nav li a.active {
      border-left-color: var(--accent-cyan);
      background: rgba(63, 187, 192, 0.08);
      color: var(--accent-cyan-hover);
    }

    .team-member {
      background: #ffffff;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(10, 25, 74, 0.06);
      height: 100%;
    }
    .team-member .member-img {
      position: relative;
      overflow: hidden;
      height: 200px;
      background: #f8fafc;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .team-member .member-img img {
      max-height: 85%;
      max-width: 85%;
      object-fit: contain;
    }
    .team-member .member-info {
      padding: 15px;
      text-align: center;
    }
    .team-member .member-info h4 {
      font-size: 16px;
      margin-bottom: 6px;
    }
    .meta-date {
      font-size: 11px;
      font-weight: 700;
      color: var(--highlight-red);
      margin: 0 3px;
    }
    .meta-date::after {
      content: " | ";
      color: #cbd5e1;
      margin-left: 4px;
    }
    .meta-date:last-child::after { content: ""; }

    /* Floating Action Bar */
    .float-quick-actions {
      position: fixed;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .float-quick-actions a {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 20px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.25);
      transition: all 0.3s ease;
      text-decoration: none;
    }
    .float-quick-actions a:hover {
      transform: scale(1.12);
    }
    .fqa-call { background: var(--primary-navy); }
    .fqa-whatsapp { background: #25D366; }
    .fqa-quote { background: var(--accent-cyan); }
    .fqa-mail { background: var(--highlight-red); }

    /* Footer */
    .footer {
      background: var(--bg-dark);
      color: rgba(255, 255, 255, 0.8);
      font-size: 14px;
      padding-top: 60px;
    }
    .footer h4 {
      color: #ffffff;
      font-size: 16px;
      margin-bottom: 20px;
    }
    .footer a {
      color: rgba(255, 255, 255, 0.7);
    }
    .footer a:hover {
      color: var(--accent-cyan);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 25px 0;
      margin-top: 50px;
      text-align: center;
    }
    .text-muted{
      color: #000 !important;
    }
    .section-title p{
      color: #000 !important;
    }
    .sticky-info-card ul li{
      color: #000 !important;
    }
    .services .service-item ul{
      color: #000 !important;
    }
    .features .icon-box p{
      color: #000 !important;
    }
    .featured-services .service-item p{
      color: #000 !important;
      text-align: justify;
    }

    @media (max-width: 991px) {
      .product-showcase-wrap { flex-direction: column; }
      .product-cat-nav { width: 100%; position: static; }
      .ssx-root .ssx-gallery-grid { grid-template-columns: 1fr; }
      .hero h2 { font-size: 32px; }
    }