Sunucu yanıtını kontrol edin

Sunucu yanıtı
NS kayıtları
Whois alanı
Yanıt başlıkları
İstek başlıkları
Ham HTML kodu
301 Moved Permanently - runb3.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Wed, 28 May 2025 00:08:12 GMT
Server: Apache
Location: https://runb3.com/
Content-Length: 226
Content-Type: text/html; charset=iso-8859-1
last-modified: Mon, 26 May 2025 19:41:57 GMT
accept-ranges: bytes
content-length: 47341
vary: Accept-Encoding
host-header: c2hhcmVkLmJsdWVob3N0LmNvbQ==
content-type: text/html
date: Wed, 28 May 2025 00:08:12 GMT
server: Apache

HTTP Kodu 301 Kalıcı Olarak Taşındı

301 Moved Permanently, istenen kaynağın kalıcı olarak yeni bir URL'ye taşındığı anlamına gelir. Gelecekteki tüm istekler yeni adresi kullanmalıdır.

Kod 301 ne zaman kullanılır?

  • Bir web sitesi alan adını değiştirirken
  • URL yapılarını değiştirirken
  • SEO için yönlendirmeleri ayarlarken

Kod 301 kullanıcı için ne anlama geliyor?

Tarayıcı kullanıcıyı otomatik olarak yeni adrese yönlendirecek ve arama motorları dizinlerini güncelleyecektir.

GET / HTTP/1.1
Host: runb3.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE
html >
  <html lang="en" class="scroll-smooth">
<head>

 <script async src="https://www.googletagmanager.com/gtag/js?id=G-TK915EEEV8"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-TK915EEEV8');
</script>

  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta name="description" content="B3 Systems provides AI-powered data management solutions for manufacturers and other large enterprises.">
  <meta name="keywords" content="digital factory, manufacturing data, AI solutions, real-time analytics, data integration, B3 Systems">
  <meta name="author" content="B3 Systems Inc.">
  <meta property="og:title" content="B3 | Digital Factory">
  <meta property="og:description" content="Transform your manufacturing business with AI-powered insights, automation, and data-driven decision-making.">
  <meta property="og:image" content="https://runb3.com/_assets/img/logo.png">
  <meta property="og:url" content="https://runb3.com">
  <meta name="twitter:card" content="_assets/img/logo.png">
  <link rel="shortcut icon" href="_assets/img/logo.png" />
  <link rel="icon" href="_assets/img/logo.png" />
  <title>B3 | Digital Factory</title>

  <!-- Google Fonts -->
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
  <link href="https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
  <link href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">

  <!-- External CSS -->
  <link rel="stylesheet" href="_assets/css/fresh.css">
  
</head>
<body>
<noscript><iframe src="https://www.googletagmanager.com/gtag/js?id=G-TK915EEEV8"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  
<div id="header"></div>
<script>
  fetch('_assets/_navbar.html')
    .then(response => {
      if (!response.ok) {
        throw new Error('Network response was not ok');
      }
      return response.text();
    })
    .then(data => {
      document.getElementById('header').innerHTML = data;
    
    })
    .catch(error => console.error('Error fetching header:', error));
</script>

<!-- Hero Section -->
<section data-section="hero" id="page-top" data-theme="" class="relative h-screen w-full overflow-hidden bg-gray-900">
  <!-- Video Background -->
  <video autoplay muted loop playsinline class="hero-video absolute inset-0 object-cover w-full h-full z-0">
    <source src="_assets/vid/a.mp4" type="video/mp4">
    Your browser does not support the video tag.
  </video>

  <!-- Centered Headings -->
  <div class="absolute inset-0 flex flex-col items-center justify-center text-center px-4 z-10">
    <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold text-white mb-4 animate-fade-in">
      Create Your Digital Factory
    </h1>
    <h2 class="text-xl md:text-2xl lg:text-3xl text-white mb-8 animate-fade-in-delay">
      Streamline Your Operations
    </h2>
  </div>

  <!-- Discover More Button at Bottom -->
<div class="discover-more-wrapper">
    <a href="#digitize" class="discover-more-btn">
      <span class="discover-more-text">Discover More</span>
      <div class="discover-more-icon">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"
             stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
          <polyline points="6 9 12 15 18 9"></polyline>
        </svg>
      </div>
    </a>
  </div>
</section>

<style>
  /* Discover More Button Styles */
  .discover-more-btn {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .discover-more-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
  }

  .discover-more-icon {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: floatUpDown 3s ease-in-out infinite;
  }

  @keyframes floatUpDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  .discover-more-btn:hover .discover-more-icon {
    background-color: rgba(171, 213, 0, 0.8);
  }

  .discover-more-btn:hover .discover-more-text {
    color: rgba(171, 213, 0, 1);
  }
  
 /* override external styles and pin bottom-center */
.discover-more-wrapper {
  position: absolute !important;
  bottom: 2rem       !important; /* adjust as needed */
  left:   50%        !important;
  transform: translateX(-50%) !important;
  width: auto        !important;
  z-index: 999       !important;
}

</style>

