
/* Hero */
.hero {
  background-size: cover;
  background-position: center;
  padding: 4rem 1rem;
  text-align: center;
  color: #fff;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

/* Scroll to Top */
.to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #e92626;
  color: #fff;
  padding: 10px 12px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: none;
}
.to-top.active {
  display: block;
}

/* Fraud Section */
.image-outer-container img {
  width: 100%;
  border-radius: .5rem;
}

.fraud-container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center;
}
.f-heading {
  color: #e92626;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.fraud-container p {
  font-size: 1.1rem;
  color: #444;
}

/* Info Section */
.fraud_info {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.fraud_info h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
}
.fraud_info ul {
  list-style: none;
}
.fraud_info li {
  display: flex;
  align-items: start;
  gap: .6rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.fraud_info i {
  color: #e92626;
  font-size: .7rem;
  margin-top: .4rem;
}

/* Gallery */
.fraud-gallery-container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
  text-align: center;
}
.fraud-gallery-container h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.fraud-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 1.5rem;
}
.fraud-img {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform .3s ease;
}
.fraud-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fraud-img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .fraud_info {
    grid-template-columns: 1fr;
  }
  .f-heading {
    font-size: 1.8rem;
  }
  .fraud-container p {
    font-size: 1rem;
  }
}
