
@font-face {
  font-family: 'Gilroy-Light';
  
  src: url('../gilroy/Gilroy-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap; 
}

body {
  font-family: 'Gilroy-Light', sans-serif; 
  margin: 0;
  padding: 0;
  background-color: #f8f8f8; 
}

.content-two-section {
  width: 100%;
  padding: 60px 0;
  box-sizing: border-box;
  font-family: 'Gilroy-Light', sans-serif;
}

.content-two-container {
  max-width: 1450px; 
  margin: 0 auto;
  padding: 0 20px;
}

.card-grid {
  
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr; 
  gap: 20px; /* Kartlar arası boşluk */
}


.content-card {
  border-radius: 20px; 
  padding: 30px;
  height: 350px; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  color: #1a1a1a;
  
  transition: transform 0.8s ease-out, box-shadow 0.8s ease-out, opacity 0.8s ease-out;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}


.card-count {
  font-size: 64px;
  font-weight: 300; 
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.9;
}


.card-content p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  font-weight: 300; 
  max-width: 100%; 
}

/* Simge Stilleri */
.card-icon-wrapper {
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.card-icon {
  width: 30px;
  height: 30px;
  padding: 8px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.3); 
}
.card-icon svg {
  width: 100%;
  height: 100%;
  stroke: #1a1a1a; 
  stroke-width: 2;
  fill: none; 
}


.card-1 {
  background-color: #bcced5;
}

.card-2 {
  background-color: #e5e5e5;
}

.card-3 {
  background-color: #d1e4ff;
}

.card-4 {
  background-color: #e5e5e5;
}




.content-card {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}


.content-two-section.visible .content-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}


.content-two-section.visible .card-2 {
  transition-delay: 0.2s;
}
.content-two-section.visible .card-3 {
  transition-delay: 0.4s;
}
.content-two-section.visible .card-4 {
  transition-delay: 0.6s;
}




@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 768px) {
  .content-two-section {
    padding: 40px 0;
  }
  .content-two-container {
    padding: 0 15px;
  }
  .card-grid {
    grid-template-columns: 1fr; 
  }
  .content-card {
    height: auto;
    min-height: 250px;
  }
  .card-count {
    font-size: 50px;
  }
  .card-content p {
    font-size: 15px;
    max-width: 100%;
  }
}