<section id="digitize" data-theme= "light" class="digitize-section">
  <div class="container">
    <div class="flex-container">
      <!-- Left Column: Text Content -->
      <div class="text-content">
        <h1 class="font-bold text-4xl">Digitize Your Business</h1>
        
        <h2 class="text-gray-600 text-3xl font-medium mt-1 mb-3">
          With the B3 Platform
        </h2>
        
        <p class="text-base">
          Transform your business with AI-powered insights, automation, and data-driven decision-making. At B3 Systems, we empower manufacturers to manage and visualize their data more effectively—moving beyond outdated systems to propel your factory into a modern era of efficiency and innovation.
        </p>
      </div>
      <!-- Right Column: Video Content -->
      <div class="video-content">
        <div class="video-container">
   <iframe
  id="home-video"
  src="https://www.youtube.com/embed/sfWEYHnr9UE?rel=0&showinfo=0&enablejsapi=1"
  frameborder="0"
  allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
  allowfullscreen
  title="Digitize Your Business Video"
  data-track-cta="youtube_video">
</iframe>

        </div>
      </div>
    </div>
  </div>
</section>

  <style>
  
  /* Base styles for both headings */
#what-we-offer .industries-link,
#industries .industries-link {
  position: relative;
  display: inline-block;        /* so ::after can be positioned */
  text-decoration: none;        /* remove default underline */
  padding-bottom: 4px;          /* space for the underline */
}

/* The "short" underline */
#what-we-offer .industries-link::after,
#industries .industries-link::after {
  content: none; /* Remove the underline */
}

/* Section with extra vertical spacing */
.digitize-section {
  padding: 120px 0; /* 80px top and bottom padding */
}

/* Container styles */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Default stacking for smaller screens */
.flex-container {
  display: block;
}

/* Full width for each section by default */
.text-content, .video-content {
  width: 100%;
  margin-bottom: 20px; /* space between sections on small screens */
}

/* Video container for a responsive 16:9 aspect ratio */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Media query for large screens (1024px and up) */
@media (min-width: 1024px) {
  .flex-container {
    display: flex;
    align-items: center;
    gap: 20px; /* space between columns */
  }
  
  .text-content, .video-content {
    width: 50%;
    margin-bottom: 0; /* remove bottom margin for horizontal layout */
  }
  
  .text-content {
    padding-right: 20px;
  }
}
/* Style the arrow button */
.industry-card .absolute svg {
  width: 20px;
  height: 20px;
  color: #abd500; /* Brand green color */
  transition: all 0.2s ease;
}

/* Position the button inside the card on the right side (middle) */
.industry-card .absolute {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  /* Position in the middle of the right side */
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/* Subtle hover effects */
.industry-card:hover .absolute {
  background-color: rgba(171, 213, 0, 0.8); /* Semi-transparent green */
}

.industry-card:hover .absolute svg {
  color: white;
  transform: translateX(1px); /* Reduced movement */
}

/* Add a subtle hover effect to the entire card */
.industry-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#what-we-offer .industries-link {
  color: #fff;                 /* white text */
  text-decoration: none;
}
#what-we-offer .industries-link:hover {
  color: #abd500;              /* brand green on hover */
}
  /* Testimonial card styles */
#customers .bg-gray-700 {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#customers .bg-gray-700:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Quote icon animation */
#customers .absolute svg {
  transition: transform 0.3s ease;
}

#customers .bg-gray-700:hover .absolute svg {
  transform: scale(1.4);
}
/* Discover More Button Styles */
.discover-more-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.discover-more-text {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.discover-more-icon {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.discover-more-btn:hover .discover-more-icon {
  background-color: rgba(171, 213, 0, 0.8);
}

.discover-more-btn:hover .discover-more-text {
  color: rgba(171, 213, 0, 1);
}

.discover-tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 15px;
  z-index: 100;
}

.discover-tooltip::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent rgba(0, 0, 0, 0.8) transparent;
}

