/* Global */



.hero-section h1 {
  font-size: 2.8rem;
  color: #2e2e2e;
}
.hero-section p {
  font-size: 1.25rem;
  color: #555;
}
.hero-section .btn-primary {
  background-color: #25346a;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
}
.hero-section .btn-primary:hover {
  background-color: #25346a;
}


section {
  padding: 60px 0;
}
h3, h4, h5 {
  font-weight: 600;
}
ul {
  padding-left: 20px;
}
ul li {
  margin-bottom: 10px;
}

/* CAWI Section */
.cawi-section ul li {
  position: relative;
  padding-left: 20px;
}
.cawi-section ul li::before {
  content: "✔";
  color: #28a745;
  position: absolute;
  left: 0;
}

/* Fraud Detection */
.fraud-card {
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  background: #fff;
  transition: 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.fraud-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.fraud-card img {
  flex-shrink: 0;
}
.fraud-card h5 {
  font-size: 1.1rem;
}
.fraud-card p {
  font-size: 0.95rem;
  color: #555;
}


/* stay ahead of new  */

.fraud-cop-section {
  background-color: #f7f9fc;
}
.fraud-cop-highlight {
  color: #25346a;
}
.fraud-cop-section h3 {
  font-size: 1.75rem;
  line-height: 1.4;
}
.fraud-cop-list {
  list-style: none;
  padding-left: 0;
}
.fraud-cop-list li {
  font-size: 1.05rem;
  margin-bottom: 15px;
  position: relative;
  padding-left: 28px;
}
.fraud-cop-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}
.fraud-cop-leftbox {
  background: #604ec0;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fraud-cop-leftbox img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}


/* Premium Sections */
.premium-fraud,
.premium-shield {
  background-color: #f0f8ff;
}
.premium-fraud img,
.premium-shield img {
  max-width: 100%;
}


/* icebreaking */
.icebreaking-section {
  background-color: #ffffff;
}
.icebreaking-blue {
  color: #1fa2ff; /* Adjust to match your brand blue */
}
.ice-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.ice-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.ice-card img {
  max-width: 50px;
}
.ice-card h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.ice-card p {
  font-size: 0.95rem;
  color: #555;
}



/* API Section */
.api-marketplace img {
  max-width: 80%;
  margin: 0 auto;
}

.marketplace-api-section h2 span {
  color: #1fa2ff; /* Custom blue, matching branding */
}
.marketplace-api-section .shadow-sm {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

/* Reports */
.reports img {
  max-width: 600px;
}

/* Integration Tools */
.integration img {
  max-height: 50px;
  margin-bottom: 10px;
}

/* AI & Machine Learning */
.ai-ml-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.ai-ml-section .feature-box {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.ai-ml-section .feature-box:hover {
  transform: translateY(-5px);
}

.ai-ml-section h4 {
  color: #2c3e50;
  position: relative;
  padding-left: 30px;
}

.ai-ml-section h4:before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
}

/* Solutions */
.complete-solutions {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.complete-solutions .feature-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.complete-solutions .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.complete-solutions ul {
  list-style-type: none;
}

.complete-solutions ul li {
  position: relative;
  margin-bottom: 8px;
}

.complete-solutions ul li:before {
  content: "•";
  color: #3498db;
  font-weight: bold;
  position: absolute;
  left: -15px;
}

/* CTA */
.cta-section {
  background-color: #4f46e5;
  color: white;
}
.cta-section .btn {
  background: #fff;
  color: #4f46e5;
  border: none;
  padding: 10px 30px;
  font-weight: bold;
  border-radius: 5px;
}
.cta-section .btn:hover {
  background: #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
  .api-marketplace img {
    max-width: 100%;
  }
  .cawi-section .row,
  .new-fraud .row,
  .ai-ml .row {
    flex-direction: column-reverse;
  }
}

