.focus-section {
  padding: 80px 20px;
  margin: 40px 0px;
  background: #f7fbff;
  font-family: Arial, sans-serif;
}

.focus-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.focus-title {
  font-size: 36px;
  color: #0b3c5d;
  margin-bottom: 50px;
  position: relative;
}

.focus-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ff7a00;
  display: block;
  margin: 10px auto;
}

/* Grid */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */
.focus-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.focus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Animated border effect */
.focus-card::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #ff7a00, #0b3c5d);
  transition: 0.4s;
}

.focus-card:hover::before {
  width: 100%;
}

/* Icon Box */
.icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff7a00, #ff9a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: 0.4s;
}

/* Icon Image */
.icon-box img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  transition: 0.4s;
}

/* Icon Animation */
.focus-card:hover .icon-box {
  transform: rotate(8deg) scale(1.1);
  background: linear-gradient(135deg, #0b3c5d, #145a86);
}

/* Text */
.focus-card h3 {
  color: #0b3c5d;
  margin-bottom: 10px;
}

.focus-card p {
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .focus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .focus-section {
      padding: 40px 20px;
  }
  
  .focus-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .focus-card {
      padding: 20px;
    }
}