.discover-more-btn:hover .discover-tooltip {
  opacity: 1;
  visibility: visible;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 1s ease-in-out 1.2s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
</style>
  

<!-- Updated "What We Offer" Section with bold arrow in green "Learn more" CTA -->
<section id="what-we-offer" data-theme="dark" class="py-20 bg-cover bg-center" style="background-image: url('_assets/img/ua.png'); padding-top:120px; padding-bottom:120px;">
  <div class="container mx-auto text-center">
  
<h1 class="text-16xl font-bold text-white mb-8">
  <a href="Platform/" class="industries-link">
    What We Offer
    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" class="industries-arrow inline-block ml-1">
  <polyline points="9 18 15 12 9 6"></polyline>
</svg>
  </a>
</h1>


    <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
      <!-- Data Integration -->
      <a href="Integration/" class="offer-card">
        <div class="icon"><i class="fas fa-database"></i></div>
        <h2 class="text-2xl font-bold mb-2">Data Integration</h2>
        <p class="mb-8">Seamlessly connect all your data sources for real-time visibility and a unified source of truth.</p>
        <div class="learn-more">Learn More <span class="arrow">></span></div>
      </a>

      <!-- Real-time Analytics -->
      <a href="Information/" class="offer-card">
        <div class="icon"><i class="fas fa-chart-line"></i></div>
        <h2 class="text-2xl font-bold mb-2">Real-Time Analytics</h2>
        <p class="mb-8">Track performance, identify inefficiencies, and gain actionable insights instantly.</p>
        <div class="learn-more">Learn More <span class="arrow">></span></div>
      </a>

      <!-- AI Solutions -->
      <a href="Intelligence/" class="offer-card">
        <div class="icon"><i class="fas fa-project-diagram"></i></div>
        <h2 class="text-2xl font-bold mb-2">AI Solutions</h2>
        <p class="mb-8">Leverage AI for process optimization, automation, and predictive insights.</p>
        <div class="learn-more">Learn More <span class="arrow">></span></div>
      </a>

      <!-- All-in-One Tech Partner -->
      <a href="TechPartner/" class="offer-card">
        <div class="icon"><i class="fas fa-rocket"></i></div>
        <h2 class="text-2xl font-bold mb-2">All-In-One</h2>
        <p class="mb-8">A fully integrated solution with end-to-end support for seamless digital transformation.</p>
        <div class="learn-more">Learn More <span class="arrow">></span></div>
      </a>
    </div>
  </div>
</section>


<style>
  .offer-card {
    display: block;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
  }

  .offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }
 .offer-card {
    display: block;
    background: #f9f9f9;
    padding: 20px;
    padding-bottom: 40px; /* Space for CTA */
    border-radius: 10px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
  }

  .offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .offer-card .learn-more {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    color: #abd500;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
  }

  .offer-card .learn-more:hover {
    transform: translateX(-50%) scale(1.05);
    color: #8aa700; /* Darker green on hover */
  }

  .offer-card .learn-more .arrow {
    margin-left: 6px;
    font-weight: 800; /* Bold arrow */
    display: inline-block;
    transition: transform 0.2s ease;
  }

  .offer-card .learn-more:hover .arrow {
    transform: translateX(3px);
  }
  .arrow {
  transition: transform 0.3s ease;
}
.group:hover .arrow {
  transform: translateX(4px);
}
/* Link styling on the "Industries We Serve" heading */
.industries-link {
  text-decoration: none;
  color: #333;                  /* base color */
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}
.industries-link .industries-arrow {
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
}

/* Hover effect */
.industries-link:hover {
  color: #abd500;               /* your brand green */
}
.industries-link:hover .industries-arrow {
  transform: translateX(10px);
}
  .industries-arrow {
    stroke-width: 3;
  transition: transform 0.2s ease;
}

.industries-link:hover .industries-arrow {
  transform: translateX(5px);
}
  /* Make the Discover More button disappear on mobile */
  @media (max-width: 768px) {
    .discover-more-wrapper {
      display: none !important;
    }
  }
  
  /* Fix for the arrow/chevron in section titles to stay next to the text */
  .industries-link {
    display: inline-flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }
  
  .industries-arrow {
    flex-shrink: 0 !important;
  }
</style>
</section>

<!-- Font Awesome (add in your <head> if not already included) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">

<!-- Industries Section -->
<section id="industries" data-theme="light" class="py-20 bg-gray-100" style="padding-top:150px; padding-bottom:150px;">
  <div class="container">
    <div class="text-center mb-12">
      <h1 class="text-3xl md:text-4xl font-bold mb-6">
        <a href="Industries/" class="industries-link">
          Industries We Serve <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" class="industries-arrow inline-block ml-1">
  <polyline points="9 18 15 12 9 6"></polyline>
