    :root {
      --navy: #0B1F33;
      --navy-700: #122C47;
      --navy-800: #0B1F33;
      --navy-900: #06121F;
      --fire: #E53935;
      --fire-600: #C62828;
      --orange: #FF9800;
      --orange-600: #F57C00;
      --white: #FFFFFF;
      --lightgray: #F5F5F5;
      --font-heading: 'Poppins', sans-serif;
      --font-body: 'Open Sans', sans-serif;
    }

    * { box-sizing: border-box; }

    html { 
      scroll-behavior: smooth; 
      scroll-padding-top: 80px; 
      width: 100%;
    }

    body {
      font-family: var(--font-body);
      color: var(--navy);
      background: var(--lightgray);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; }

    ::selection { background: rgba(229,57,53,0.3); color: var(--navy-900); }

    ::-webkit-scrollbar { width: 10px; }
    ::-webkit-scrollbar-track { background: var(--navy); }
    ::-webkit-scrollbar-thumb { background: var(--fire); border-radius: 9999px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--fire-600); }

    .text-gradient {
      background: linear-gradient(90deg, var(--fire), var(--orange), var(--fire));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .floating-images {
  position: absolute;
  top: 2%;
  right: 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 45%;
  z-index: 5;

}

.floating-image,
.floating-image2 {
  width: 120px;
  height: auto;
  max-width: 100% ;
  animation: float 3s ease-in-out infinite;
}

.floating-image2 {
  animation-delay: 0.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .floating-images {
    position: absolute;
    top: 2%;
    right: 5px;
    gap: 4px;
    max-width: 42%;
  }

  .floating-image,
  .floating-image2 {
    
    max-width: 80px;
  }
}
    .bg-grid {
      background-image:
        linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    .glass-dark {
      background: rgba(11,31,51,0.5);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.1);
    }

    .glass-light {
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.6);
    }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.375rem 1rem;
      border-radius: 9999px;
      background: rgba(229,57,53,0.1);
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--fire);
    }

    .section-title {
      font-size: clamp(1.875rem, 4vw, 2.6rem);
      font-weight: 700;
      line-height: 1.15;
      color: var(--navy);
    }

    .section-title-light { color: var(--white); }

    .btn-fire {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 1.75rem;
      border-radius: 9999px;
      background: var(--fire);
      color: var(--white);
      font-weight: 600;
      font-size: 0.875rem;
      border: none;
      box-shadow: 0 10px 25px -5px rgba(229,57,53,0.4);
      transition: all 0.3s ease;
      text-decoration: none;
    }
    .btn-fire:hover {
      background: var(--fire-600);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 15px 30px -5px rgba(229,57,53,0.5);
    }

    .btn-outline-light {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 1.75rem;
      border-radius: 9999px;
      background: rgba(255,255,255,0.05);
      color: var(--white);
      font-weight: 600;
      font-size: 0.875rem;
      border: 2px solid rgba(255,255,255,0.4);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      text-decoration: none;
    }
    .btn-outline-light:hover {
      background: rgba(255,255,255,0.15);
      color: var(--white);
      border-color: var(--white);
      transform: translateY(-2px);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 1.75rem;
      border-radius: 9999px;
      background: var(--white);
      color: var(--navy);
      font-weight: 600;
      font-size: 0.875rem;
      border: 2px solid rgba(11,31,51,0.15);
      transition: all 0.3s ease;
      text-decoration: none;
    }
    .btn-ghost:hover {
      border-color: var(--fire);
      color: var(--fire);
      transform: translateY(-2px);
    }

    /* Navbar */
    .navbar-fls {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1rem 0;
      transition: all 0.4s ease;
    }
    .navbar-fls.scrolled {
      background: rgba(6,18,31,0.85);
      backdrop-filter: blur(16px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      padding: 0.5rem 0;
    }
    .navbar-fls .nav-link {
      color: rgba(255,255,255,0.8);
      font-weight: 500;
      font-size: 0.875rem;
      padding: 0.5rem 0.875rem !important;
      border-radius: 9999px;
      transition: color 0.3s ease;
      position: relative;
    }
    .navbar-fls .nav-link:hover { color: var(--white); }
    .navbar-fls .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0.25rem;
      left: 0.875rem;
      right: 0.875rem;
      height: 2px;
      background: var(--fire);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    .navbar-fls .nav-link:hover::after { transform: scaleX(1); }
    .navbar-fls .navbar-toggler {
      border: none;
      color: var(--white);
      font-size: 1.5rem;
    }
    .navbar-fls .navbar-toggler:focus { box-shadow: none; }

    .logo-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--fire), var(--orange));
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      box-shadow: 0 8px 20px -4px rgba(229,57,53,0.4);
    }
    .logo-text { font-family: var(--font-heading); font-weight: 800; color: var(--white); font-size: 1.125rem; line-height: 1; }
    .logo-sub { font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.25em; color: var(--fire); }

    /* Hero */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--navy-900);
    }
    .hero-bg {
      position: absolute;
      inset: 0;
    }
    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-overlay-1 {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--navy-900), rgba(11,31,51,0.85), rgba(11,31,51,0.4));
    }
    .hero-overlay-2 {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, var(--navy-900), transparent, rgba(11,31,51,0.6));
    }
    .hero-glow-1 {
      position: absolute;
      right: -8rem;
      top: 25%;
      width: 24rem;
      height: 24rem;
      border-radius: 50%;
      background: rgba(229,57,53,0.2);
      filter: blur(120px);
      pointer-events: none;
    }
    .hero-glow-2 {
      position: absolute;
      left: -5rem;
      bottom: 0;
      width: 20rem;
      height: 20rem;
      border-radius: 50%;
      background: rgba(255,152,0,0.1);
      filter: blur(100px);
      pointer-events: none;
    }
    .hero h1 {
      font-size: clamp(2.25rem, 6vw, 4.5rem);
      font-weight: 800;
      line-height: 1.08;
      color: var(--white);
    }
    .hero p.lead {
      color: rgba(255,255,255,0.8);
      font-size: 1.125rem;
      max-width: 42rem;
    }
    .badge-trust {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      padding: 0.75rem 0.875rem;
      border-radius: 1rem;
      transition: all 0.3s ease;
    }
    .badge-trust:hover {
      border-color: rgba(229,57,53,0.4);
      background: rgba(18,44,71,0.4);
    }
    .badge-trust .icon-wrap {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      background: rgba(229,57,53,0.15);
      color: var(--fire);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }
    .badge-trust:hover .icon-wrap { background: var(--fire); color: var(--white); }

    .pulse-dot {
      position: relative;
      display: inline-flex;
      width: 8px;
      height: 8px;
    }
    .pulse-dot::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: var(--fire);
      animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
    }
    .pulse-dot::after {
      content: '';
      position: relative;
      display: inline-flex;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--fire);
    }
    @keyframes ping {
      75%, 100% { transform: scale(2); opacity: 0; }
    }

    .scroll-indicator {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .scroll-indicator:hover { color: var(--white); }
    .scroll-indicator .mouse {
      width: 20px;
      height: 36px;
      border: 2px solid rgba(255,255,255,0.3);
      border-radius: 9999px;
      display: flex;
      justify-content: center;
      padding-top: 4px;
    }
    .scroll-indicator .mouse span {
      width: 4px;
      height: 6px;
      background: var(--fire);
      border-radius: 9999px;
      animation: bounce 1.5s infinite;
    }
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(6px); }
    }

    /* Sections */
    section { position: relative; }
    .section-pad { padding: 5rem 0; }
    @media (min-width: 640px) { .section-pad { padding: 7rem 0; } }

    .bg-navy-section { background: var(--navy-900); }
    .bg-light-section { background: var(--lightgray); }

    /* Service cards */
    .service-card {
      position: relative;
      overflow: hidden;
      border-radius: 1rem;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(11,31,51,0.4);
      backdrop-filter: blur(10px);
      padding: 1.5rem;
      transition: all 0.5s ease;
      height: 100%;
    }
    .service-card:hover {
      transform: translateY(-8px);
      border-color: rgba(229,57,53,0.4);
      background: rgba(18,44,71,0.5);
    }
    .service-card .icon-box {
      width: 56px;
      height: 56px;
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(229,57,53,0.2), rgba(255,152,0,0.1));
      color: var(--fire);
      font-size: 1.5rem;
      transition: all 0.5s ease;
    }
    .service-card:hover .icon-box {
      background: linear-gradient(135deg, var(--fire), var(--orange));
      color: var(--white);
    }
    .service-card h3 { color: var(--white); font-size: 1.125rem; }
    .service-card p { color: rgba(255,255,255,0.65); font-size: 0.875rem; }
    .service-card .learn-more {
      color: var(--fire);
      font-weight: 600;
      font-size: 0.875rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      transition: all 0.3s ease;
    }
    .service-card .learn-more:hover { color: var(--orange); }
    .service-card .learn-more i { transition: transform 0.3s ease; }
    .service-card:hover .learn-more i { transform: translateX(4px); }

    /* Why choose us cards */
    .feature-card {
      position: relative;
      overflow: hidden;
      border-radius: 1rem;
      border: 1px solid rgba(11,31,51,0.05);
      background: var(--white);
      padding: 1.75rem;
      box-shadow: 0 4px 20px -5px rgba(11,31,51,0.05);
      transition: all 0.5s ease;
      height: 100%;
    }
    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px -10px rgba(11,31,51,0.1);
    }
    .feature-card .accent-bar {
      position: absolute;
      left: 0;
      top: 1.75rem;
      width: 4px;
      height: 48px;
      border-radius: 0 4px 4px 0;
      background: linear-gradient(to bottom, var(--fire), var(--orange));
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.5s ease;
    }
    .feature-card:hover .accent-bar { transform: scaleY(1); }
    .feature-card .icon-box {
      width: 56px;
      height: 56px;
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--navy-900);
      color: var(--fire);
      font-size: 1.5rem;
      transition: all 0.5s ease;
    }
    .feature-card:hover .icon-box { background: var(--fire); color: var(--white); }
    .feature-card .num-watermark {
      position: absolute;
      bottom: -2rem;
      right: -1rem;
      font-family: var(--font-heading);
      font-size: 4.5rem;
      font-weight: 800;
      color: rgba(11,31,51,0.05);
      transition: color 0.5s ease;
    }
    .feature-card:hover .num-watermark { color: rgba(229,57,53,0.1); }

    /* Industry cards */
    .industry-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      padding: 1.5rem;
      border-radius: 1rem;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(11,31,51,0.4);
      backdrop-filter: blur(10px);
      text-align: center;
      transition: all 0.5s ease;
      height: 100%;
    }
    .industry-card:hover {
      transform: translateY(-8px);
      border-color: rgba(229,57,53,0.4);
      background: rgba(18,44,71,0.5);
    }
    .industry-card .icon-box {
      width: 64px;
      height: 64px;
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.05);
      color: var(--orange);
      font-size: 2rem;
      transition: all 0.5s ease;
    }
    .industry-card:hover .icon-box {
      transform: scale(1.1);
      background: var(--fire);
      color: var(--white);
    }
    .industry-card span { color: rgba(255,255,255,0.9); font-weight: 600; font-size: 0.875rem; }

    /* Product cards */
    .product-card {
      position: relative;
      overflow: hidden;
      border-radius: 1rem;
      background: var(--white);
      box-shadow: 0 4px 20px -5px rgba(11,31,51,0.05);
      transition: all 0.5s ease;
    }
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px -10px rgba(11,31,51,0.15);
    }
    .product-card .img-wrap {
      position: relative;
      aspect-ratio: 1;
      overflow: hidden;
    }
    .product-card .img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .product-card:hover .img-wrap img { transform: scale(1.1); }
    .product-card .img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(11,31,51,0.7), transparent);
      opacity: 0.6;
      transition: opacity 0.5s ease;
    }
    .product-card:hover .img-overlay { opacity: 0.9; }
    .product-card .img-label {
      position: absolute;
      bottom: 0.75rem;
      left: 0.75rem;
      right: 0.75rem;
      color: var(--white);
      font-weight: 700;
      font-size: 0.875rem;
      text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    }
    .product-card .card-footer-fls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.625rem 0.75rem;
    }
    .product-card .card-footer-fls span {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      color: rgba(11,31,51,0.5);
    }
    .product-card .card-footer-fls i { color: var(--fire); transition: transform 0.3s ease; }
    .product-card:hover .card-footer-fls i { transform: translateX(4px); }

    /* Process */
    .process-card {
      position: relative;
      height: 100%;
      border-radius: 1rem;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(11,31,51,0.4);
      backdrop-filter: blur(10px);
      padding: 1.5rem;
      transition: all 0.5s ease;
    }
    .process-card:hover {
      transform: translateY(-8px);
      border-color: rgba(229,57,53,0.4);
      background: rgba(18,44,71,0.5);
    }
    .process-card .num-box {
      width: 56px;
      height: 56px;
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--fire), var(--orange));
      color: var(--white);
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 1.125rem;
      box-shadow: 0 8px 20px -4px rgba(229,57,53,0.3);
    }
    .process-card h3 { color: var(--white); font-size: 1.125rem; }
    .process-card p { color: rgba(255,255,255,0.65); font-size: 0.875rem; }

    .process-line {
      position: absolute;
      left: 0;
      right: 0;
      top: 28px;
      height: 2px;
      background: linear-gradient(to right, transparent, rgba(229,57,53,0.4), transparent);
    }

    /* Stats */
    .stat-value {
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: clamp(2.25rem, 5vw, 3.75rem);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.875rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: rgba(255,255,255,0.7);
      margin-top: 0.5rem;
    }

    /* Gallery */
    .gallery-item {
      position: relative;
      display: block;
      width: 100%;
      overflow: hidden;
      border-radius: 1rem;
      box-shadow: 0 4px 20px -5px rgba(11,31,51,0.05);
      margin-bottom: 1rem;
    }
    .gallery-item img {
      width: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .gallery-item:hover img { transform: scale(1.05); }
    .gallery-item .g-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(11,31,51,0.7), transparent);
      opacity: 0.5;
      transition: opacity 0.5s ease;
    }
    .gallery-item:hover .g-overlay { opacity: 0.8; }
    .gallery-item .g-zoom {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    .gallery-item:hover .g-zoom { opacity: 1; }
    .gallery-item .g-zoom span {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--fire);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 25px -5px rgba(0,0,0,0.3);
    }
    .gallery-item .g-label {
      position: absolute;
      bottom: 0.75rem;
      left: 1rem;
      right: 1rem;
      color: var(--white);
      font-weight: 600;
      font-size: 0.875rem;
      text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    }

    /* Testimonials */
    .testimonial-card {
      position: relative;
      overflow: hidden;
      border-radius: 1.5rem;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(11,31,51,0.5);
      backdrop-filter: blur(10px);
      padding: 3rem 2rem;
    }
    .testimonial-quote-icon {
      position: absolute;
      right: 2rem;
      top: 2rem;
      font-size: 5rem;
      color: rgba(229,57,53,0.1);
    }
    .testimonial-stars { color: var(--orange); }
    .testimonial-text {
      color: rgba(255,255,255,0.85);
      font-size: 1.125rem;
      line-height: 1.7;
    }
    .testimonial-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--fire), var(--orange));
      color: var(--white);
      font-family: var(--font-heading);
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      background: rgba(255,255,255,0.25);
      opacity: 1;
      border-radius: 9999px;
      transition: all 0.3s ease;
    }
    .swiper-pagination-bullet-active {
      width: 32px;
      background: var(--fire);
    }
    .swiper-button-prev, .swiper-button-next {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.15);
      color: var(--white);
      transition: all 0.3s ease;
    }
    .swiper-button-prev:hover, .swiper-button-next:hover {
      background: var(--fire);
      border-color: var(--fire);
    }
    .swiper-button-prev::after, .swiper-button-next::after {
      font-size: 1rem;
      font-weight: 700;
    }

    /* FAQ */
    .faq-item {
      overflow: hidden;
      border-radius: 1rem;
      border: 1px solid rgba(11,31,51,0.1);
      background: var(--white);
      transition: all 0.3s ease;
      margin-bottom: 0.75rem;
    }
    .faq-item.open {
      border-color: rgba(229,57,53,0.3);
      box-shadow: 0 10px 25px -5px rgba(229,57,53,0.05);
    }
    .faq-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.25rem 1.25rem;
      background: none;
      border: none;
      text-align: left;
      cursor: pointer;
    }
    .faq-btn span { font-family: var(--font-heading); font-weight: 600; color: var(--navy); font-size: 1rem; }
    .faq-btn .faq-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(11,31,51,0.05);
      color: var(--navy);
      flex-shrink: 0;
      transition: all 0.3s ease;
    }
    .faq-item.open .faq-icon { background: var(--fire); color: var(--white); }
    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, opacity 0.3s ease;
      opacity: 0;
    }
    .faq-item.open .faq-content { opacity: 1; }
    .faq-content p {
      padding: 0 1.25rem 1.25rem;
      color: rgba(11,31,51,0.6);
      font-size: 0.9375rem;
      line-height: 1.7;
      margin: 0;
    }

    /* Contact */
    .contact-info-card {
      border-radius: 1.5rem;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(11,31,51,0.5);
      backdrop-filter: blur(10px);
      padding: 2rem;
    }
    .contact-link {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.875rem 1rem;
      border-radius: 1rem;
      border: 1px solid rgba(255,255,255,0.05);
      background: rgba(255,255,255,0.05);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .contact-link:hover {
      border-color: rgba(229,57,53,0.3);
      background: rgba(255,255,255,0.1);
    }
    .contact-link .icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(229,57,53,0.15);
      color: var(--fire);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }
    .contact-link:hover .icon-wrap { background: var(--fire); color: var(--white); }
    .contact-link .label { font-size: 0.75rem; text-transform: uppercase; color: rgba(255,255,255,0.5); }
    .contact-link .value { font-size: 0.875rem; font-weight: 600; color: var(--white); }

    .contact-form-card {
      border-radius: 1.5rem;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(11,31,51,0.5);
      backdrop-filter: blur(10px);
      padding: 2rem;
    }
    .form-control-fls, .form-select-fls {
      width: 100%;
      border-radius: 0.75rem;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(6,18,31,0.6);
      padding: 0.75rem 1rem;
      color: var(--white);
      font-size: 0.875rem;
      outline: none;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .form-control-fls::placeholder { color: rgba(255,255,255,0.3); }
    .form-control-fls:focus, .form-select-fls:focus {
      border-color: var(--fire);
      box-shadow: 0 0 0 3px rgba(229,57,53,0.3);
    }
    .form-label-fls { display: block; margin-bottom: 0.375rem; font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.8); }
    .form-select-fls option { background: var(--navy-900); }

    .map-wrap {
      overflow: hidden;
      border-radius: 1.5rem;
      border: 1px solid rgba(255,255,255,0.1);
    }
    .map-wrap iframe {
      width: 100%;
      height: 256px;
      border: 0;
      filter: grayscale(0.3) invert(0.9) hue-rotate(180deg) contrast(0.9);
    }

    /* Footer */
    .footer-fls {
      position: relative;
      overflow: hidden;
      background: var(--navy-900);
      padding-top: 4rem;
      color: rgba(255,255,255,0.7);
    }
    .footer-fls::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(229,57,53,0.4), transparent);
    }
    .footer-fls h3 {
      color: var(--white);
      font-size: 0.875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .footer-fls a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 0.875rem;
      transition: color 0.3s ease;
    }
    .footer-fls a:hover { color: var(--fire); }
    .footer-social {
      width: 36px;
      height: 36px;
      border-radius: 0.5rem;
      background: rgba(255,255,255,0.05);
      color: rgba(255,255,255,0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      text-decoration: none;
    }
    .footer-social:hover {
      background: var(--fire);
      color: var(--white);
      transform: translateY(-2px);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding: 1.5rem 0;
    }

    /* Floating buttons */
    .floating-btns {
      position: fixed;
      bottom: 1.25rem;
      right: 1.25rem;
      z-index: 900;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.75rem;
    }
    .float-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      box-shadow: 0 10px 25px -5px rgba(0,0,0,0.3);
      transition: transform 0.3s ease;
      text-decoration: none;
    }
    .float-btn:hover { transform: scale(1.1); }
    .float-whatsapp {
      width: 56px;
      height: 56px;
      background: #25D366;
      color: var(--white);
      font-size: 1.75rem;
      position: relative;
    }
    .float-whatsapp::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: #25D366;
      animation: pulse-ring 2s cubic-bezier(0.4,0,0.6,1) infinite;
    }
    .float-whatsapp i { position: relative; }
    @keyframes pulse-ring {
      0% { transform: scale(0.9); opacity: 0.7; }
      70% { transform: scale(1.3); opacity: 0; }
      100% { transform: scale(0.9); opacity: 0; }
    }
    .float-call {
      width: 48px;
      height: 48px;
      background: var(--orange);
      color: var(--white);
      font-size: 1.25rem;
    }
    .float-top {
      width: 44px;
      height: 44px;
      background: var(--navy-900);
      color: var(--white);
      font-size: 1.25rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .float-top.show {
      opacity: 1;
      pointer-events: auto;
    }

    .about-img-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 1.5rem;
      box-shadow: 0 20px 50px -10px rgba(11,31,51,0.2);
    }
    .about-img-wrap img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
    }
    .about-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(11,31,51,0.4), transparent);
    }
    .about-stat-card {
      position: absolute;
      bottom: -1.5rem;
      right: -0.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      border-radius: 1rem;
      background: var(--white);
      padding: 1.25rem;
      box-shadow: 0 20px 50px -10px rgba(11,31,51,0.2);
    }
    @media (min-width: 640px) { .about-stat-card { right: -1.5rem; } }
    .about-stat-card .icon-wrap {
      width: 56px;
      height: 56px;
      border-radius: 1rem;
      background: linear-gradient(135deg, var(--fire), var(--orange));
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.75rem;
    }
    .about-badge {
      position: absolute;
      left: -0.75rem;
      top: 1.5rem;
      border-radius: 1rem;
      background: var(--navy-900);
      padding: 0.75rem 1rem;
      color: var(--white);
      box-shadow: 0 10px 25px -5px rgba(0,0,0,0.2);
    }

    .check-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }
    .check-item i { color: var(--fire); margin-top: 0.125rem; }

    .text-white-90 { color: rgba(255,255,255,0.9); }
    .text-white-80 { color: rgba(255,255,255,0.8); }
    .text-white-70 { color: rgba(255,255,255,0.7); }
    .text-white-60 { color: rgba(255,255,255,0.6); }
    .text-white-50 { color: rgba(255,255,255,0.5); }
    .text-navy-600 { color: rgba(11,31,51,0.6); }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    }
    /* =========================================================
   MOBILE / FULL-WIDTH FIX
   ========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
}

body {
  min-width: 0;
}

/* Make every major section span the complete viewport */
section,
footer,
.navbar {
  width: 100%;
  max-width: 100%;
}

