body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
}

/* Page Banner */
.page-banner {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('./../img/image4.jpgs') center/cover;
  color: white;
  text-align: center;
  padding: 80px 20px;
}
.page-banner h1 {
  font-size: 36px;
  margin-bottom: 10px;
}
.page-banner p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
}
/* Objectives Section */
.objectives .container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.objective-box {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
}

.objective-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* Gradient Header Strip */
.objective-box::before {
  content: "";
  display: block;
  height: 6px;
  background: linear-gradient(90deg, #ff2e7e, #c62860, #ff9800);
}

/* Heading with Icon */
.objective-box h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 20px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
}

.objective-box h2 i {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2e7e, #c62860);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(198,40,96,0.5);
  flex-shrink: 0;
}

/* List Items */
.objective-box ul {
  list-style: none;
  padding: 0 25px 25px;
  margin: 0;
}

.objective-box ul li {
  position: relative;
  font-size: 15px;
  color: #555;
  margin: 10px 0;
  padding-left: 28px;
  line-height: 1.6;
  transition: color 0.3s;
}

.objective-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  color: #ff2e7e;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.objective-box ul li:hover {
  color: #c62860;
}
.objective-box ul li:hover::before {
  transform: scale(1.2);
  color: #c62860;
}