</svg>
        </a>
		
      </h1>
      <p class="text-lg text-gray-600 max-w-3xl mx-auto">
        Our solutions are tailored to meet the specific needs of various industries, providing specialized tools and insights.
      </p>
    </div>

    <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
      
      <!-- Automotive -->
      <a href="Automotive/" class="industry-card group relative overflow-hidden">
        <div class="industry-card-bg bg-industry-automotive"></div>
        <div class="industry-card-content relative z-10 p-6">
          <h2 class="text-2xl font-bold">Automotive</h2>
          <div class="industry-card-line my-2"></div>
          <p class="industry-card-description text-gray-600">
            Learn more about our Automotive solutions
          </p>
          <div class="absolute bottom-4 right-4 w-8 h-8 text-gray-600">
  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round">
  <polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
        </div>
      </a>

      <!-- Oil & Gas -->
      <a href="Oil&Gas/" class="industry-card group relative overflow-hidden">
        <div class="industry-card-bg bg-industry-oil-gas"></div>
        <div class="industry-card-content relative z-10 p-6">
          <h2 class="text-2xl font-bold">Oil & Gas</h2>
          <div class="industry-card-line my-2"></div>
          <p class="industry-card-description text-gray-600">
            Learn more about our Oil & Gas solutions
          </p>
        <div class="absolute bottom-4 right-4 w-8 h-8 text-gray-600">
  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round">
  <polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
        </div>
      </a>

      <!-- Wood Products -->
      <a href="WoodProducts/" class="industry-card group relative overflow-hidden">
        <div class="industry-card-bg bg-industry-sawmill"></div>
        <div class="industry-card-content relative z-10 p-6">
          <h2 class="text-2xl font-bold">Wood Products</h2>
          <div class="industry-card-line my-2"></div>
          <p class="industry-card-description text-gray-600">
            Learn more about our Wood Product solutions
          </p>
       <div class="absolute bottom-4 right-4 w-8 h-8 text-gray-600">
  <svg xmlns="http://wwwwww.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round">
  <polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
        </div>
      </a>
      <!-- Pulp and Paper -->
      <a href="Pulp&Paper/" class="industry-card group relative overflow-hidden">
        <div class="industry-card-bg bg-industry-pulp-paper"></div>
        <div class="industry-card-content relative z-10 p-6">
          <h2 class="text-2xl font-bold">Pulp & Paper</h2>
          <div class="industry-card-line my-2"></div>
          <p class="industry-card-description text-gray-600">
            Learn more about our Pulp and Paper solutions
          </p>
       <div class="absolute bottom-4 right-4 w-8 h-8 text-gray-600">
  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round">
  <polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
        </div>
      </a>
      <!-- Packaging -->
      <a href="Packaging/" class="industry-card group relative overflow-hidden">
        <div class="industry-card-bg bg-industry-packaging"></div>
        <div class="industry-card-content relative z-10 p-6">
          <h2 class="text-2xl font-bold">Packaging</h2>
          <div class="industry-card-line my-2"></div>
          <p class="industry-card-description text-gray-600">
            Learn more about our Packaging solutions
          </p>
    <div class="absolute bottom-4 right-4 w-8 h-8 text-gray-600">
  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round">
  <polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
        </div>
      </a>
      <!-- Steel -->
      <a href="Steel/" class="industry-card group relative overflow-hidden">
        <div class="industry-card-bg bg-industry-steel"></div>
        <div class="industry-card-content relative z-10 p-6">
          <h2 class="text-2xl font-bold">Steel</h2>
          <div class="industry-card-line my-2"></div>
          <p class="industry-card-description text-gray-600">
            Learn more about our Steel solutions
          </p>
     <div class="absolute bottom-4 right-4 w-8 h-8 text-gray-600">
  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round">
  <polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
        </div>
      </a>
      <!-- CPG -->
      <a href="CPG/" class="industry-card group relative overflow-hidden">
        <div class="industry-card-bg bg-industry-food"></div>
        <div class="industry-card-content relative z-10 p-6">
          <h2 class="text-2xl font-bold">CPG</h2>
          <div class="industry-card-line my-2"></div>
          <p class="industry-card-description text-gray-600">
            Learn more about our CPG solutions
          </p>
       <div class="absolute bottom-4 right-4 w-8 h-8 text-gray-600">
  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round">
  <polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
        </div>
      </a>
      <!-- Mining -->
      <a href="Mining/" class="industry-card group relative overflow-hidden">
        <div class="industry-card-bg bg-industry-supply-chain"></div>
        <div class="industry-card-content relative z-10 p-6">
          <h2 class="text-2xl font-bold">Mining</h2>
          <div class="industry-card-line my-2"></div>
          <p class="industry-card-description text-gray-600">
            Learn more about our Mining solutions
          </p>
      <div class="absolute bottom-4 right-4 w-8 h-8 text-gray-600">
  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round">
  <polyline points="9 18 15 12 9 6"></polyline>
</svg>
</div>
        </div>
      </a>

    </div>
  </div>
</section>

  <!-- "We Make It Easy" Section -->
  <section id="we-make-it-easy" data-theme= "dark" class="relative py-20 bg-gray-900 text-white">
    <div class="absolute inset-0 bg-easy opacity-20"></div>
    <div class="container relative z-10">
      <div class="max-w-4xl mx-auto">
        <div class="bg-black/30 backdrop-blur-sm p-8 md:p-12 rounded-xl">
          <h1 class="text-3xl md:text-4xl font-bold mb-6 text-center">Proven results in Weeks, not Years</h1>
          <p class="text-lg text-center text-gray-300">
          Experience a transformative onboarding process designed specifically for manufacturers. Our start-to-finish solution consolidates all your manufacturing data into one powerful platform—enabling seamless interaction, collaboration, analysis, alerting, governance, and growth.

From the initial strategy session to full implementation and training, our proven timeline ensures you see measurable results quickly. Gain confidence in your data with timely, targeted insights that empower your teams to drive operational excellence and achieve rapid success.
          </p>
        </div>
		<div class="b3-timeline-container">
 <div class="b3-timeline">
    <div class="timeline-stage" onclick="toggleTimelinePopup(0)">
      <div class="stage-content">
        <div class="stage-title">Exec. Briefing</div>
        <div class="stage-duration mobile-only">2 Hours</div>
      </div>
      <div class="timeline-popup" id="timeline-popup-0">
        <div class="popup-content">
          <div class="popup-text">
            <h3>Executive Briefing</h3>
            <p>Initial consultation with key stakeholders to understand business objectives, challenges, and opportunities for AI implementation. This session establishes the foundation for the project scope and expected outcomes.</p>
          </div>
        </div>
        <div class="popup-arrow"></div>
      </div>
    </div>
    
  <div class="timeline-stage" onclick="toggleTimelinePopup(1)">
  <div class="stage-content">
    <div class="stage-title">Technology Assessment</div>
    <div class="stage-duration mobile-only">2–3 Days</div>
  </div>
  <div class="timeline-popup" id="timeline-popup-1">
    <div class="popup-content">
      <div class="popup-text">
        <h3>Technology Assessment</h3>
        <p>
          Comprehensive evaluation of your current technology infrastructure,
          data sources, and integration requirements. Our experts identify the
          optimal AI solutions that align with your business needs and technical
          environment.
        </p>
      </div>
    </div>
    <div class="popup-arrow"></div>
  </div>
