/* ===== Global Styles ===== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: linear-gradient(120deg, #f8f9fb, #e3ecf5);
  overflow-x: hidden;
}

/* ===== About Section ===== */
.about-section {
  padding: 80px 20px;
  animation: fadeIn 1.2s ease-in;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-title {
  text-align: center;
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 10px;
  animation: slideDown 1s ease;
}

.about-title span {
  color: #f59e0b;
}

.about-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
  animation: fadeIn 1.5s ease;
}

/* ===== About Content ===== */
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.about-text {
  flex: 1 1 480px;
  animation: fadeInLeft 1.2s ease;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.about-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #f59e0b, #3b82f6);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: pulse 2.5s infinite;
}

.about-btn:hover {
  background: linear-gradient(135deg, #3b82f6, #f59e0b);
  transform: translateY(-3px);
}

/* ===== About Image ===== */
.about-image {
  flex: 1 1 400px;
  text-align: center;
  animation: fadeInRight 1.2s ease;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #555;
  background: #f0f4f7;
  border-top: 1px solid #ddd;
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4); }
  50% { box-shadow: 0 0 15px 10px rgba(0, 123, 255, 0.2); }
}
