General Typography
body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #2c2c2c;
    background-color: #fff;
    line-height: 1.6;
}

/* Section Padding and Background */
section {
    padding: 60px 0;
}

/* Container Consistency */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Card Styling */
.card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

/* Headers */
h1, h2, h3, h5 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

h1.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #102a43;
}

/* Paragraphs */
p.banner-desc, .description {
    font-size: 1rem;
    color: #555;
}

/* AOS animation fix */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

/* Responsive Utility */
@media (max-width: 768px) {
    h1.banner-title {
        font-size: 2rem;
    }
}

.banner {
    background: linear-gradient(135deg, #e8f0ff 0%, #f4faff 100%);
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.text-banner {
    text-align: left;
}

.banner-title {
    max-width: 600px;
    margin-bottom: 20px;
}

.banner-desc {
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.6;
}



/* Section with light grey background */
.section-features {
  background-color: #f5f5f5;
  padding: 60px 0;
}

/* Uniform card style */
.feature-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  height: 180px; /* Fixed height for all cards */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  color: #2c2c2c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Hover effect */
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Text inside cards */
.feature-card .description {
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
  color: #333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;     /* Limit lines for visual consistency */
  -webkit-box-orient: vertical;
}

/* Responsive height adjustment */
@media (max-width: 768px) {
  .feature-card {
    height: auto;
    min-height: 160px;
  }
}




.what-we-do-section {
    background: #fdfdfd;
}

.what-we-do-section .card {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    min-height: 200px;
    padding: 20px;
    background: #ffffff;
}

.what-we-do-section .header h3 {
    color: #1f3a93;
    font-weight: 600;
}

.what-we-do-section .description {
    font-size: 0.95rem;
    color: #444;
}


.use-cases-section {
  background-color: #f8f9fa;
  border-radius: 25px; /* Rounded corners */
  padding: 3rem 1rem;
  margin: 2rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Optional: soft shadow for better visual appeal */
}
.use-cases-section .header span {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #555;
}

.use-cases-section h4 {
  font-weight: 600;
  color: #333;
}

.use-cases-section .text-card {
  background: #fff;
  border-radius: 8px;
  padding: 12px 20px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.use-cases-section h6 {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.use-cases-section p.fs-6 {
  font-size: 1rem;
  color: #555;
}

.use-case-list {
  padding: 0;
  margin: 0;
}

.use-case-item {
  padding: 0.75rem 0;
  font-weight: 500;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
  transition: color 0.2s ease;
}

.use-case-item:last-child {
  border-bottom: none;
}

.use-case-item:hover {
  color: #007bff;
  cursor: pointer;
}