</div>

    <div class="timeline-stage" onclick="toggleTimelinePopup(2)">
      <div class="stage-content">
        <div class="stage-title">Production Trial</div>
        <div class="stage-duration mobile-only">8-12 Weeks</div>
      </div>
      <div class="timeline-popup" id="timeline-popup-2">
        <div class="popup-content">
          <div class="popup-text">
            <h3>Production Trial</h3>
            <p>Deploy a controlled implementation of the AI solution in your production environment. This phase includes iterative testing, refinement, and validation of the solution's performance against key business metrics and user requirements.</p>
          </div>
        </div>
        <div class="popup-arrow"></div>
      </div>
    </div>
    
    <div class="timeline-stage" onclick="toggleTimelinePopup(3)">
      <div class="stage-content">
        <div class="stage-title">AI Deployment</div>
        <div class="stage-duration mobile-only">3-6 Months</div>
      </div>
      <div class="timeline-popup" id="timeline-popup-3">
        <div class="popup-content">
          <div class="popup-text">
            <h3>AI Deployment</h3>
            <p>Scale and deploy your AI application into production. Incorporate user feedback and optimize algorithms to drive maximum economic value. Full integration with existing systems and comprehensive training for your team.</p>
          </div>
        </div>
        <div class="popup-arrow"></div>
      </div>
    </div>
  </div>
  
  <div class="b3-timeline-durations desktop-only">
    <div class="timeline-duration">2 Hours</div>
    <div class="timeline-duration">2-3 Days</div>
    <div class="timeline-duration">8-12 Weeks</div>
    <div class="timeline-duration">3-6 Months</div>
  </div>
</div>

<script>
  // Timeline popup functionality
  let activePopup = null;
  
  function toggleTimelinePopup(index) {
    const popupId = `timeline-popup-${index}`;
    const popup = document.getElementById(popupId);
    const allPopups = document.querySelectorAll('.timeline-popup');
    const allStages = document.querySelectorAll('.timeline-stage');
    
    // If clicking the same popup that's already active, close it
    if (activePopup === index) {
      popup.style.display = 'none';
      allStages[index].classList.remove('active');
      activePopup = null;
      return;
    }
    
    // Close any open popup
    allPopups.forEach(p => p.style.display = 'none');
    allStages.forEach(s => s.classList.remove('active'));
    
    // Open the clicked popup
    popup.style.display = 'block';
    allStages[index].classList.add('active');
    activePopup = index;
  }
  
  // Close popup when clicking outside
  document.addEventListener('click', function(event) {
    if (activePopup !== null && !event.target.closest('.timeline-stage') && !event.target.closest('.timeline-popup')) {
      const popupId = `timeline-popup-${activePopup}`;
      const popup = document.getElementById(popupId);
      const allStages = document.querySelectorAll('.timeline-stage');
      
      popup.style.display = 'none';
      allStages[activePopup].classList.remove('active');
      activePopup = null;
    }
  });
</script>
      </div>
    </div>
  </section>

