


/* counter */

/* Section Background */
.almataf-counter {
  background: linear-gradient(135deg, #2D7046, #2D7046);
  padding: 30px 20px;
  color: #fff;
  text-align: center;
}

/* Grid Layout */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* Counter Box */
.counter-box {
  background: #fff;
  color: #222;
  border-radius: 20px;
  padding: 1px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}
.counter-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.35);
}

/* Icons */
.counter-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #39388E;
}

/* Numbers */
.counter-number {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  animation: fadeIn 1s ease;
}

/* Text */
.counter-text {
  font-size: 15px;
  font-weight: 500;
  color: #555;
}

/* FadeIn Keyframe */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-view-more {
  display: inline-block;
  padding: 12px 28px;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(45deg, #39388E,#39388E);
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}
.btn-view-more:hover {
  background: linear-gradient(45deg, #373536, #373536);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);



}
.btn1{
  color: 39388E!important;
}


















/* 

*/



.offer-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.offer-desc {
  font-size: 20px;
  color:black;
  margin-bottom: 20px;
}

.offer-price {
  font-size: 18px;
  margin-bottom: 15px;
  color: #111;
}

.offer-img {
  width:600px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.offer-img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}


@media screen and (max-width: 768px) {
  .offer-img {
    width: 300px; 
    height: 162px !important;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
}