/* ====== Base Styles ====== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Manrope:wght@400;500;600&display=swap');

* {
   
  font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}/* Operational Areas Section */
.mcdp-operations {
  padding: 80px 40px;
  background: #fefefe;
   
}

.operations-title {
  font-size: 2rem;
  color: #003366;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.operations-title i {
  color: #003366;
  margin-right: 10px;
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Card */
.operations-card {
  background: #f9f9f9;
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.operations-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.operations-card h3 {
  font-size: 1.2rem;
  color: #003366;
  margin-bottom: 15px;
}

.operations-card ul {
  list-style: none; /* Remove default bullets */
  padding-left: 0;
}

.operations-card ul li {
  position: relative;
  padding-left: 25px;
  font-size: 0.95rem;
  color: #003366; /* dark blue text instead of black */
  line-height: 1.6;
}

.operations-card ul li::before {
  content: "\f058"; /* Font Awesome check-circle icon */
 
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #003366; /* blue icon */
  font-size: 0.9rem;
  top: 3px;
}

/* Responsive */
@media (max-width: 768px) {
  .operations-grid {
    grid-template-columns: 1fr;
  }

  .operations-card h3 {
    font-size: 1.1rem;
  }

  .operations-card ul li {
    font-size: 0.9rem;
    padding-left: 22px;
  }

  .operations-card ul li::before {
    font-size: 0.85rem;
    top: 2px;
  }
}
.operations-title {
  font-size: 2rem;
  color: #003366;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.operations-title i {
  color: #003366;
  margin-right: 10px;
}

/* Underline below title */
.operations-title .underline {
  display: block;
  width: 70px;
  height: 4px;
  background-color: #003366;
  margin: 10px auto 0;
  border-radius: 2px;
}