<!-- Customers Section -->
<section id="customers" data-theme="light" class="py-20 bg-white testimonials-section">
  <div class="container mx-auto px-4 sm:px-6 lg:px-8">
    <div class="text-center mb-12">
      <h2 class="section-title text-3xl md:text-4xl font-bold mb-6 text-gray-800">People Are Talking About Us</h2>
      <p class="text-xl text-gray-600 mb-8">
        Hear from our clients about how B3 Systems has transformed their operations across various industries.
      </p>
    </div>

  <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4">
  <!-- Testimonial 1 -->
  <div class="testimonial-card bg-gray-100 p-6 rounded-lg shadow-sm">
    <div class="quote-icon mb-4">
      <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
        <path d="M9.983 3v7.391c0 5.704-3.731 9.57-8.983 10.609l-.995-2.151c2.432-.917 3.995-3.638 3.995-5.849h-4v-10h10zm14.017 0v7.391c0 5.704-3.748 9.571-9 10.609l-.996-2.151c2.433-.917 3.996-3.638 3.996-5.849h-3.983v-10h9.983z"/>
      </svg>
    </div>
    <p class="testimonial-quote text-blue-900 text-base">
      "Working with B3 has totally changed how we tackle machine upkeep. Their AI tips are so easy to understand, we actually use them every day and the onboarding process was quick and simple."
    </p>
  </div>

  <!-- Testimonial 2 -->
  <div class="testimonial-card bg-gray-100 p-6 rounded-lg shadow-sm">
    <div class="quote-icon mb-4">
      <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
        <path d="M9.983 3v7.391c0 5.704-3.731 9.57-8.983 10.609l-.995-2.151c2.432-.917 3.995-3.638 3.995-5.849h-4v-10h10zm14.017 0v7.391c0 5.704-3.748 9.571-9 10.609l-.996-2.151c2.433-.917 3.996-3.638 3.996-5.849h-3.983v-10h9.983z"/>
      </svg>
    </div>
    <p class="testimonial-quote text-blue-900 text-base">
      "We wanted a one-stop shop where we could collect and manage all our data, to solve issues and to see where some of our strengths and weaknesses were. B3 allows us to move the company forward."
    </p>
  </div>

  <!-- Testimonial 3 -->
  <div class="testimonial-card bg-gray-100 p-6 rounded-lg shadow-sm">
    <div class="quote-icon mb-4">
      <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
        <path d="M9.983 3v7.391c0 5.704-3.731 9.57-8.983 10.609l-.995-2.151c2.432-.917 3.995-3.638 3.995-5.849h-4v-10h10zm14.017 0v7.391c0 5.704-3.748 9.571-9 10.609l-.996-2.151c2.433-.917 3.996-3.638 3.996-5.849h-3.983v-10h9.983z"/>
      </svg>
    </div>
    <p class="testimonial-quote text-blue-900 text-base">
      "Our digital transformation went way faster than we thought possible. Now the right people see the data that's essential to keeping our machines up and running."
    </p>
  </div>

  <!-- Testimonial 4 -->
  <div class="testimonial-card bg-gray-100 p-6 rounded-lg shadow-sm">
    <div class="quote-icon mb-4">
      <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
        <path d="M9.983 3v7.391c0 5.704-3.731 9.57-8.983 10.609l-.995-2.151c2.432-.917 3.995-3.638 3.995-5.849h-4v-10h10zm14.017 0v7.391c0 5.704-3.748 9.571-9 10.609l-.996-2.151c2.433-.917 3.996-3.638 3.996-5.849h-3.983v-10h9.983z"/>
      </svg>
    </div>
    <p class="testimonial-quote text-blue-900 text-base">
      "We used to collect Data manually on paper reports and excel sheets. B3's team helped us merge all of our previously collected data with their system, so now we have access to all of our data historical and real time."
    </p>
  </div>
</div>

    <!-- Customers image below testimonials -->
    <div class="mt-12 text-center">
      <img src="_assets/img/customers.png" alt="Our Customers" class="mx-auto max-w-full" />
    </div>
  </div>
</section>

<style>
  /* Override fresh.css for quote icons (30% smaller) */
  #customers.testimonials-section .quote-icon svg {
    width: 1.5rem !important;
    height: 1.5rem !important;
    fill: #ABD500 !important;
  }
  #customers.testimonials-section .quote-icon path {
    color: #ABD500 !important;
  }

  /* Ensure no conflicting margins */
  #customers.testimonials-section .quote-icon {
    margin-bottom: 1rem !important;
  }

  /* Hover effect preserved */
  #customers.testimonials-section .testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }
  #customers.testimonials-section .testimonial-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1) !important;
  }
