
    :root {
      --red: #cc0000;
      --dark-red: #aa0000;
      --dark: #111111;
      --gray: #444444;
      --light-gray: #f5f5f5;
      --mid-gray: #e0e0e0;
      --white: #ffffff;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Open Sans', sans-serif;
      color: #222;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Oswald', sans-serif;
    }

    /* ===== TOPBAR ===== */
    .topbar {
      background: #1a1a1a;
      color: #aaa;
      font-size: 12px;
      padding: 6px 0;
    }
    .topbar a { color: #aaa; text-decoration: none; }
    .topbar a:hover { color: var(--red); }

    /* ===== NAVBAR ===== */
    .main-navbar {
      background: #fff;
      /* border-bottom: 3px solid var(--red); */
      padding: 10px 0;
      position: sticky;
      top: 0;
      z-index: 999;
      /* box-shadow: 0 2px 8px rgba(0,0,0,0.12); */
    }
    .main-navbar .navbar-brand {
      font-family: 'Oswald', sans-serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--dark);
    }
    .main-navbar .navbar-brand span { color: var(--red); }
    .main-navbar .nav-link {
      /* font-family: 'Oswald', sans-serif; */
      font-size: 16px;
      color: #333 !important;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 8px 14px !important;
    }
    .main-navbar .nav-link:hover,
    .main-navbar .nav-link.active { color: var(--red) !important; }
    .btn-nav-cta {
      background: var(--red);
      color: #fff !important;
      font-family: 'Oswald', sans-serif;
      font-size: 16px;
      font-weight: 600;
      padding: 12px 23px !important;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .btn-nav-cta:hover { background: var(--dark-red); color: #fff !important; }

    /* ===== HERO ===== */
    .hero-section {
      /* background: linear-gradient(135deg, #111 0%, #1e1e1e 50%, #2a0000 100%); */
      min-height: 520px;
      padding: 70px 0 50px;
      position: relative;
      overflow: hidden;
    }
    .hero-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=60') center/cover no-repeat;
      opacity: 0.08;
    }
    .hero-badge {
      display: inline-block;
      background: var(--red);
      color: #fff;
      font-family: 'Oswald', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 12px;
      margin-bottom: 16px;
    }
    .hero-section h1 {
      font-size: 62px;
      font-weight: 700;
      color: #000000;
      line-height: 1.1;
      text-transform: uppercase;
    }
    .hero-section h1 span { color: var(--red); }
    .hero-section p {
      color: #000000;
      font-size: 15px;
      max-width: 460px;
      line-height: 1.7;
      margin-top: 12px;
    }
    .vin-form-box {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 4px;
      padding: 26px 10px;
      margin-top: 8px;
    }
    .vin-form-box label {
      color: #000000;
      font-size: 13px;
      font-family: 'Oswald', sans-serif;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 8px;
      display: block;
          padding: 13px 0 3px;
    }
    .vin-form-box input {
      background: #fff;
      border: none;
      border-radius: 3px;
      height: 48px;
      font-size: 15px;
      font-family: 'Open Sans', sans-serif;
      letter-spacing: 2px;
      padding: 0 16px;
      color: #111;
      width: 100%;
    }
    .vin-form-box select {
    background: #fff;
    border: none;
    border-radius: 3px;
    height: 48px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 2px;
    padding: 0 16px;
    color: #111;
    width: 100%;
}
.vin-form-box button {
    padding: 12px 23px !important;
    background: #cc0000;
    color: #fff;
    border: none;
    margin: 20px 0 0 0;
    border-radius: 100px;
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    font-weight: 600;
}
    .vin-form-box input:focus { outline: 2px solid var(--red); }
    .btn-hero-cta {
      background: var(--red);
      color: #fff;
      font-family: 'Oswald', sans-serif;
      font-size: 16px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 13px 36px;
      border: none;
      border-radius: 3px;
      margin-top: 14px;
      cursor: pointer;
      transition: background 0.2s;
    }
    .btn-hero-cta:hover { background: var(--dark-red); }
    .hero-car-img {
      position: relative;
      z-index: 1;
    }
    .hero-car-img img {
      width: 100%;
      max-width: 560px;
      filter: drop-shadow(0 20px 40px rgba(200,0,0,0.3));
      animation: floatCar 4s ease-in-out infinite;
    }
    @keyframes floatCar {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 28px;
    }
    .hero-stat { text-align: center; }
    .hero-stat .num {
      font-family: 'Oswald', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--red);
    }
    .hero-stat .lbl {
      font-size: 11px;
      color: #888;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* ===== COUNTRY FLAGS STRIP ===== */
    .flags-strip {
      background: #f9f9f9;
      border-bottom: 1px solid #e5e5e5;
      padding: 18px 0;
    }
    .flags-strip .flag-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }
    .flags-strip img {
      width: 44px;
      height: 30px;
      object-fit: cover;
      border-radius: 2px;
      border: 1px solid #ddd;
    }
    .flags-strip .flag-label {
      font-size: 10px;
      color: #666;
      font-family: 'Oswald', sans-serif;
      letter-spacing: 0.5px;
    }

    /* ===== PARTNER LOGOS ===== */
    .partners-section {
      background: #fff;
      padding: 50px 0;
      border-bottom: 1px solid #eee;
    }
    .partners-section .partner-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      /* opacity: 0.65; */
      transition: opacity 0.2s;
    }
