@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
.span1 {
    color: #f83600;
}

/* Breadcrumb Section */
.breadcrumb {
  width: 100%;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.breadcrumb-container {
  margin: 0 auto;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: #f83600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb span {
  margin: 0 8px;
  color: #333;
    font-weight: 400;
}

  /* Category Heading */
  .category-heading {
    max-width: 1600px;
    margin: 50px auto 20px;
    text-align: center;
    padding: 0 20px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
    text-transform: capitalize;
  }

  /* Mockup Grid */
  .mockup-grid {
    max-width: 1600px;
    margin: 50px auto 50px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
  }

  .mockup-card {
    background: #fff;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
  }

  .mockup-card:hover {
    transform: translateY(-5px);
  }

  .mockup-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 20px;
  }

  .mockup-info {
    padding: 15px;
    text-align: left;
  }

  .mockup-info h3 {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 0.3rem;
    font-weight: 600;
  }
  @media (max-width: 1440px) {
    .mockup-grid {
      padding: 0 150px;
    }
  }

  @media (max-width: 768px) {
    .mockup-card img {
      height: 250px;
    }
    .category-heading {
      font-size: 1.5rem;
    }
    .mockup-info h3 {
      font-size: 1.1rem;
    }
    .breadcrumb-container {
      font-size: 0.85rem;
        padding: 0.8rem 1.5rem;
    }
    .mockup-grid {
      gap: 2rem;
      padding: 0 20px;
    }
  }

  @media (max-width: 480px) {
    .mockup-card img {
      height: 250px;
    }
    .category-heading {
      font-size: 1.4rem;
    }
    .mockup-info h3 {
      font-size: 0.9rem;
    }
  }
  
  /* Center Google Ads container */
.adsbygoogle {
  display: block;
  margin: 40px auto;  /* centers horizontally */
  text-align: center;
  max-width: 100%;
}

/* Optional: make sure it doesn’t stretch too wide on large screens */
@media (min-width: 1024px) {
  .adsbygoogle {
    width: 70%;  /* adjust this as needed (60–80% looks good) */
  }
}

/* Mobile optimization */
@media (max-width: 768px) {
  .adsbygoogle {
    width: 90%;
  }
}