</style>

  <!-- Contact Section -->
  <section id="contact" data-theme= "light" class="py-20 bg-gray-100">
    <div class="container">
      <div class="text-center mb-12">
        <h1 class="text-3xl md:text-4xl font-bold mb-6">Ready to give the B3 platform a try?</h1>
      </div>
      
      <div class="max-w-4xl mx-auto bg-primary/10 p-8 rounded-xl shadow-md mb-16">
        <p class="text-lg text-center mb-8">
          Our customers tell us that the best way to discover B3 is to schedule a short demonstration. Learn how your silos of data can combine to drive actionable intelligence across your enterprise.
        </p>
        
        <div class="text-center">
          <a href="#CTADiag" onclick="trackCTAClick('GetDemo'); openModal()" class="btn-primary text-lg">
            GET A FREE DEMO
          </a>
        </div>
      </div>
     
      
      <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
       

	   <!-- Contact Us -->
        <div class="bg-white p-8 rounded-xl shadow-md text-center">
          <div class="flex justify-center mb-4">
            <img src="_assets/img/icon-contact-phone.png" alt="Contact Phone" width="64" height="64">
          </div>
          <h3 class="text-xl font-semibold mb-4">Contact us</h3>
          
          <h4 class="font-medium mb-2">Headquarters</h4>
          <p class="mb-1">800.655.9103</p>
          <p class="mb-4">
            2 St Clair Ave E<br />
            15th Floor<br />
            Toronto, ON M4T 2T5
          </p>
          
          <h4 class="font-medium mb-2">Sales</h4>
          <p class="mb-1">800.655.9103 Ext 1</p>
          <p class="mb-4">
            <a href="mailto:[email protected]" class="text-primary hover:text-primary-dark">[email protected]</a>
          </p>
        </div>
        
        <!-- Locations -->
        <div class="bg-white p-8 rounded-xl shadow-md text-center">
          <div class="flex justify-center mb-4">
            <img src="_assets/img/icon-contact-marker.png" alt="Location Marker" width="64" height="64">
          </div>
          <h3 class="text-xl font-semibold mb-4">Locations</h3>
          
          <h4 class="font-medium mb-2">Toronto</h4>
          <p class="mb-4">416.655.7155</p>
          
          <h4 class="font-medium mb-2">Vancouver</h4>
          <p class="mb-4">604.409.8119</p>
          
          <h4 class="font-medium mb-2">San Francisco</h4>
          <p class="mb-4">415.523.2746</p>
		  
		     <h4 class="font-medium mb-2">Munich</h4>
          <p class="mb-4">+49 89 205095938</p>
        </div>
        
        <!-- Support -->
        <div class="bg-white p-8 rounded-xl shadow-md text-center">
          <div class="flex justify-center mb-4">
            <img src="_assets/img/icon-contact-clock.png" alt="Support Clock" width="64" height="64">
          </div>
          <h3 class="text-xl font-semibold mb-4">Support</h3>
          
          <h4 class="font-medium mb-2">Customer Support</h4>
          <p class="mb-1">800.655.9103 Ext 3</p>
          <p class="mb-4">
            <a href="mailto:[email protected]" class="text-primary hover:text-primary-dark">[email protected]</a>
          </p>
        </div>
      </div>
    </div>
  </section>

  <!-- Modal -->
  <div class="modal-overlay" id="modal" style="display: none;">
    <div class="modal-content">
      <!-- Modal Header -->
      <div class="modal-header">
        <h3 class="modal-title">Get Started with B3 Systems</h3>
        <button class="modal-close" id="modalClose" aria-label="Close modal">
          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
            <line x1="18" y1="6" x2="6" y2="18"></line>
            <line x1="6" y1="6" x2="18" y2="18"></line>
          </svg>
        </button>
      </div>
      
      <!-- Modal Body -->
      <div class="modal-body">
        <div id="formContainer">
          <div class="form-group">
            <input id="FirstName" type="text" class="form-control" placeholder="First Name" required>
          </div>
          <div class="form-group">
            <input id="LastName" type="text" class="form-control" placeholder="Last Name" required>
          </div>
          <div class="form-group">
            <input id="Email" type="email" class="form-control" placeholder="Email" required>
            <div id="emailError" class="form-error emailPromt" style="display: none;">
              Please enter a valid email address
            </div>
          </div>
          <div class="form-group">
            <input id="CompanyName" type="text" class="form-control" placeholder="Company" required>
          </div>
          <button type="button" id="submitEmail" class="form-submit">
            REQUEST A BRIEFING
          </button>
        </div>
        <div id="successContainer" class="success-message" style="display: none;">
          <h4 class="success-title">Thank you for your interest!</h4>
          <p class="success-text">
            Your request has been submitted. Someone from our team will contact you shortly.
          </p>
        </div>
      </div>
    </div>
  </div>
  

<!-- Footer  -->
<footer class="footer">
  <style>
    /* Base styling for the info row */
    .company-info-row {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      column-gap: 100px;
      margin-bottom: 50px;
    }

    /* Base styling for the social links container */
    .mobile-social-links {
      display: flex;
      gap: 20px;
      align-self: center;
      padding-right: 100px; /* add right padding on desktop */
    }

    /* Responsive styling: stack items vertically on smaller screens */
    @media (max-width: 768px) {
      .company-info-row {
        flex-direction: column;
        align-items: flex-start;
      }
      .mobile-social-links {
        padding-right: 0; /* reset padding for mobile */
      }
    }
	/* Base styling for the h3 link */
.sitemap-column .sitemap-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

/* Hover state — your custom green */
.sitemap-column .sitemap-title-link:hover {
  color: #abd500;
}

  </style>

  <div class="footer-top">
    <div class="container">
      <!-- Company Info & Mobile Social Links in a horizontal row -->
      <div class="company-info-row">
        <!-- Company Info -->
        <div class="company-info" style="flex: 1; text-align: left;">
          <p>
            <span class="text-primary font-bold">B3 Systems</span> has over 20 years of experience working globally to provide sustainable business intelligence solutions.
          </p>
          <p>
            We use our experience and expertise to help our clients gather and understand large amounts of data from various sources, enabling them to make real-time decisions in a more cost-effective and reliable manner.
          </p>
        </div>
        <!-- Mobile Social Links -->
        <div class="mobile-social-links">
          <a href="https://www.linkedin.com/company/b3systems" target="_blank" rel="noopener noreferrer" class="transition-transform duration-300 hover:scale-110" data-track-cta="linkedin_social">
            <img src="_assets/img/logos/linkedin-logo.png" alt="LinkedIn" width="25" height="25" class="object-contain">
          </a>
          <a href="https://x.com/b3sys" target="_blank" rel="noopener noreferrer" class="transition-transform duration-300 hover:scale-110" data-track-cta="twitter_social">
            <img src="_assets/img/logos/x-logo.png" alt="X" width="25" height="25" class="object-contain">
          </a>
          <a href="https://www.youtube.com/@B3_AI" target="_blank" rel="noopener noreferrer" class="transition-transform duration-300 hover:scale-110" data-track-cta="youtube_social">
            <img src="_assets/img/logos/youtube-logo.png" alt="YouTube" width="30" height="30" class="object-contain">
          </a>
        </div>
      </div>

      <!-- Site Map section with grid layout -->
      <div class="footer-grid">
        <!-- Desktop Social Links Column (vertical) -->
        <div class="sitemap-column desktop-social-links" style="text-align: left;">
          <h3>Socials</h3>
          <ul class="social-links">
            <li class="social-link-item">
              <a href="https://www.linkedin.com/company/b3systems" target="_blank" rel="noopener noreferrer" class="flex items-center" data-track-cta="linkedin_social">
                <img src="_assets/img/logos/linkedin-logo.png" alt="LinkedIn" width="25" height="25" class="object-contain">
                <span>LinkedIn</span>
              </a>
            </li>
            <li class="social-link-item">
              <a href="https://x.com/b3sys" target="_blank" rel="noopener noreferrer" class="flex items-center" data-track-cta="twitter_social">
                <img src="_assets/img/logos/x-logo.png" alt="X" width="25" height="25" class="object-contain">
                <span>X (Twitter)</span>
              </a>
            </li>
            <li class="social-link-item">
              <a href="https://www.youtube.com/@B3_AI" target="_blank" rel="noopener noreferrer" class="flex items-center" data-track-cta="youtube_social">
                <img src="_assets/img/logos/youtube-logo.png" alt="YouTube" width="30" height="30" class="object-contain">
                <span>YouTube</span>
              </a>
            </li>
          </ul>
        </div>

        <!-- Platform/Services Column -->
        <div class="sitemap-column">
          <h3><a href="Platform/" class="sitemap-title-link">Platform</a></h3>
          <ul>
            <li><a href="Integration/">Data Integration</a></li>
            <li><a href="Information/">Real-Time Analytics</a></li>
            <li><a href="Intelligence/">AI Solutions</a></li>
            <li><a href="TechPartner/">All-In-One Tech Partner</a></li>
          </ul>
        </div>

     <!-- Industries Column -->