/* Bootstrap containers must not create a narrow page */
.container,
.container-fluid {
  width: 100%;
  max-width: 100%;
}

/* Prevent rows/columns from causing horizontal overflow */
.row {
  --bs-gutter-x: 1.5rem;
  max-width: 100%;
}

img,
iframe,
video {
  max-width: 100%;
}

/* Floating certificates must stay inside the image area */
.about-img-wrap {
  position: relative;
  overflow: visible;
}

.floating-images {
  position: absolute;
  top: 2%;
  right: 2%;
  z-index: 5;
  max-width: 100%;
  pointer-events: none;
}

/* Mobile */
@media (max-width: 768px) {

  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  section,
  footer,
  .navbar,
  .hero {
    width: 100% !important;
    max-width: 100% !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .floating-images {
    right: 5px;
    top: 2%;
    gap: 4px;
    max-width: 42%;
  }

  .floating-image,
  .floating-image2 {
    width: 80px;
    max-width: 100%;
    height: auto;
  }
}

/* =========================================================
   AUTHORITIES / CODES & STANDARDS
   Responsive image layout
   ========================================================= */

#testimonials .standards-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  margin-top: 1.5rem;
  align-items: stretch;
}

#testimonials .standards-images img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
}

/* Tablet */
@media (max-width: 991px) {
  #testimonials .standards-images {
    gap: 10px;
  }

  #testimonials .standards-images img {
    height: 260px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  #testimonials .standards-images {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  #testimonials .standards-images img {
    width: 100%;
    height: auto;
    max-height: 350px;
    aspect-ratio: 4 / 3;
    object-fit: contain;
  }
}

/* Very small phones */
@media (max-width: 400px) {
  #testimonials .standards-images img {
    max-height: 280px;
    aspect-ratio: 4 / 3;
  }
}