/* Start custom CSS *//* ===============================
   BİRYAPI HİZMETLERİ
================================ */

.biryapi-services {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  font-family: "Poppins", Arial, sans-serif;
}

/* Başlık */
.biryapi-services h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
}

.biryapi-services .subtitle {
  text-align: center;
  font-size: 18px;
  color: #5f6b7a;
  margin-bottom: 60px;
}

/* ÖNEMLİ KATEGORİLER */
.services-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.18);
}



.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  color: #5f6b7a;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Buton */
.service-btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 30px;
  background: #25D366;
  color: #ffffff !important;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.service-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.55);
}

/* DİĞER KATEGORİLER */
.services-secondary {
  background: #f5f7fa;
  padding: 60px 10px;
  border-radius: 20px;
}

.services-secondary h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.secondary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 30px;
}

/* MOBİL */
@media(max-width:768px) {
  .biryapi-services h1 {
    font-size: 28px;
  }
}/* End custom CSS */