
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

:root {
  --primary: #007bff;
  --dark: #0056b3;
  --bg: #f9fafe;
  --text: #2c3e50;
  --card-bg: #ffffff;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem 6rem;
}

h1 {
  text-align: center;
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  justify-items: center;
}

@media (min-width: 600px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s;
  width: 100%;
  max-width: 280px;
}

.card:hover {
  transform: translateY(-5px);
}

.card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.card a {
  display: block;
  margin-top: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s;
}

.card a:hover {
  color: var(--primary);
}

footer {
  background: linear-gradient(to right, #007bff, #0056b3);
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 14px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  position: fixed;
  bottom: 0;
  width: 100%;
}

footer a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}

footer a:hover {
  text-decoration: none;
}

.logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}
.back-btn {
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: var(--primary);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: var(--dark);
}

.swiper {
  padding: 10px 0 30px;
}

.swiper-slide {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 200px !important;
  text-align: center;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.swiper-slide .info {
  padding: 10px;
  font-size: 14px;
}

.swiper-slide .info strong {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
}

.swiper-slide .info small {
  color: #666;
}