.partners-section .partner-logo img {
    /* object-fit: cover; */
    height: 50px;
    width: 100%;
}
.partners-section .row {
    padding: 30px 0;
}
    .partners-section .partner-logo:hover { opacity: 1; }
    .partners-section .partner-logo span {
      font-family: 'Oswald', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #333;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .partners-section .partner-logo .partner-icon {
      width: 32px;
      height: 32px;
      background: #111;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 8px;
    }

    /* ===== SECTION TITLES ===== */
    .section-label {
      display: inline-block;
      font-family: 'Oswald', sans-serif;
      font-size: 14px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      /* border-bottom: 2px solid var(--red); */
      padding-bottom: 2px;
      margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Oswald', sans-serif;
      font-size: 46px;
      font-weight: 700;
      text-transform: uppercase;
      color: #111;
      line-height: 1.15;
    }
    .section-title span { color: var(--red); }
    .section-desc {
      color: #666;
      font-size: 14px;
      line-height: 1.7;
      max-width: 560px;
    }
    .title-underline {
      width: 50px;
      height: 3px;
      background: var(--red);
      margin: 14px 0 20px;
    }

    /* ===== PACKAGES SECTION ===== */
    .packages-section {
      background: #f8f9fa;
      padding: 90px 0;
    }
    .package-card {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.05);
      border-radius: 16px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.03);
      position: relative;
    }
    .package-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(204,0,0,0.1);
    }
    .package-card.featured {
      border: 2px solid var(--red);
      transform: scale(1.03);
      z-index: 2;
    }
    .package-card.featured:hover {
      transform: scale(1.03) translateY(-10px);
    }
    .package-header {
      background: linear-gradient(135deg, #2a2a2a 0%, #111 100%);
      color: #fff;
      padding: 30px 24px;
      position: relative;
      text-align: center;
    }
    .package-header.red { 
      background: linear-gradient(135deg, #ff1a1a 0%, #aa0000 100%); 
    }
    .package-name {
      font-family: 'Oswald', sans-serif;
      font-size: 24px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: rgba(255,255,255,0.9);
    }
    .package-price {
      font-family: 'Oswald', sans-serif;
      font-size: 48px;
      font-weight: 700;
      margin-top: 10px;
      line-height: 1;
    }
    .package-price small {
      font-size: 24px;
      font-weight: 400;
      opacity: 0.7;
      vertical-align: super;
    }
    .best-value {
      position: absolute;
      top: 0;
      right: 24px;
      background: #ffcc00;
      color: #000;
      font-size: 11px;
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 6px 12px;
      border-radius: 0 0 6px 6px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    .package-body {
      padding: 30px 24px;
    }
    .package-feature {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(0,0,0,0.04);
      font-size: 15px;
      color: #555;
      font-weight: 500;
    }
    .package-feature:last-child { border-bottom: none; }
    .package-feature i { color: var(--red); font-size: 14px; width: 16px; text-align: center; }
    .package-feature i.fa-times { color: #d0d0d0; }
    .btn-package {
      background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
      color: #fff;
      font-family: 'Oswald', sans-serif;
      font-size: 16px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 14px;
      border: none;
      border-radius: 50px;
      width: 100%;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 6px 15px rgba(204,0,0,0.2);
    }
    .btn-package:hover { 
      background: linear-gradient(135deg, #ff1a1a 0%, #cc0000 100%); 
      box-shadow: 0 8px 20px rgba(204,0,0,0.3);
      transform: translateY(-2px);
    }
    .btn-package-outline {
      background: transparent;
      color: var(--red);
      border: 2px solid var(--red);
      box-shadow: none;
    }
    .btn-package-outline:hover { 
      background: var(--red); 
      color: #fff; 
      box-shadow: 0 6px 15px rgba(204,0,0,0.2);
    }

    /* ===== CHOOSE REPORT SECTION ===== */
    .choose-section {
      background: #040435;
      padding: 70px 0;
      position: relative;
      overflow: hidden;
    }
    .choose-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1200&q=50') center/cover no-repeat;
      opacity: 0.06;
    }
    .choose-section .section-title {color: #fff;font-size: 60px;}
    .choose-section .section-label { color: #ff4444; border-color: #ff4444; }
    .choose-section .section-desc { color: #aaa; }
    .choose-item {
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
    }
    .choose-icon {
      width: 48px;
      height: 48px;
      background: var(--red);
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .choose-icon i { color: #fff; font-size: 20px; }
    .choose-item-text h5 {
      font-family: 'Oswald', sans-serif;
      font-size: 16px;
      color: #fff;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .choose-item-text p { font-size: 13px; color: #888; line-height: 1.6; margin: 0; }

    /* ===== SERVICES SECTION ===== */
    .services-section {
      padding: 70px 0;
      background: #fff;
    }
    .service-card {
      text-align: center;
      padding: 32px 20px;
      border: 1px solid #eee;
      border-radius: 4px;
      transition: all 0.25s;
      height: 100%;
    }
    .service-card:hover {
      border-color: var(--red);
      box-shadow: 0 8px 28px rgba(204,0,0,0.1);
      transform: translateY(-4px);
    }
    .service-icon-circle {
      width: 64px;
      height: 64px;
      background: #f5f5f5;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      transition: background 0.25s;
    }
    .service-card:hover .service-icon-circle { background: var(--red); }
    .service-icon-circle i {
      font-size: 26px;
      color: var(--red);
      transition: color 0.25s;
    }
    .service-card:hover .service-icon-circle i { color: #fff; }
    .service-card h5 {
      font-family: 'Oswald', sans-serif;
      font-size: 16px;
      font-weight: 600;
      text-transform: uppercase;
      color: #111;
      margin-bottom: 8px;
    }
    .service-card p { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }

    /* ===== AV LEARN SECTION ===== */
    .av-section {
      background: #040435;
      padding: 70px 0;
      position: relative;
      overflow: hidden;
    }
    .av-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&q=50') center/cover no-repeat;
      opacity: 0.07;
    }
    .av-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 4px;
      padding: 28px 22px;
      text-align: center;
      transition: all 0.25s;
    }
    .av-card:hover {
      background: var(--red);
      border-color: var(--red);
      transform: translateY(-4px);
    }
    .av-card i { font-size: 32px; color: var(--red); margin-bottom: 14px; transition: color 0.25s; }
    .av-card:hover i { color: #fff; }
    .av-card h5 {
      font-family: 'Oswald', sans-serif;
      font-size: 15px;
      color: #fff;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .av-card p { font-size: 12px; color: #aaa; margin: 0; transition: color 0.25s; }
    .av-card:hover p { color: rgba(255,255,255,0.85); }
    .av-section .section-title { color: #fff; }
    .av-section .section-desc { color: #aaa; }

    /* ===== WHAT INFO SECTION ===== */
    .info-section {
      background: #fff;
      padding: 70px 0;
    }
    .info-list-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
    }
    .info-dot {
      width: 8px;
      height: 8px;
      background: var(--red);
      border-radius: 50%;
      margin-top: 6px;
      flex-shrink: 0;
    }
    .info-list-item p { font-size: 14px; color: #555; line-height: 1.6; margin: 0; }
    .info-list-item strong { color: #111; }
    .info-image-box {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
    }
    .info-image-box img { width: 100%; border-radius: 4px; }
    .info-image-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: var(--red);
      color: #fff;
      font-family: 'Oswald', sans-serif;
      font-size: 13px;
      font-weight: 600;
      padding: 10px 18px;
      border-radius: 3px;
      letter-spacing: 0.5px;
    }

    /* ===== STATS SECTION ===== */
    .stats-section {
      background: #040435;
      padding: 50px 0;
    }
    .stat-item { text-align: center; }
    .stat-item .num {
      font-family: 'Oswald', sans-serif;
      font-size: 48px;
      font-weight: 700;
      color: #fff;
      line-height: 1;
    }
    .stat-item .num span { font-size: 28px; }
    .stat-item .lbl {
      font-size: 13px;
      color: rgba(255,255,255,0.8);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-family: 'Oswald', sans-serif;
      margin-top: 6px;
    }
    .stat-divider {
      width: 1px;
      background: rgba(255,255,255,0.3);
      height: 60px;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonial-section {
      background: var(--light-gray);
      padding: 70px 0;
    }
    .testimonial-card {
      background: #fff;
      border-radius: 4px;
      padding: 28px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
      height: 100%;
      position: relative;
    }
    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 14px;
      right: 20px;
      font-size: 80px;
      color: #eee;
      font-family: Georgia, serif;
      line-height: 1;
    }
    .testimonial-stars { color: #f5a623; font-size: 13px; margin-bottom: 12px; }
    .testimonial-text { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 18px; }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .author-avatar {
      width: 42px;
      height: 42px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Oswald', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: #fff;
    }
    .author-name {
      font-family: 'Oswald', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: #111;
    }
    .author-role { font-size: 12px; color: #999; }

    /* ===== FAQ SECTION ===== */
    .faq-section {
      background: #fff;
      padding: 70px 0;
    }
    .accordion-item {
      border: none !important;
      border-bottom: 1px solid #e5e5e5 !important;
      border-radius: 0 !important;
      margin-bottom: 0 !important;
    }
    .accordion-button {
      font-family: 'Oswald', sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: #111 !important;
      background: #fff !important;
      padding: 18px 6px;
      box-shadow: none !important;
    }
    .accordion-button:not(.collapsed) { color: var(--red) !important; }
    .accordion-button::after {
      filter: none !important;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cc0000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    }
    .accordion-body {
      font-size: 14px;
      color: #666;
      line-height: 1.7;
      padding: 0 6px 18px;
    }

    /* ===== ENQUIRE FORM ===== */
    .enquire-section {
      background: #040435;
      padding: 70px 0;
      position: relative;
      overflow: hidden;
    }
    .enquire-section::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 40%;
      height: 100%;
      background: var(--red);
      clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
      opacity: 0.08;
    }
    .enquire-section .section-title { color: #fff; }
    .form-control-dark {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      color: #fff;
      border-radius: 3px;
      padding: 12px 16px;
      font-size: 14px;
      font-family: 'Open Sans', sans-serif;
    }
    .form-control-dark::placeholder { color: #9f9e9e; }
    .form-control-dark:focus {
      background: rgba(255,255,255,0.1);
      border-color: var(--red);
      color: #fff;
      box-shadow: 0 0 0 2px rgba(204,0,0,0.25);
    }
    .btn-submit-enquire {
      background: var(--red);
      color: #fff;
      font-family: 'Oswald', sans-serif;
      font-size: 16px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 14px 40px;
      border: none;
      border-radius: 3px;
      cursor: pointer;
      transition: background 0.2s;
    }
    .btn-submit-enquire:hover { background: var(--dark-red); }

    /* ===== FOOTER ===== */
    .site-footer {
      background: #fffefe;
      padding: 60px 0 0;
    }
    .footer-logo {
      font-family: 'Oswald', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
    }
    .footer-logo span { color: var(--red); }
    .footer-desc {font-size: 13px;color: #777;line-height: 1.7;max-width: 400px;margin: 0 auto;}
    .footer-title {
      font-family: 'Oswald', sans-serif;
      font-size: 15px;
      font-weight: 600;
      text-transform: uppercase;
      color: #000000;
      letter-spacing: 1px;
      margin-bottom: 18px;
      position: relative;
      padding-bottom: 10px;
    }
    .footer-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 30px;
      height: 2px;
      background: var(--red);
    }
    .footer-links {list-style: none;padding: 0;margin: 0;display: flex;gap: 20px;justify-content: center;padding: 20px 0;}
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      font-size: 13px;
      color: #777;
      text-decoration: none;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-links a::before {
      content: '';
      width: 5px;
      height: 5px;
      border-right: 2px solid var(--red);
      border-top: 2px solid var(--red);
      transform: rotate(45deg);
      display: inline-block;
    }
    .footer-links a:hover { color: var(--red); }
    .footer-contact-item {
      display: flex;
      gap: 12px;
      margin-bottom: 16px;
    }
    .footer-contact-item i { color: var(--red); width: 16px; margin-top: 2px; }
    .footer-contact-item span { font-size: 13px; color: #777; line-height: 1.6; }
    .footer-bottom {
      border-top: 1px solid #1e1e1e;
      margin-top: 40px;
      padding: 20px 0;
    }
    .footer-bottom p { font-size: 12px; color: #555; margin: 0; }
    .footer-social {display: flex;gap: 10px;justify-content: center;}
    .social-btn {
      width: 34px;
      height: 34px;
      background: #cd2027;
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }
    .social-btn:hover { background: var(--red); }
    .social-btn i {color: #ffffff;font-size: 13px;transition: color 0.2s;}
    .social-btn:hover i { color: #fff; }

    /* ===== UTILITIES ===== */
    .text-red { color: var(--red); }
    .bg-red { background: var(--red); }
    .border-red { border-color: var(--red) !important; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 991px) {
      .hero-section h1 { font-size: 38px; }
      .hero-car-img { margin-top: 40px; text-align: center; }
      .hero-car-img img { max-width: 420px; }
      .stat-divider { display: none; }
    }
    @media (max-width: 767px) {
      .hero-section { padding: 50px 0 40px; }
      .hero-section h1 { font-size: 30px; }
      .hero-stats { gap: 20px; }
      .hero-stat .num { font-size: 22px; }
    }
a.navbar-brand img {width: 150px;}
/* ===== BREADCRUMB SECTION ===== */
.breadcrump-section {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.breadcrump-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=40') center/cover no-repeat;
  opacity: 0.1;
}
.breadcrump-section .container {
  position: relative;
  z-index: 2;
}
.breadcrump-section h1 {
  font-size: 54px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.breadcrump-section h1 span {
  color: var(--red);
}
.breadcrump-desc {
  color: #bbb;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.breadcrumb-nav {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.breadcrumb-nav a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.breadcrumb-nav a:hover {
  color: #fff;
}
.breadcrumb-nav span {
  color: #555;
}
.breadcrumb-nav .current {
  color: #fff;
}
/* ===== INFINITE MARQUEE CAROUSEL ===== */
.marquee-wrapper { overflow: hidden; white-space: nowrap; position: relative; width: 100%; padding: 20px 0; }
.flags-strip .marquee-wrapper::before, .flags-strip .marquee-wrapper::after { content: ''; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2; pointer-events: none; }
.flags-strip .marquee-wrapper::before { left: 0; background: linear-gradient(to right, #f9f9f9 0%, rgba(249, 249, 249, 0) 100%); }
.flags-strip .marquee-wrapper::after { right: 0; background: linear-gradient(to left, #f9f9f9 0%, rgba(249, 249, 249, 0) 100%); }
.partners-section .marquee-wrapper::before, .partners-section .marquee-wrapper::after { content: ''; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2; pointer-events: none; }
.partners-section .marquee-wrapper::before { left: 0; background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%); }
.partners-section .marquee-wrapper::after { right: 0; background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%); }
.marquee-content { display: inline-flex; width: max-content; animation: scrollMarquee 40s linear infinite; }
.marquee-item { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 30px; }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-wrapper:hover .marquee-content { animation-play-state: paused; }
.footer-logo a img {
    width: 190px;
}
.site-footer .row {
    justify-content: center;
    align-items: center;
    text-align: center;
}