<div class="sitemap-column">
  <h3><a href="Industries/" class="sitemap-title-link">Industries</a></h3>
  <ul>
    <li><a href="Automotive/">Automotive</a></li>
    <li><a href="Oil&Gas/">Oil &amp; Gas</a></li>
    <li><a href="Steel/">Steel</a></li>
    <li><a href="CPG/">CPG</a></li>
    <li><a href="Mining/">Mining</a></li>
    <li><a href="WoodProducts/">Wood Products</a></li>
    <li><a href="Packaging/">Packaging</a></li>
    <li><a href="Pulp&Paper/">Pulp &amp; Paper</a></li>
  </ul>
</div>


        <!-- Company Column -->
        <div class="sitemap-column">
          <h3>Company</h3>
          <ul>
            <li><a href="#page-top">Home</a></li>
            <li><a href="#digitize">Digitize Your Business</a></li>
            <li><a href="#we-make-it-easy">Our Solution</a></li>
            <li><a href="#customers">Testimonials</a></li>
            <li><a href="ContactUs/">Contact Us</a></li>
            <li><a href="https://accounts.runb3.com">Connect</a></li>
          </ul>
        </div>

        <!-- Resources Column -->
        <div class="sitemap-column">
          <h3>Resources</h3>
          <ul>
            <li><a href="_assets/img/B3 Systems - About.pdf" data-track-cta="clicked - About">Fact Sheet</a></li>
            <li><a href="_assets/img/AI Roadmap.pdf" data-track-cta="clicked - AI Roadmap">AI Roadmap</a></li>
            <li><a href="_assets/img/BIII.pdf" data-track-cta="clicked - BIII">Business III</a></li>
            <li><a href="_assets/img/B3 Timeline.pdf" data-track-cta="clicked - B3 Timeline">B3 Timeline</a></li>
          </ul>
        </div>
      </div>

      <!-- Partner logos section -->
      <div class="partner-logos">
        <img src="_assets/img/logos/microsoft.png" alt="Microsoft">
        <img src="_assets/img/logos/sap.png" alt="SAP">
        <img src="_assets/img/logos/oracle.png" alt="Oracle">
        <img src="_assets/img/logos/cisco.png" alt="Cisco">
        <img src="_assets/img/logos/ibm.png" alt="IBM">
        <img src="_assets/img/logos/gcp.png" alt="Google Cloud Platform">
        <img src="_assets/img/logos/aws.png" alt="Amazon Web Services">
        <img src="_assets/img/logos/azure.png" alt="Microsoft Azure">
      </div>

      <!-- Copyright -->
      <div class="copyright">
        <p>&copy;2025 B3 Systems Inc. All rights reserved.</p>
      </div>
    </div>
  </div>
</footer>

    <!-- Custom Theme JavaScript -->
	<script src="_assets/js/jquery-1.11.js"></script>
    <script src="_assets/js/simplr.js"></script>
    <script src="_assets/js/modernizr.custom.js"></script>
    <script src="_assets/js/toucheffects.js"></script>
	<script src="_assets/js/analytics.js"></script>
    <script src="_assets/js/new.js"></script>
<script src="https://www.youtube.com/iframe_api"></script>

</body>
</html>
                               

Alan adının whois bilgisi

Domain Name: RUNB3.COM
Registry Domain ID: 1812583095_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2023-06-05T13:50:39Z
Creation Date: 2013-07-03T10:25:23Z
Registry Expiry Date: 2025-07-03T10:25:23Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: 480-624-2505
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Name Server: NS51.DOMAINCONTROL.COM
Name Server: NS52.DOMAINCONTROL.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-28T00:08:05Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass