* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #141111;
  font-family: 'Segoe UI', sans-serif;
}

/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #141111;
  padding: 15px 30px;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo Styling */
.logo {
  font-size: 24px;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 30px;
}

/* Menu Links */
.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover underline animation */
.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: white;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  transform: translateY(-2px);
  color: #ff7a2c;
}




body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #141111;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
}

h1 {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
}

h1 span {
  color: #ff7a2c;
}

.subtitle {
  text-align: center;
  color: #ccc;
  margin-bottom: 40px;
  font-size: 18px;
}

.safety-point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: #1d1b1b;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease;
}

.safety-point:hover {
  transform: translateY(-4px);
}

.safety-point .icon {
  font-size: 24px;
  flex-shrink: 0;
}

.safety-point .text h3 {
  color: #ffffff;
  margin: 0 0 5px;
  font-size: 20px;
}

.safety-point .text p {
  color: #ccc;
  margin: 0;
  font-size: 15px;
}

.safety-image {
  display: block;
  margin: 40px auto 0;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}


.site-footer {
  background-color: #141111;
  color: #ccc;
  display: flex;
  justify-content: space-between;
  padding: 60px 50px;
  flex-wrap: wrap;
  position: relative;
}

.footer-left {
  max-width: 300px;
}

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #ff944d;
  margin-bottom: 10px;
}

.footer-left p {
  margin: 10px 0;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin: 15px 0;
}

.social-icons a {
  color: #fff;
  background: #2a2a2a;
  padding: 10px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background-color: #ff944d;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 120px;
}

.footer-column h4 {
  color: #ff944d;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-column a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-column a:hover {
  color: #fff;
}

.scroll-top {
  position: absolute;
  bottom: 20px;
  right: 40px;
  background-color: #ff944d;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.scroll-top:hover {
  background-color: #e67c2f;
}
.bubble {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(94, 255, 0, 0.7);
  pointer-events: none;
  z-index: 9999;
  animation: fadeMove 1s ease-out forwards;
}

@keyframes fadeMove {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px) scale(0.5);
  }
}

.image-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: nowrap; /* Force them to stay on the same row */
  padding: 20px;
  background-color: #111;
  overflow-x: auto; /* horizontal scroll on smaller screens */
}

.chat-card {
  text-align: center;
  color: white;
  width: 220px;
  flex-shrink: 0;
}

.safety-image {
  width: 220px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-bottom: 10px;
}

