.section-title {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin: 80px 20px 50px;
  color: #d85636;
  
  letter-spacing: 2px;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 20px 0;
  min-height: 100vh;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 0 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 25px;
  transition: all 0.4s ease;
  border: 1px solid rgba(216, 86, 54, 0.1);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  background: white;
}

.card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-logo img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 50%;
  background: linear-gradient(45deg, #ffffff, #f0f0f0);
  border: 5px solid #d85636;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.card:hover .card-logo img {
  transform: rotate(10deg) scale(1.1);
}

.card-content {
  flex: 1;
  text-align: center;
}

.card-content h2 {
  font-size: 26px;
  color: #222;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  text-transform: capitalize;
}

.card-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
  font-family: 'Open Sans', sans-serif;
}

.card-links a {
  text-decoration: none;
  font-size: 24px;
  margin-right: 20px;
  transition: transform 0.3s, color 0.3s;
}

.card-links a:hover {
  transform: scale(1.2);
}

.web-icon {
  color: #007BFF;
}

.web-icon:hover {
  color: #0056b3;
}

.app-icon {
  color: #28a745;
}

.app-icon:hover {
  color: #1e7e34;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  color: #d85636;
  padding: 8px 20px;
  border-radius: 25px;
  background: rgba(216, 86, 54, 0.1);
  transition: all 0.3s ease;
}

.read-more:hover {
  background: #d85636;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .card {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .card-logo img {
    width: 120px;
    height: 120px;
  }

  .card-content h2 {
    font-size: 22px;
  }

  .card-content p {
    font-size: 14px;
  }

  .read-more {
    padding: 6px 15px;
  }
}